https://www.apa.org/pubs/databases/psyctests/field-guide

import records_wide

load(file = "../sober_rubric/raw_data/records_wide.rda")

Complexity of columns

I wrote a little summary function to find columns which always consist only of a length 1 list with a single element. These can be losslessly translated to simple vectors.

col_structures <- records_wide %>% 
  ungroup() %>% 
  head(1000) %>% # looked only at 1000 to save time
  rowwise() %>% # row wise is necessary to determine the length of the list in each row
  mutate_all(~ 
               if_else(length(.) == 1, 
                       pluck_depth(.[[1]]),
                       pluck_depth(.))) %>% 
  ungroup() %>% 
  summarise_all(max) # take the maximum

# fetch all "simple" columns
col_structures %>% pivot_longer(everything()) %>%
  filter(value == 1) %>% pull(name) %>% 
  cat(sep = "\n")
## DOI
## Name
## Purpose
## Description
## InstrumentType
## Format
## SupportingDocumentationLink
## Commercial
## Permissions
## Fee
## TestYear
## TestItemsAvailable
## Reliability
## Validity
## FactorAnalysis
## NumberOfTestItems
## TestReleaseDate
## TestCorrectionDate
## FactorsAndSubscales
# fetch all non-simple columns
col_structures %>% pivot_longer(everything()) %>% filter(value > 1) %>% pull(name) %>% cat(sep = "\n")
## TestTypeList
## OtherVersionList
## AcronymList
## AuthorList
## LanguagePresentList
## LanguageAvailabilityList
## SupportingDocumentationList
## ConstructList
## TestFileList
## ClassificationList
## MethodologyList
## AdministrationMethodList
## AgeGroupList
## PopulationGroupList
## OtherPopulationDetailsList
## KeyWordList
## IndexTermList
## SourceCitationList
## InstitutionalAuthorList
## Correspondence
## WebsiteList
## AlternateNameList
## TestLocationList
## PublisherList

hoist variables which are just length 1 lists to turn them into regular characters

Simplify all the simple list columns to character columns.

records_wide <- records_wide %>% 
  hoist(DOI, DOI = list(1, 1), .remove = FALSE) %>%
  hoist(Name, Name = list(1, 1), .remove = FALSE) %>%
  hoist(Purpose, Purpose = list(1, 1), .remove = FALSE) %>%
  hoist(Description, Description = list(1, 1), .remove = FALSE) %>%
  hoist(InstrumentType, InstrumentType = list(1, 1), .remove = FALSE) %>%
  hoist(Format, Format = list(1, 1), .remove = FALSE) %>%
  hoist(SupportingDocumentationLink, SupportingDocumentationLink = list(1, 1), .remove = FALSE) %>%
  hoist(Commercial, Commercial = list(1, 1), .remove = FALSE) %>%
  hoist(Permissions, Permissions = list(1, 1), .remove = FALSE) %>%
  hoist(Fee, Fee = list(1, 1), .remove = FALSE) %>%
  hoist(TestYear, TestYear = list(1, 1), .remove = FALSE) %>%
  hoist(TestItemsAvailable, TestItemsAvailable = list(1, 1), .remove = FALSE) %>%
  hoist(Reliability, Reliability = list(1, 1), .remove = FALSE) %>%
  hoist(Validity, Validity = list(1, 1), .remove = FALSE) %>%
  hoist(FactorAnalysis, FactorAnalysis = list(1, 1), .remove = FALSE) %>%
  hoist(NumberOfTestItems, NumberOfTestItems = list(1, 1), .remove = FALSE) %>%
  hoist(TestReleaseDate, TestReleaseDate = list(1, 1), .remove = FALSE) %>%
  hoist(TestCorrectionDate, TestCorrectionDate = list(1, 1), .remove = FALSE) %>%
  hoist(FactorsAndSubscales, FactorsAndSubscales = list(1, 1), .remove = FALSE)

records_wide$Reliability <- str_replace_all(records_wide$Reliability, "[[:space:]]+", " ")
records_wide$Validity <- str_replace_all(records_wide$Validity, "[[:space:]]+", " ")
records_wide$FactorAnalysis <- str_replace_all(records_wide$FactorAnalysis, "[[:space:]]+", " ")
records_wide$FactorsAndSubscales <- str_replace_all(records_wide$FactorsAndSubscales, "[[:space:]]+", " ")

instrument_types <- tibble(InstrumentType = 
                             c("Inventory/Questionnaire", "Rating Scale", "Test", "Battery", 
                               "Index/Indicator", "Survey", "Screener", "Task", "Checklist", 
                               "Interview Schedule/Guide", "Diary", "Coding Scheme", "Projective Measure", 
                               "Q Sort", "Vignette/Scenario"),
                           instrument_type_broad = c("questionnaire", "questionnaire", "test", "test",
                                                     "questionnaire", "questionnaire", "questionnaire", "task", "other-rating",
                                                     "other-rating", "questionnaire", "other-rating", "task",
                                                     "questionnaire", "questionnaire"))
records_wide <- records_wide %>% left_join(instrument_types, by = "InstrumentType")

records_wide <- records_wide %>% 
  rowwise() %>% 
  mutate(classifications_n = length(ClassificationList)) %>% 
  ungroup() %>% 
  hoist(ClassificationList, classification_1 = list(1,1,1), .remove = FALSE) %>% 
  hoist(ClassificationList, classification_2 = list(2,1,1), .remove = FALSE) %>% 
  mutate(classification_1 = str_replace_all(classification_1, "[:space:]+", " "),
         classification_2 = str_replace_all(classification_2, "[:space:]+", " "))


records_wide <- records_wide %>% 
  mutate(TestYear = as.numeric(TestYear))
## Warning: There was 1 warning in `mutate()`.
## ℹ In argument: `TestYear = as.numeric(TestYear)`.
## Caused by warning:
## ! NAs introduced by coercion

Set binary fields for “commercial” and “open”.

records_wide <- records_wide %>% 
  mutate(commercial_bin = case_when(
    Commercial == "Yes" ~ 1L,
    Commercial == "No" ~ 0L,
    Commercial == "Unknown" ~ NA_integer_
  ),
  open_bin = case_when(
    Permissions == "May use for Research/Teaching" ~ 1L,
    Permissions == "Not Specified" ~  NA_integer_,
    TRUE ~ 0L
  ))

Extract first acronym

records_wide <- records_wide %>% 
  hoist(AcronymList, first_acronym = list(1, 1), .remove = FALSE)

records_wide <- records_wide %>% 
  hoist(ConstructList, first_construct = list(1,1,1), .remove = FALSE)

table(records_wide$first_construct) %>% sort() %>% tail(20)
## 
##                Coping Behavior              Life Satisfaction 
##                             70                             71 
##                     Creativity                    Religiosity 
##                             72                             77 
##                     Body Image                     Resilience 
##                             78                             78 
##                      Attitudes              Coping Strategies 
##                             80                             81 
##                        Empathy                   Intelligence 
##                             81                             81 
##                  Acculturation             Personality Traits 
##                             83                             86 
##             Consumer Attitudes               Job Satisfaction 
##                             88                             96 
## Health-Related Quality of Life                Quality of Life 
##                            107                            108 
##                 Social Support                    Personality 
##                            123                            140 
##                        Anxiety                     Depression 
##                            143                            156
acronym_base <- str_replace(records_wide$first_acronym, "-R$", "")
length(unique(acronym_base))
## [1] 19909
acronym_base <- str_replace(acronym_base, "--.+$", "")
length(unique(acronym_base))
## [1] 19839
acronym_base <- str_replace(records_wide$first_acronym, "--.+$", "")
length(unique(acronym_base))
## [1] 20137
records_wide$acronym_base <- acronym_base

Extract source citation DOI

Extract the source citation DOI. I didn’t actually run this yet, want to do it with scopus where I can get citations by year.

records_wide <- records_wide %>% 
  hoist(SourceCitationList, first_source_doi = list(1, "DOI", 1), .remove = FALSE)

source_dois <- records_wide %>% select(first_source_doi) %>% drop_na() %>% distinct()

# commented out for now
# source_dois <- rcrossref::cr_citation_count(source_dois$first_source_doi)
# records_wide <- records_wide %>% left_join(source_dois %>% rename(first_source_doi = doi, citation_count_crossref = count), by = "first_source_doi")


library(rscopus)
scopus_api_key <- "7804cba4fc15e860f8c5f549ac2215eb"
find_cit_scopus <- function(x){

}
for (i in seq_along(nrow(source_dois))) {
  find_cit_scopus(source_dois$first_source_doi[i])
  if(i %% 10 == 0) print(i, source_dois$first_source_doi[i])
}
existing <- readr::read_tsv("../sober_rubric/raw_data/scopus_citation_counts.tsv")
## Rows: 836886 Columns: 3
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## chr (1): doi
## dbl (2): year, citation_count
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
for (i in seq_along(setdiff(source_dois$first_source_doi, existing$doi))) {
  x <- source_dois$first_source_doi[i]
  if(! x %in% existing$doi) {
    s <- generic_elsevier_api(api_key = scopus_api_key,
                              doi = x,
                              date = "1980-2023",
                              type = "citations",
                              search_type = "scopus")
    citations <- s$content$`abstract-citations-response`$citeColumnTotalXML$citeCountHeader$columnTotal %>% as.data.frame()
    if(length(citations)) {
      colnames(citations) <- s$content$`abstract-citations-response`$citeColumnTotalXML$citeCountHeader$columnHeading %>% as.data.frame()
      citations <- pivot_longer(citations, everything(), names_to = "year", values_to = "citation_count", values_transform = as.numeric, names_transform = as.numeric)
      citations$doi <- x
    } else {
      citations <- tibble(doi = x)
    }
    existing <- bind_rows(existing, citations)
    readr::write_tsv(existing, "../sober_rubric/raw_data/scopus_citation_counts.tsv")
  }
  if(i %% 10 == 0) { cat(paste(i, source_dois$first_source_doi[i])) }
}


records_wide <- records_wide %>% distinct() %>% left_join(existing %>% group_by(doi) %>% summarise(citation_count = sum(citation_count, na.rm = T)), by = c("first_source_doi" = "doi"))

Extract Cronbach’s Alpha

records_wide <- records_wide %>% 
  mutate(
    no_reliability = Reliability == "No reliability indicated.",
         first_reliability_match = as.numeric(str_match(Reliability, "(\\.\\d+)")[,2]),
         all_reliabilities = lapply(str_extract_all(Reliability, "(\\.\\d+)"), as.numeric)
)

Prevalences of validity information

table(records_wide$FactorAnalysis) %>% sort() %>% tail(2)
## 
## This is a unidimensional measure.     No factor analysis indicated. 
##                                19                             45868
records_wide %>% group_by(InstrumentType) %>% 
  summarise(Reliability = mean(Reliability!="No reliability indicated."),
            FactorAnalysis = mean(FactorAnalysis!="No factor analysis indicated." & FactorAnalysis != "This is a unidimensional measure."),
            Validity = mean(Validity!="No validity indicated.")) %>%
  arrange(Reliability+FactorAnalysis+Validity) %>% 
  mutate(across(c(Reliability, FactorAnalysis, Validity), ~ round(100 * .)))
## # A tibble: 16 × 4
##    InstrumentType           Reliability FactorAnalysis Validity
##    <chr>                          <dbl>          <dbl>    <dbl>
##  1 Interview Schedule/Guide          34              6       22
##  2 Task                              44              6       31
##  3 Diary                             45             14       27
##  4 <NA>                              53              5       41
##  5 Test                              64              4       31
##  6 Q Sort                            39             29       34
##  7 Survey                            50             23       31
##  8 Vignette/Scenario                 63             22       28
##  9 Checklist                         59             14       42
## 10 Projective Measure                61             16       45
## 11 Index/Indicator                   75             21       35
## 12 Coding Scheme                     87              9       36
## 13 Battery                           58             24       59
## 14 Rating Scale                      86             27       46
## 15 Screener                          70             34       78
## 16 Inventory/Questionnaire           82             56       60
records_wide %>% group_by(classification_1) %>% 
  summarise(Reliability = mean(Reliability!="No reliability indicated."),
            FactorAnalysis = mean(FactorAnalysis!="No factor analysis indicated." & FactorAnalysis != "This is a unidimensional measure."),
            Validity = mean(Validity!="No validity indicated.")) %>% arrange(Reliability+FactorAnalysis+Validity) %>% View

Sample size

samplesizes <- records_wide$Reliability %>% str_match_all(regex("\\bn ?= ?(\\d+)", ignore_case = TRUE)) %>% map(~ as.numeric(.[,2]))
samplesizes %>% unlist() %>% table() %>% sort()
## .
##    4    9   68   89  103  114  123  127  136  137  140  144  155  156  159  161 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  166  167  168  173  176  177  183  188  190  191  192  193  194  195  198  201 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  203  207  212  215  216  218  222  223  224  227  232  240  241  243  247  249 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  252  254  256  257  262  263  264  268  269  270  273  275  276  277  284  286 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  287  293  299  301  304  310  324  342  343  344  346  350  354  362  367  370 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  371  372  374  377  378  383  385  392  405  406  408  412  414  422  447  451 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  453  459  477  485  487  491  502  507  514  520  525  534  544  559  569  572 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  582  588  589  600  611  614  618  625  654  656  658  661  665  667  671  675 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  677  678  682  686  692  694  707  713  746  749  753  775  787  797  812  820 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  840  861  870  910  917  923  933  942  956  975  995 1000 1040 1051 1066 1072 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
## 1141 1152 1174 1182 1194 1218 1219 1230 1388 1400 1419 1427 1560 2498 3251 3678 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##   54   63   78   81   87   88   92   93   94   96   98  106  108  117  118  119 
##    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2 
##  122  125  126  133  134  139  149  151  153  160  162  163  169  170  172  174 
##    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2 
##  178  179  180  184  185  186  189  196  199  217  226  229  230  239  246  261 
##    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2 
##  271  292  314  317  323  325  336  338  349  387  488  499  581  586  621  648 
##    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2 
##  907    5   14   39   43   49   57   59   62   66   75   80   82   86   90  104 
##    2    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3 
##  105  110  128  129  143  146  148  165  171  187  197  210  211  213  258  302 
##    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3 
##  303  306  320  330  332  494    7   17   22   28   31   38   42   53   58   64 
##    3    3    3    3    3    3    4    4    4    4    4    4    4    4    4    4 
##   65   67   73   76   85   95   99  101  116  120  121  138  158  206  300  328 
##    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4 
##  335  450    6   41   44   56   71   74   97  109  115  130  131  150  154  202 
##    4    4    5    5    5    5    5    5    5    5    5    5    5    5    5    5 
##  316    2   13   23   24   25   34   84  200  204    3   11   16   45   79   83 
##    5    6    6    6    6    6    6    6    6    6    7    7    7    7    7    7 
##  102    8   12   27   33   35   48   51  225   40   52   55   61   29   50   26 
##    7    8    8    8    8    8    8    8    8    9    9    9    9   10   10   11 
##   32   46   47   70   10   15   18  100   21   60   19   36    1   20   30 
##   11   11   11   11   12   12   12   12   13   13   15   16   18   20   23
samplesizes %>% unlist() %>% median()
## [1] 82
samplesizes %>% unlist() %>% length()
## [1] 1048
records_wide$Reliability[- (samplesizes %>% map_dbl(~ .[1]) %>% is.na() %>% which())]
##   [1] "Structural equation models were used to assess the equivalence of the BSRS linguistic versions used in community-based samples in Norway (n = 328), Romania (n = 581), and Russia (n = 665). Results indicate that the BSRS has satisfactory internal consistency and that the factor structure is invariant across all three linguistic adaptations"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [2] "Internal Consistency: For the CBOCI Obsessions subscale, alpha = .85 for the OCD sample (n = 51), and alpha = .89 for the total sample (n = 494). For the CBOCI Compulsions subscale, alpha = .84 for the OCD sample (n = 54), and alpha = .89 for the total sample (n = 499). Test-retest stability: After a 1 month interval, and after deletion of missing data, the test-retest reliability in a sample of 55 students was as following: CBOCI Obsessions (r = .69, p < .001), Compulsions (r = .79, p < .001), and Total Score (r = .77, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [3] "Internal Consistency: The corrected item-total correlations for the 30 items were all positive and ranged from .22 to .54. The coefficient alphas were as follows: Total CCS (.87; N = 328); Acceptance, Reframing, and Striving (.85; N = 332); Family Support (.86; N = 335); Religion–Spirituality (.90; N = 338); Avoidance and Detachment (.77; N = 335); and Private Emotional Outlets (.76; N = 336)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [4] "Item Reliability: Treating the 12 CAB-V items as a single scale, the Cronbach's alpha for the total sample (N = 1,862) was .93. For young, middle-aged, and elderly men, the Cronbach's alphas for the 12 CAB-V items were .93, .93, and .94, respectively. For young, middle-aged, and elderly women, the Cronbach's alphas for the 12 CAB-V items were .92, .94 and .95, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [5] "The test-retest reliability for CSAT-CM was r = .81 (n = 47)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [6] "Internal Consistency: Cronbach’s alpha for all 53 items in the DSQIID is 0.91. Test-Retest Reliability: The intraclass correlation for test–retest reliability (n = 52) is 0.95, with a two-tailed level of significance of P < 0.01 (>80% power). Interrater Reliability: The intraclass correlation for interrater reliability (n = 41) is 0.9, and the two-tailed level of significance is P < 0.01 (>80% power)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [7] "Preliminary data from a clinical sample of patients with a schizophrenia diagnosis (n = 27) revealed that the measure is acceptable to participants and suggested good reliability, with alphas of .96 for the anxiety subscale and .85 for the avoidance subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [8] "Internal Consistency: Internal consistency was adequate (Cronbach’s alpha = 0.67). Test-Retest Reliability: The intraclass correlation for test-retest reliability was 0.82 (n = 330)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [9] "Internal Consistency: Cronbach alpha ranged from .73 in the PHYS sample to .86 in the TUC sample. In the combined sample (n = 520), Cronbach alpha was .86. Test-retest Reliability: For test–retest reliability, 90 of 105 BYU and all 80 PHYS participants completed the SIC both times. The one-week test–retest reliability was r(s) = .90, p < .001; the intraclass correlation coefficient was similar, r(ICC) = .86, p < .001. The two-week test–retest correlations were lower: r(s) and r(ICC) = .75, ps < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [10] "Internal Consistency: The standardized coefficient alpha for the total Peritraumatic Distress Inventory score was 0.75 in officers and 0.76 in comparison subjects. Test-retest Reliability: A subgroup of officers (N = 71) was retested on the Peritraumatic Distress Inventory an average of 391 days (SD = 130, range = 80–585) after initial measure completion. The test-retest correlation coefficient was 0.74, indicating very good temporal stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [11] "Internal Consistency: Estimates of internal consistency (Cronbach's alphas) were computed on the final scales and were as follows: .81 for ethical-emotional, .76 for rational-behavioral, and .84 for total VCRA score. Test-Retest Reliability: New subjects (N = 30) identified and attempted to resolve their conflicts and then evaluated those resolutions. They were asked 1 week later to reevaluate those original resolutions. Test-retest correlations between VCRA scores at Time 1 and Time 2 were .92 for total score, .84 for ethical-emotional subscore, and .88 for rational-behavioral subscore. Thus, VCRA scores were fairly stable over a short time."                                                                                                                                                                                                                                                                                                                                                          
##  [12] "Internal reliability: Cronbach alphas for the six subscales and the total score of the PCQ in drug and alcohol users were as follows: Work (.84), Legal (.86), Family (.87), Health (.74), Finance (.82), Self (.66), and Total (.87). Test-retest reliability: Correlation coefficients for the self, family, legal, finance, health, and work subscales and the total scale within a 2-month interval (N = 49) were as follows: .37, .80, .85, .60, .61, .58, and .68 respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [13] "Internal consistency: The PSOSH had a Cronbach's alpha of .91 in a sample of college students. Test-retest reliability: In the 4th sample of college students (N = 144), test–retest reliability across a 3-week period was calculated (.82)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [14] "Internal Consistency: Alphas ranged from .75 (Attitude Toward Learning) to .88 (total score) for the total sample. Interrater Reliability: Shrout-Fleiss intraclass correlation coefficients ranged from .57 (Attitude Toward Learning) to .73 (Competence Motivation) for a subsample (n = 47). Test-retest Reliability: Correlation coefficients ranged from .80 (Attitude Toward Learning) to .94 (Attention/Persistence) for a 3-week interval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [15] "Internal consistency: In Study 1 the SSOSH showed good reliability (Cronbach's alpha of .91) among a sample of college students. Test-retest reliability: The correlation between participants’ Time 1 SSOSH total score and their total SSOSH score 2 months later was .72 (N = 226)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [16] "Internal Consistency: Coefficient alphas computed for sample subjects (n=1400) for each ASCA Core Syndrome or Scale ranged from .70 (Solitary Aggressive [Impulsive]) to .92 (Overactivity Scale). Test-Retest Reliability: Coefficient alpha after 30 school days ranged from .66 (Solitary Aggressive [Provocative]) to .91 (Oppositional Defiant). No correlation was computed for the Solitary Aggressive (Impulsive) syndrome at retest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [17] "The internal reliability coefficient (alpha) was .85. The test-retest correlation (n = 102), measured over a period of 18 days, was .80."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [18] "Coefficient alpha: .65 for 196 depressives and .63 for 161 normals; 3-month test-retest correlation: .54 for 161 normals. 1-week test-retest correlation: .73 for a supplementary sample (n = 49) of university students. Interitem rs: all positive and >.27 for depressives and .24 for normals, rs with other scales: Beck Depression Inventory (BDI), .58 for depressives and .57 for normals; Depression Adjective Checklist (DACL), .40 for depressives and .37 for normals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [19] "Test-retest Reliability: Normative data were drawn from undergraduate students, business workers, and community members across various geographical locations in the United States, resulting in a sample of 815 participants. Clinical samples were drawn from outpatient and inpatient mental health facilities ( n = 342). Retest administrations were done 3 weeks after the initial testing and weekly thereafter for a 10-week period. Stability coefficients based on the Pearson product-moment coefficient provided estimates of reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [20] "Internal Consistency: This revised scale had a Cronbach's alpha of .88 in the high school sample of females (n = 320)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [21] "Internal consistency: The Cronbach's alpha levels of 0.90 for all subjects, 0.85 for inpatients, and 0.86 for community clients indicate a high level of internal consistency in which each item of the CERF-R appears to contribute independently to the scale as a whole. Interrater reliability: The overall ICC in a subsample of 106 State Hospital inpatients ranged from 0.76 to 0.91, with a mean ICC of 0.84 for the 17 items studied. Test-retest reliability: Reanalysis of data using elapsed time between CERF-R administrations to inpatients as an independent variable indicated that test–retest reliability was high in the less than 3-month condition (n = 86, p < .001) and the 3- to 6-month condition (n = 40, p < .01) wherein ICCs for all items were statistically significant."                                                                                                                                                                                                                           
##  [22] "An exploratory factor analysis (N = 328) identified 5 factors: Education/Advocacy, Internalization, Drug and Alcohol Use, Resistance, and Detachment, with internal consistency reliability estimates ranging from .72 to .90. The estimated 2-week test–retest reliabilities (N = 53) were between .48 and .85 for the 5 factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [23] "The mean and standard deviation of the 24-item Cross-Cultural Sensitivity Scale scores, which has a range of 24 to 144, were 107.17 and 18.20 respectively. The internal consistency of both this scale was impressive showing a coefficient alpha of .93 (n = 64). Parallel forms were developed to facilitate the use in research and evaluation settings. There were no significant differences between the variances of the two 12-item forms. The scores on the two forms were highly correlated (r = .97, n = 55, p < .0001). In addition, the high levels of internal consistency shown with the longer version of the scale were retained, with coefficient alpha being .87 on both forms. When the short scales were again evaluated using a second sample of undergraduates, the coefficient alphas were .87 and .80 for Forms A and B, respectively."                                                                                                                                                                     
##  [24] "The alpha for the RT scale (N = 707) was high at .85, and the item reliability indices ranged from .45 to .69. The alpha for the SH scale (N = 675) was also high at .93, and the corrected item-total correlations ranged from .33 to .78. Three-month test–retest reliabilities (Pearson r) for the RT scale and the SH scale were .90 and .87, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [25] "Internal Consistency: Cronbach Alphas for the MMLOC were .83 for the entire sample (N = 230), .84 for males (N = 115), and .82 for females (N = 115), indicating good internal consistency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [26] "The 33-item SCRS showed high internal consistency and test-retest reliability. The internal reliability of the SCRS was .98, as indicated by Cronbach alpha. Test-retest reliability over 3-4 weeks for a sample (n = 24) taken from the present group was .84. The internal consistency and test-retest reliability of the SCRS are suggestive of a homogeneous and reliable rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [27] "Internal Consistency: The Cronbach's alpha values for the Sexual Self-Schema Scale and each factor are as follows: full scale, .82; Factor 1, .81; Factor 2, .77; and Factor 3, .66 (N = 387). Test Retest Reliability: Reliabilities of the Sexual Self-Schema Scale were obtained for 2- and 9-week intervals. The total score reliability value for 2 weeks (N = 20) was .89 (p < .0001). Coefficients for each factor were as follows: Factor 1, .72; Factor 2, .76; and Factor 3, .85. As expected, the total score reliability (N = 172) of the measure over a 9-week interval was .88 (p < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [28] "Test reliability estimate between the first-week and fourth-week G-State measures for all subjects (N = 45) was .02, and the correlation between Week 1 and Week 4 G-Trait measures was .30."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [29] "Test-retest correlations for the PCS on all participants tested (n = 40) indicated a high degree of stability across the 6-week period, r = .75."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [30] "Reliability: For the validation subsample of professionals (n = 79) and for the graduate students (n = 51) on whom the following validity analyses were performed, the coefficient alpha values were as follows: Realism = .79, Genuineness = .83, total score = .89. The differences in internal consistencies between the professional and graduate samples were stated as being minuscule, with the exception of the Realism subscale. On that subscale, the alpha for the professional sample was .81, whereas for the student sample it was .72."                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [31] "Internal consistency: The samples used for the analyses of reliability were drawn from the overall sample. Pedigo and colleagues (2005) reported an overall internal consistency reliability for the three TTEF tasks as α = .86 (n = 611). Test–retest reliability: stability coefficients ranged from .85 to .94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [32] "Although the ESSI was not designed to be a psychometric test, questions of reliability and validity nonetheless apply. Initial test-retest reliability checks on a small homogeneous population (N=20-25) yielded correlation coefficients of great than +.85 on each of the four scales. Larger studies with heterogeneous populations need to be conducted by independent researchers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [33] "The pretreatment test–retest reliability coefficient was .86 (n = 38) or, more conservatively, .79 with a Spearman nonparametric correlation. Test–retest reliability for the individual items was also quite high. Kendall tau-b correlations ranged from .49 to .87 with a median of .74."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [34] "Internal Consistency: Internal consistency coefficients measured using KR-20 in a sample of N = 1182 ranged from .65 to .79 for all but three scales (potential economic stress, age inappropriate demands, and poor peer relations, which ranged from .48 to .52), indicating modest levels of internal consistency. Test-retest Reliability: Test-retest correlations over a 60-day period for an N = 138 nonclinical sample of college students ranged from .61 (age inappropriate demands) to 3 9 (marital discord), with a median = .83 and only 4 scales below .75 (isolation, peer relations, shared parenting, age inappropriate demands). All correlations were significant."                                                                                                                                                                                                                                                                                                                                               
##  [35] "Internal reliability: Cronbach’s alpha= .79 and based on standardized items, .806 for PFI Extent of Feeling Scales (N=160 adults). Parallel Form multiple choice naming of the 26 PFs: N=165, ages 12-65, 97%-100%. Test-retest reliability naming the 26 PFs: 2 week interval 98%, N= 40 adults."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [36] "On the CANIS-R, preliminary results showed an interrater agreement that exceeded 85% on all items, summary ratings on physical abuse, neglect, and sexual abuse showing a mean agreement of 84.7% between raters (N = 138), and a Kappa coefficient of .68."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [37] "Results from reliability analysis of the primary standardization sample (N = 302) indicated that Cronbach’s alpha ranged from .80 to .84 for the victim factor, .73 to .79 for the situational factor, .72 to .75 for the societal factor, and .53 to .54 for the parent perpetrator factor. These data indicate moderate to good internal consistency for the scale. No test-retest reliability was reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [38] "In a study following Hurricane Andrew (n = 213), Cronbach’s alphas were .84 (intrusion), .72 (avoidance), and .85 (total). In a study of a high-crime, low-income area (n = 7 l ) , Cronbach’s alphas were .68 (intrusion), .53 (avoidance), and .73 (total). Interrater reliability on a study of adolescents exposed to a fire with interviewers having undergone 51 hours of training averaged .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [39] "Cronbach's alpha for the 18 scales between .62 and .85 (N=2,751); re-test reliability for the 18 scales between .65 and .87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [40] "In the first study, the CTQ demonstrated a Cronbach’s alpha of .95 for the total scale, with the following alphas for each factor: physical and emotional abuse (PEA) = .94, emotional neglect (EN) = .91, sexual abuse (SA) = .92, and physical neglect (PN) = .79, indicating high internal consistency. The CTQ also demonstrated good test-retest reliability for a subgroup of n = 40 over a 2- to 6 month interval (mean interval 3.6 months), with intraclass correlations for the total scale = .88 and intraclass correlations for each factor as follows: PEA = .82, EN = .83, SA = 31, and PN = .80."                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [41] "Cronbach's alpha between .76 and .94 for the 24 scales (N=202)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [42] "Cronbach's alpha between .72 and .95 for the 18 scales (N=812)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [43] "Cronbach's alpha between .71 and .92 for the 18 scales (N=12,763)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [44] "Cronbach's alpha between .73 and .93 for the 24 scales (N=1,355)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [45] "Cronbach's alpha between .61 and .84 for the 18 scales (N=477); re-test reliability between .73 and .89 for the 18 scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [46] "Internal consistency: Coefficient alphas ranged from .45-.86 across the factors. The test-retest reliability of the 7 repeated items on the CEEQ was examined for a subset of the sample (n = 83). The Pearson product-moment correlation was computed, yielding correlations of .85 (p<.001) for the CEEQ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [47] "Split-half reliability .89 (N=3,216)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [48] "The two versions (adolescent and maternal) of the CBQ yielded four scores: adolescent's appraisal of mother, maternal appraisal of adolescent, adolescent's appraisal of dyad, and maternal appraisal of dyad. Each score was computed by counting the number of items endorsed in a negative direction. Internal consistency (coefficient alpha) for the four scores was .95, .88, .94, and .90, respectively (N = 90)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [49] "Split-half reliability .96 (N=3,597)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [50] "Split-half reliability .84, re-test reliability .81 (N=87)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [51] "Split-half reliability .81 (N=692)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [52] "Split-half reliability .84 (N=588)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [53] "Split-half reliability .82 (N=514); re-test reliability .83 (N=84)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [54] "Split-half reliability .86 (N=370); re-test reliability .81 (N=84)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [55] "Split-half reliability .81 (N=314)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [56] "Split-half reliability .83 (N=314)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [57] "Split-half reliability .86 (N=162)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [58] "Split-half reliability .84 (N=162)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [59] "Split-half reliability .93 (N=317); re-test reliability .82 (N=116)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [60] "Split-half reliability .88 (N=11,064)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [61] "Split-half reliability .81 (N=211); re-test reliability .83 (N=100)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [62] "Split-half reliability .91 (N=1,163); re-test reliability .81 (N=186)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [63] "Split-half reliability .91 (N=26,010)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [64] "Temporal stability: Temporal stability was shown with high test-retest reliability coefficients of r = .80 over a 4-week interval for a small sample (N = 158)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [65] "Internal consistency: Internal consistency was examined in a large sample (N = 933 adults and N = 502 children). High alpha correlations were found for the three main scales: .93 for general, .95 for dyadic, and .89 for self-rating. For the general scale, the subscale alphas ranged from .67 for task accomplishment to .87 for social desirability. For the dyadic scale, the subscales ranged from .59 for affective expression to .82 for role performance; for the self-rating scale, scores ranged from .39 for the control subscale to .67 for the communication subscale. Test-retest reliability: In another smaller sample (N = 138 families with teenage children), temporal stability was examined across a 12-day interval. Correlations ranged from r = .46 to r = .72 across all subscales."                                                                                                                                                                                                                    
##  [66] "Temporal stability was examined in a test-retest comparison across a 4 week interval for 116 family members. The correlation for the total scale score was r = .81, whereas subscale correlations ranged from r = .61 for reframing to r = .95 for seeking spiritual support. Internal consistency, examined via Cronbach’s alpha, was .86 for the total scale score in a large sample of community adults ( N = 2,582). Subscale alphas ranged from .63 for passive appraisal to .83 for acquiring social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [67] "Test-retest reliability coefficients obtained over a 4-day interval for all raters were adequate for both the nonparanoid subscale (r = .73, p < .001; n = 26) and the paranoid subscale (r = .89, p < .001; n = 26). Including only those subjects with a different experimenter at each session yields adequate interrater reliability coefficients over the 4-day interval for both the nonparanoid subscale (r = .75,p < .001; n = 19) and the paranoid subscale (r = .88, p<.001; n= 19). Interrater reliability in a different sample of psychiatric patients was .61 on the paranoid subscale and .77 on the nonparanoid subscale."                                                                                                                                                                                                                                                                                                                                                                                           
##  [68] "Internal consistency was established in a sample of N = 51 neglectful and N = 79 non-neglectful mothers. Cronbach’s alpha coefficients were .88 for the relatedness subscale, .77 for the impulse control subscale, .76 for the confidence subscale, and .63 for the verbal accessibility subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [69] "Test-retest reliability: A test-retest reliability coefficient for the Mathematics Anxiety Rating Scale (MARS) was calculated from the scores of two complete classes (n = 35) of students from the original large Missouri sample who were retested 7 weeks later. The mean MARS score on the first testing was 235.08 (SD = 51.26); the mean score was 232.97 (SD = 56.46) at the second testing. The Pearson product-moment coefficient between these two sets of scores was .85. Internal consistency: Coefficient alpha for the MARS is .97."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [70] "Internal Consistency: The internal consistency (Cronbach‘s alpha) of seven of the scales ranged between .61 and .91 across three samples (n = 378). For the activities scale, the alpha was smaller, ranging from .28 to .76 across the three samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [71] "Internal consistency: Reliability examined via Cronbach’s alpha (N = 46 couples) revealed correlations of r = .92 for the anger subscale and r = .96 for pleasure subscale, indicating strong internal consistency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [72] "Test-retest reliability: Test-retest reliability was demonstrated over a 12-week interval for a small (N = 16) sample of mothers with correlations of r = .85 for total score and correlations ranging from r = .34 to r = .87 for subscale scores (all but \"leaving children alone\" were greater than r = .65)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [73] "In an investigation of the relative effectiveness of two educational programs for teaching personal safety skills (N = 100 children, N = 10 teachers), internal consistency reliability of the TPQ was .68 overall, .76 for negative behaviors and .15 for positive behaviors (Wurtele, Kast, Miller-Perrin, & Kondrick, 1989)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [74] "Internal Consistency: Alpha coefficients computed for item-total score comparisons were .57 for the anger intensity dimension and .49 for the problem dimension, indicating good internal consistency. In a second study of 17 maltreating parents, 18 nonmaltreating parents seeking psychological treatment, and 13 control parents, internal consistency was greater with item-total correlations of .90 for the problem dimension and .96 for the anger intensity dimension. Split-half Spearman Brown correlations were r = .84 for the problem dimension and r = .91 for the anger intensity dimension. Test-Retest Reliability: Test-retest reliability computed across 8 to 21 days for a subset of the sample (N= 21) resulted in correlations of r = .78 for the problem dimension and r = .86 for the anger intensity dimension."                                                                                                                                                                                         
##  [75] "Internal consistency: In a large reliability study of parents (N = 534), Cronbach’s alpha coefficients were .89 for the child domain (subscales ranged from .62 to .70), .93 for the parent domain (subscales ranged from .55 to .80), and .95 for total stress score. Test-retest reliability: Test-retest reliability was demonstrated at a three-month interval by correlations of .63 for the child domain, .96 for the parent domain, and .96 for the total stress score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [76] "Internal Consistency: The levels of internal consistency reliability for most scales were comparable across the Los Angeles and Rochester populations and were said to be adequate for survey purposes and group comparisons. Test-Retest Reliability: In a subsample of the Rochester population (N=45), one-week test-retest reliability correlations revealed significant levels of stability for most Quality of Life Interview items and scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [77] "Alpha coefficients for each subscale of the TSS and item-total correlations were computed to determine internal consistency in a sample of undergraduate females (n = 451). The coefficient alphas were .92 (avoidance and fear), .93 (thoughts about sex), .85 (role of sex), and .80 (attraction/interest). Item-total correlations ranged from .54 to .79, indicating good internal consistency. Test-retest reliability was calculated across a three-week time period for a portion of the sample (n = 129). The following Pearson correlations were calculated for each subscale score: r = .88 for avoidance and fear, r = .87 for thoughts about sex, r = .89 for the role of sex, and r = .82 for attraction/interest."                                                                                                                                                                                                                                                                                                     
##  [78] "Across four studies (total N = 1,279), the reliability and validity of parallel German and English versions of the AMMSA scale were examined. The results show that both language versions are highly reliable; compared with a traditional RMA scale, means of AMMSA scores are higher and their distributions more closely approximate normality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [79] "Test-retest reliability: In a small treatment sample ( N = 38), Pearson correlations (parental anger, family problems) or Cohen’s kappas (discipline/force) were computed based on actual scores reported for each of two sets of adjacent sessions in order to determine temporal stability. Parent reports revealed moderate to high stability during early and late treatment periods for anger and problem ratings. A lower level of stability was found for physical force/discipline. Compared to child ratings using same format, moderate correlations were found for parental anger (r = .41) and family problems (r = .21), and the kappa coefficient for physical discipline/force was k = .53"                                                                                                                                                                                                                                                                                                                           
##  [80] "The reliability of the AAI classifications was quite high over time (78% on the level of the 3 main categories; K = .63) and across interviewers. The 10 pairs of interviewers and status of interview classifications (changed vs. unchanged) were cross-tabulated. This analysis did not yield significant results, χ²(9, N=83)=11.93, p=.22. To test the influence of the interviewer on the classifications more generally, the authors examined whether particular interviewers were associated with specific classifications. On the level of the three main classifications, no significant associations were found, χ²(8, N=83) = 9.32, p=.32. When the unresolved classification was taken into account, this result did not change, χ²(12, N=S3)=7.04, p=.85."                                                                                                                                                                                                                                                             
##  [81] "Cronbach’s alpha for the scale was .88, and item–total correlations ranged from .60 to .75. A confirmatory factor analysis, Chi squared (14, N = 306) = 79.95, p < .05, achieved good fit to the data, as assessed by a comparative fit index (CFI) value of .94, a goodness-of-fit index (GFI) value of .93, and a standardized root-mean-square residual (SRMR) value of .04. The alpha internal consistency estimate for the scale was .89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [82] "Internal Consistency: Cronbach's alpha coefficients displayed an alpha value of 0.90 for the FEQ overall sample. For the factors, Cronbach's alpha coefficients displayed alpha values of 0.78 (Death and Danger), 0.79 (Social Evaluation and Psychic Stress), 0.69 (Physiological Experiences), and 0.54 (Animal fears). Test-retest Reliability: The FEQ was administered on two occasions, 1 week apart, to a subsample of adolescents from the total sample (n = 155; 83 males, 72 females). For the subsample and the total score, Pearson's correlation coefficients displayed the retest coefficient as 0.73. For the subsample and the four factor scores, the coefficients ranged between 0.47 (Animal fears factor) and 0.71 (Death and danger factor). For the total score by subgroups, the retest coefficient ranged between 0.65 for males, and 0.77 for females and 15- to 18-year-olds."                                                                                                                            
##  [83] "Internal consistency: The Cronbach's alpha values for the Sexual Self-Schema Scale and each factor are as follows: full scale, .82; Factor 1, .81; Factor 2, .77; and Factor 3, .66 (N = 387). Test-retest Reliability: Test-retest coefficients over a 2- to 9-week interval for each factor were .72, .76, and .85, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [84] "Internal Consistency reliability: (N=581) The obtained values for primary scales range from .67 to .87 and of the 14 scales, 10 are at .80 or above; 3 are between .70 and .80; 1 is at .67 Test-Retest Reliability: (N= 83, interval = one month) The obtained values for test retest reliability range between .69 and .90 and of the 14 scales, 12 exceed .80 with several approaching .90."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [85] "For the sub-scales at 3 monthly age bandings internal consistency ranges from .68 to .94. Thirty-eight of the forty coefficients are above .70. Total scores for each sub-scale show internal consistency ranging from .91 - .97. A small sample of children (N=28) from the standardisation sample was re-tested with an average interval of 1.7 months between test occasions. The range of ages was 1.5 to 21.3 months on the first test. The overall test-retest reliability for the total set of scales was 0.48 with the greatest consistency being obtained with children in their second year (.82 vs. .29 for babies in the second six months and .29 for babies in the first six months). The same variations across age bands in terms of consistency over time are seen for the individual sub-scales. The only exception to this pattern is Scale B (Personal-Social) where consistency is highest in the first six months and lowest during the second six months."                                                    
##  [86] "Mean test-retest reliability across test versions is 0.83 (N=41 with an interval of 10 days plus N=12 with same day re-testing)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [87] "Internal Consistency: Frierson et al (2006) found the Breast-Impact of Treatment Scale (BITS) to have a Cronbach's alpha = .91 for 2 samples, total n = 194. Test-retest reliability: Sample 1 was followed and reassessed 12 months following accrual. During that time interval, no psychological intervention was provided and patients had completed adjuvant cancer therapies. The correlation between testings was .70."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [88] "Internal consistency: Cronbach’s alphas for the 27-item NSPS in Groups 1 and 2 (all undergraduate students) were both .96. Each factor also demonstrated strong internal consistency, with Cronbach’s alpha coefficients for the social competence, physical appearance, and signs of anxiety factors, respectively, of .93 (n = 225), .91 (n = 225), and .85 (n = 225) in Group 1, and .94 (n = 316), .93 (n = 316), and .88 (n = 316) in Group 2. Test-retest reliability: Though not measured in Group 1, the test-retest reliability of the 27-item NSPS in Group 2 was satisfactory (r = .75; n = 316) over a one-week interval."                                                                                                                                                                                                                                                                                                                                                                                               
##  [89] "Internal Consistency: All 7 items of the CPFQ had highly significant intercorrelations, with a range of 0.34–0.78 and a mean of 0.57, which for a 7-item scale yields coefficient alpha = 0.90. Results illustrate that all 7 items were also significantly correlated with the total CPFQ score (minus that item), with a range of 0.74–0.85. These results were found in a sample of patients with major depressive disorder. Test-Retest Reliability: The 1- to 2-week test-retest reliability (range = 5–14 days, mean = 8.1 days, SD = 2.6) in patients taking antidepressants with inadequate responses and cognitive residual symptoms was r = 0.83 (n = 32, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                     
##  [90] "Internal Consistency: Internal structure of the AEBLS-S was shown to have produced internal consistency estimates ranging from .87 to .90 across 15 agencies (e.g., high schools, correctional institutions, psychiatric centers) with adolescent Ss (N = 2498)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [91] "Internal consistency: Cronbach's alpha's for the German-WTS were good (α = .89 for Coworker Trust) or excellent (α = .95 for Organizational Trust, and α = .96 for Supervisor Trust). Test-retest reliability: Retest reliability was obtained from the second sample (employees of a pharmaceutical company, n = 97). All of the three dimensions of the G-WTS showed satisfactory reliability values, with values of r = .77 for Coworker Trust, r = .73 for Supervisor Trust, and r = .70 for Organizational Trust (all values significant at a level of p < .01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [92] "Internal consistency: Internal consistencies of the 16 Facets in a Personality-Disordered sample (n = 1,208) ranged from .69 (Respect) to .84 (Aggression regulation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [93] "Internal consistency: Coefficient alpha was .89. To test whether the youngest children might be accounting for lower reliabilities, we calculated and compared internal consistency reliabilities separately for children aged 12 years and younger (n = 33, alpha = .89) and children aged 13 years and older (n = 58, alpha = .84). We divided the sample between the ages of 12 and 13 years because this is the typical age when children transition from elementary school to middle school, thus marking an important developmental shift. The Fisher-Bonett Test for equality of independent alpha coefficients revealed a nonsignificant difference in alpha coefficients across age groups."                                                                                                                                                                                                                                                                                                                                
##  [94] "Reliability: In a test with 83 children (mean ages 10.9 years, SD = 1.64, N = 36 and 13.9, SD = .67, N = 47), the standardized item α reached .89. For each factor (i. e., dimension) separately, item α coefficients of .96, .95, and .92 were obtained. In a second test with 8-13 yr olds, the total scale standardized item α attained was .68."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [95] "Internal Consistencies in French version of ATQ Short Form (across 2 samples of young adults, n = 258, and n = 385, respectively): Across all 4 dimensions, all Cronbach’s αs ranged from .67 to .85 for the first sample, and from .72 to .82 for the second sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [96] "Internal Consistency: With the exception of the Unassuming-Ingenuous (J-K) scale, whose coefficient of reliability was low (if the Spearman Brown prophecy formula were applied, the estimated reliability of the J-K scale would be 0.58 for N = 10), the present Circumplex scales reached a satisfactory level of reliability (average alpha = .73; average interitem correlation = 0.25)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [97] "The internal reliability of the seven intergenerational congruence items was very high; alpha = .85 in the case of the father items and alpha= .84 in the case of the mother items. One-month test-retest reliability with a subset of the sample (n = 51) was also high; with r =. 90 for the father items, and .88 for the mother items. Additionally, test-retest reliability of the overall satisfaction with the relationship items was also high: .93 for father and .89 for the mother items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [98] "Test-retest Reliability: A subset of 40 subjects from the sample of young men completed a second SRE form approximately 1 year later. Correlations for individual items between Time 1 and Time 2 ranged from .60 to .99, with most in the .66 to .79 range. A correlation of .82 (n = 40) was achieved between an individual's mean SRE score across all categories at the two time points."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [99] "Test-Retest Reliability: at 30-60 days, (n = 29), varied from .64 to .84, with the exceptions of subject's aggression to mother, which yielded a coefficient of .43, and mother's strictness, with a coefficient of .46."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [100] "A subsample filled out the ASQ-OAV two months after their initial interview. In this small group (N=13), the test–retest correlation of the entire measure was 0.44, while the test–retest correlation for the affiliation composite score was 0.50. The internal reliability of the affiliation items was calculated using Nunnally’s (1978; Equation 7–15) reliability equation, which corrects for the use of linear combinations of variables, as each composite domain score represents a linear combination of the positive and negative items for that domain. The reliability of the composite affiliation score in participants who completed at least the six month follow-up was a disappointing 0.60. This reliability falls towards the upper end of the range found by Peterson et al. (1982) for six-item composites from the original ASQ. It is important to note that less-than-perfect reliabilities have been found in previous explanatory style research, but the results have been deemed useful nonetheless."
## [101] "Internal Consistency: The internal consistency (alpha) coefficients for the scales were as follows: self-acceptance, .93; positive relations with others, .91; autonomy, .86; environmental mastery, .90; purpose in life, .90; and personal growth, .87. Test-Retest Reliability: The test-retest reliability coefficients for the 20-item scales over a 6- week period on a subsample of respondents (n = 117) were as follows: self-acceptance, .85; positive relations with others, .83; autonomy, .88; environmental mastery, .81; purpose in life, .82; and personal growth, .81."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [102] "The internal reliability of the scale, computed for the standardization sample of n = 212, was .86. The reliability estimate was .83 computed on a later sample of 406 Ss. Both estimates suggest moderately good consistency of response within the whole scale. Test-retest reliabilities ranged from r = .73 to .89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [103] "Internal consistency: Cronbach's alpha of the four main SCAAI scales across the four studies was generally moderate to high (.46 to .82). Test-retest reliability: In a subsample of Study 2 (n = 48), test-retest reliabilities of .71 to .79 were obtained for the four main subscales of the SCAAI over a 1-5-week period."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [104] "Internal consistency: Cronbach's alphas ranged from .76 to .93. Item-scale correlations ranged from .70 to .88 for the Attractive scale, from .51 to .82 for the interpersonally Sensitive scale, and from .38 to .76 for the Task Oriented scale. Test-retest reliability: The test-retest reliabilities of the ratings of master's-level trainees (N = 32) for the combined scales (.92) and for each scale separately were as follows: attractive (.94), interpersonally sensitive (.91), and task oriented (.78)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [105] "Test-retest reliability: A pilot study (N = 27 female undergraduates) yielded 2-week test-retest coefficients of 0.82, 0.77, and 0.51 for the family, peer and media modeling scales, respectively. Internal consistency: Cronbach's alphas were 0.78 for the family modeling scale, 0.85 for the peer modeling scale, and 0.88 for the media modeling scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [106] "Internal Consistency: This revised scale had a Cronbach's alpha of .88 in the high school sample of females (n = 320)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [107] "Internal consistency: Coefficient alphas for the RISC ranged from .85 to .90, with a mean of .88. The measure's corrected item-total correlations ranged from .52 to .69. Test-retest reliability: The test-retest reliabilities over a 2-month interval in two samples were .73, n = 67, p < .001 and .63, n = 317, p < .001. The test-retest reliability over one month was .74, n = 405, p < .001 and .76, n = 46, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [108] "Internal consistency: Internal consistency of the Individuation Scale was estimated by Cronbach's coefficient alpha, which yielded reliability coefficients of .87 (N = 667) and .84 (N = 246). Test-retest reliability: The test interval was 1 to 3 weeks, and the Pearson correlation coefficient was .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [109] "Internal Consistency: A pilot study (N = 117) indicated that the DIS is internally (α = .94) reliable. Test-retest Reliability: The 1-month test-retest reliability was .92."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [110] "Internal Consistency: Cronbach’s alpha for the 25-item short form scale is 0.89 (n = 621). Test-retest Reliability: The retest reliability for the scale after a period of roughly sixth months is r = 0.85 (n = 459)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [111] "Mean internal consistencies of each MIDAS scale reveal alpha coefficients of .78 to .89. A 2001 study reported reliability coefficients of .85-.90. Similar coefficients were obtained for all scales in international studies of MIDAS translations. Two studies of test-retest reliability revealed 1-month stability coefficients of .76 to .92 and 2-month stability coefficients of .69 to .86. Two studies of interrater reliability comparing the ratings of a primary and secondary informant regarding a target person found that in one, informants agreed 80% of the time within one category, with a 40% exact agreement; the second, an international study, found that informants agreed 92% within one category and 46% exact agreement. A study of cultural reliability (N= 119 college students, of whom 49% were African American and 42% were Caucasian) showed no statistically significant differences in mean scores for 9 of 10 main scales. See the publisher’s test manual for details."                    
## [112] "Internal consistency: The 20-item scale had a Cronbach's alpha of .83 at Time 1. Test-retest reliability: An independent pilot study (N = 44) revealed a 1-month test-retest coefficient of .86 for this adapted scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [113] "Test-Retest Reliability: Acceptable test-retest reliability was found, with an ICC of 0.778 (P < 0.0001) (n = 67). Inter-Rater Reliability: Inter-rater reliability, testing pairwise concordance between three pairs of raters, revealed an ICC of 0.998 for rater one versus two, 0.995 for rater one versus three and 0.996 for rater two versus three (n = 8 patients). Internal Consistency: Good internal consistency was found for the SPRINT, for which Cronbach’s was 0.77 at baseline and 0.88 at endpoint."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [114] "The internal-consistency reliabilities for the 80-item California Psychological Inventory-Counterproductivity Scale ranged from .80 to .90 in samples of students, managers, and non-management job applicants. For the ten work-related items only, the corresponding values were: males=.750; females=.726; weighted mean=.734. For the 25 student-related items only, the corresponding values were: males=.895; females=.889; weighted mean=.891. Alpha values for each subscale were as follows: Cheating=.84, Substance Abuse=.86, Low Personal Standards=.76, Property Theft=.60, Duplicity=.73, Misrepresentation=.74, Work Avoidance=.66, Petty Personal Gain=.66, Indolence=.58. Test-retest correlations were (with a 2-3 week interval): males, .878 (n=71); females, .899 (n=158). The pooled test-retest correlation was .893. The obtained reliability estimates for the CPI-Cp scale would appear completely satisfactory for a measure of a personality trait (or constellation) based on self-report data."        
## [115] "For the present sample (n = 30), the 1-week test-retest reliabilities (assessed prior to the first and second sessions for the clients and following these sessions for the therapist), for the client blame, client control, therapist blame, and therapist control subscales were r = .67, .55, .71, and .68, respectively. Internal consistency for each of the subscales was estimated (using the Spearman-Brown Prophecy formula) to be r = .52 and .56 for the client blame and control subscales, respectively; and r = .45 and .50 for the therapist blame and control subscales, respectively. On an independent sample of clients from the same center (n = 12), the reliability of the blame and control scales between the first and second session was r = .78 and .68, respectively, and the internal consistency was .62 and .60."                                                                                                                                                                                    
## [116] "Internal Consistency: Cronbach's alpha reliability was .76 on data from two combined samples of university (N = 73; 16-33 years) and school (N = 204; 8-19 years) students."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [117] "Internal Reliability: Cronbach's α = 0.818 (n=1141); Test/Retest r = 0.85 (n = 20); parallel forms r = 0.83 (n=51)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [118] "Internal Reliability: Cronbach's α = 0.757 (n=1051); Test/Retest: r = 0.81 (n = 213). For further details, see manual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [119] "Internal Reliability: Cronbach's α = 0.96 (n=183); Test/Retest: r = 0.82 (n = 211); Parallel forms: GRT A v GRT B - r = 0.85 (n = 134); GRT A v GRT B - r = 0.84."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [120] "Internal Reliability: Cronbach's α = 0.71 (n=677); Test/Retest: r = 0.62 (n = 25)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [121] "Internal Reliability: Cronbach's α = 0.79 (n = 58); Test/Retest: r = 0.62 (n = 25); Test-retest (n = 8) = 0.80, p<0.01."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [122] "Internal Reliability: Cronbach's α > 0.88 for all scales (n=1218)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [123] "Internal consistency: Cronbach's α was .85. Test–retest reliability: Test–retest reliability across a 1-year period was strong (r = .63, p < .001, n = 197)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [124] "Interrater Reliability: Intrarater reliability was high: intraclass r(20) = .84. Internal Consistency: Intratest homogeneity, measured by Cronbach's alpha, was .81 (n = 35)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [125] "Internal Consistency: The two measures of Internalization (Cronbach’s alpha = .83) and Symbolization (Cronbach’s alpha = .82 ) showed strong reliability. Test-retest Reliability: The test–retest reliabilities for the Internalization and Symbolization scales were .49 and .71 (n = 148), respectively, over a time interval that varied from 4 to 6 weeks, depending on the sample. That these relationships are of modest magnitude supports the general argument that moral identity is not a stable trait and should not be treated as such."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [126] "Internal Consistency: Cronbach’s coefficient alpha for internal consistency reliability of teacher responses to SES-T total score was .95 in Study 1 (n = 678) and .93 in Study 2 (n = 85). Test-retest Reliability: The 14-day test– retest reliability coefficient for the total score of the SES-T for the teacher responses in Study 2 (n = 85) was .89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [127] "Internal consistency reliability for the SERSC was estimated by obtaining a coefficient alpha for each school class. Coefficients ranged from .70 to .91 with a median of .80. The test-retest reliability coefficients with a 1-month interval for the three classes were .93 (second grade, n = 18, p<.01), .81 (second grade, n = 24, p<.01), and .65 (third grade, n = 21, p<.01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [128] "Internal Consistency: Despite the empirical approach to item selection, the test is homogeneous in makeup, as indicated by a split-half reliability coefficient of .84 (N = 222 Temple University students)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [129] "Test-retest reliability of the questionnaire was assessed after a 4-5 month interval. The mean repeat reliability of the Parents' form (n = 13) was 81.23% (range = 70.31%-88.28%). The mean repeat reliability of the Children's form (n = 12) was 85.36% (range = 78.41%-94.32%)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [130] "Results indicated high internal consistency and test-retest reliability. The GESS-R split-half (using the Spearman-Brown correction for test length) reliability coefficient was .92 (n = 199)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [131] "The reliability of the Stroop scores is highly consistent across different versions of the test. In all cases, experimenters have looked at test-retest reliabilities covering periods from 1 minute to 10 days. Jensen (1965) reported reliabilities of .88, .79, and .71 for all three Raw Scores. Golden (1975b) reported reliabilities of .89, .84, and .73 (N=450) for the group version of the test and reliabilities of .86, .82, and .73 (N=30) for the individual version. Reliabilities for subjects given both the individual and group form were .85, .81, .81, and .69 (N=60). The reliabilities for the Raw Interference score in these samples are all in the .70 range, and are equal to those of the Raw Color-Word score."                                                                                                                                                                                                                                                                                         
## [132] "Test-retest Reliability: The six test-retest r's, with 6 weeks between administrations, ranged from .45 on identity diffusion to .81 on intimacy, with a median r of .70 (N = 150)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [133] "Internal Consistency: Reliability analysis indicated the eight-item scale was highly reliable. For the total sample (N = 303), a Cronbach’s alpha coefficient of .923 was obtained."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [134] "Test-retest reliabilities were .54 and .43 for the larger (N = 158) and smaller (N = 76) samples of elderly individuals, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [135] "Internal Consistency: Scale reliabilities were impressively high, with an average internal consistency (alpha) of .88 across six samples (total N = 1219)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [136] "Since the GEFT is a speed test, an appropriate method of estimating reliability is the correlation between parallel forms with identical time limits. Correlations between the 9-item First Section scores and the 9-item Second Section scores were computed and corrected by the Spearman-Brown prophecy formula, producing a reliability estimate of .82 for both males (N = 80) and females (N = 97). These reliability estimates compare favorably with those of the EFT."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [137] "Internal Consistency: In a study following Hurricane Andrew (n = 213), Cronbach's alphas were .84 (intrusion), .72 (avoidance), and .85 (total). In a study of a high-crime, low-income area (n = 71) , Cronbach's alphas were .68 (intrusion), .53 (avoidance), and .73 (total). Interrater Reliability: Interrater reliability on a study of adolescents exposed to a fire with interviewers having undergone 51 hours of training averaged .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [138] "Internal Consistency: Cronbach’s alpha suggested a high degree of internal consistency (alpha = .86, N = 261)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [139] "Internal Consistency: Alpha coefficients for the 12 subscales of the CEM across two administration times (n = 301) ranged from .42 to .95. The total scores had exceptional reliability (.95 and .93, respectively) over both administrations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [140] "Internal Consistency: In one group of subjects, coefficient alphas for Form 1 (eyes closed) ranged between .65 and .85 and averaged .76 across the major dimensions. Coefficient alphas for Form 2 (hypnotic induction) ranged between .74 and .85 and averaged .80 across all major dimensions. Pearson correlations for five pairs of duplicate items were .53 for both the eyes-closed (Form 1) and the induction condition (Form 2). Data from 89.9% (n = 195) of the subjects in the eyes-closed condition, and 87.6% (n = 190) in the induction condition had reliability index values of 0 to 2."                                                                                                                                                                                                                                                                                                                                                                                                                             
## [141] "Internal Consistency: For the whole sample, Cronbach’s alpha was 0.71 for the experimental version of ChEAT. Test–Retest Reliability: The test–retest reliability (Pearson correlation) for the Catalan version of the ChEAT was 0.56 (N = 258)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [142] "Internal Consistency: The OBQ-CV total, and all the subscales, demonstrated strong internal consistency (alpha = .96 for the total score, .91 for Responsibility/Threat Estimation, .94 for Perfectionism/ Certainty, and .91 for Importance/Control of Thoughts). Test-Retest Reliability: The stability of the OBQ-CV scores was also supported based on a subset of children (n = 17) that completed the measure twice (retest interval ranged from 2 to 7 weeks). Specifically, significant and strong retest correlations were found for the OBQ-CV total (r = .88) and all three subscales (Responsibility/Threat Estimation, r = .84, Perfectionism/Certainty, r = .81, and Importance/Control of Thoughts, r = .85)."                                                                                                                                                                                                                                                                                                        
## [143] "Internal Consistency: Internal consistency was very good. Alpha was .94 for the total score, .92 for Responsibility/Threat Estimation, .92 for Perfectionism/Uncertainty, and .87 for Importance/Control of Thoughts. Test-Retest Reliability: The Pearson correlation coefficients for the 3 week test–retest in a non-clinical control subsample (n = 39) were: for the OBQ-44 total score, r = .85; for Responsibility/Threat Estimation, r = .73; for Perfectionism/Uncertainty, r = .88; and for Importance/Control of Thoughts, r = .77."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [144] "Internal Consistency: High internal consistency for both the Involvement scale (r tt = 0.86, p < 0.01) and the Overtness scale (ru = 0.84, p < 0.01) was found for the lesbian sample (N = 63) using the Spearman-Brown split-half step-up technique with an odd-even split."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [145] "Internal consistency: As used in a survey based on 206 university students, the Cronbach’s alpha of the short form was 0.819. Test–retest reliability: Assessed with a delay of 11–12 weeks in university students, the correlation was 0.88 (p < 0.001, N = 46) and there were no differences between both scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [146] "Inter-Rater Reliability: Inter-rater reliability demonstrated moderate agreement between primary and secondary caregivers. A number of these coefficients did not reach statistical significance because of the small sample size (n = 26), but only one of the correlations was below .25 (Soothability). Internal Consistency: Low correlations were generally observed among the factors: r=.16 for the first and second factors (Surgency/Extraversion and Negative Emotionality), r=.25 for the first and third factors (Surgency/Extraversion and Orienting/Regulation), r=−.30 for the second and third factors (Negative Emotionality and Orienting/Regulation). Cronbach’s alpha for Surgency/Extraversion was 0.92. Estimates for Negative Affectivity and Orienting/Regulation both equaled 0.91. Alpha values for a group of 3–6 month-olds ranged from .77 to .90, in a group of 6–9 month-olds from .70 to .89, and a group of 9–12 month-olds from .71 to .83."                                                       
## [147] "Internal Consistency: The PBPQ demonstrated excellent initial evidence of internal consistency with Cronbach coefficient alphas of .83 at the pretest (n = 26) and .85 at posttest (n = 24)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [148] "Interrater Reliability: Each LEAS-C scenario was coded and scored independently of the remaining scenarios. Two raters scored 22 of the protocols. Inter-rater reliability using Pearson’s correlation was, for self-LEAS-C scores, r = .93, for other-LEAS-C scores, r = .86, and for total-LEASC scores, r = .89. Internal Consistency: Internal consistency using Cronbach’s alpha was alpha = .71 for self scores, alpha = .64 for other-scores, and alpha = .66 for total scores (N = 51)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [149] "Internal Consistency: The NA and SI scales were internally consistent (alpha = 0.88/0.86; N = 3678). Test-Retest Reliability: The NA and SI scales were also stable over a 3-month period (test–retest r = 0.72/0.82)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [150] "The corrected item-total correlations for the 30 items were all positive and ranged from .22 to .54, indicating that each item has an appropriate association with the total score of the scale. The coefficient alphas were as follows: Total CCS (.87; N = 328); Acceptance, Reframing, and Striving (.85; N = 332); Family Support (.86; N = 335); Religion–Spirituality (.90; N = 338); Avoidance and Detachment (.77; N = 335); and Private Emotional Outlets (.76; N = 336). Test-retest correlations were moderate for the CCS and its factors over a 2-week period."                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [151] "Internal Consistency: Split-half reliability coefficients yielded a mean of r = .78 (p < . 01), indicating good internal consistency. It is not clear, however, if this estimate is for all of the samples studied. Test-Retest Reliability: Test-retest reliability was r = .85 over a 2-month interval (N = 19) and r = .56 over a 7-month interval (N = 50). When analyzed as a function of age, however, test-retest coefficients were significantly different: for fourth-grade children (n = 21) r = .75, and for first-grade children (n = 28) r = .41."                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [152] "The DES score test-retest reliability coefficient was 0.84 (p < .0001, N = 26). Reliability coefficients of the item scores ranged from .19 to .75 with 25 of the 28 items yielding coefficients reaching a significance level of p < 0.05 and 16 of the items reaching a level of p < .001. The median correlation coefficient for item scores was .60."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [153] "Interrater Reliability: Across the pilot (n = 14) and interviews reported in the current study (N = 50), adherence to procedure and interrater reliability were confirmed with very high reliabilities (.94-.98)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [154] "Internal consistency was high across all three time points: Cronbach's standardized item alphas were: session 2, .82 (n = 38 therapists and 75 patients); session 5, .80 (n = 36 therapists and 71 patients); and session 24, .81 (n = 29 therapists and 45 patients)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [155] "Interrater reliability was assessed using patient and external observer data for which ratings from all four raters were available (n = 70 for patients, n = 46 for external observers). Results show very good reliability for Hypergraphia, Sexual Interest/Activity, Religious Belief, Verbal Aggression, and Physical Aggression. For Philosophical Interest and Stickiness/Viscosity, marginally adequate reliability estimates were obtained for both patient and external observer data. The reliability estimates for the Circumstantiality variable fall within acceptable limits for external observer data."                                                                                                                                                                                                                                                                                                                                                                                                              
## [156] "Internal Consistency: Using college students and high school teachers (N = 172) the reliability of obtained scores for each of the six variables are as follows: feelings, .93; task, .93; community value, .94; other value, .91; control value, .93; and self value, .91. Coefficient alpha for the conflict management score is .96. Test-Retest Reliability: The instrument was given twice, 8 weeks apart, to 51 undergraduates. In the test-retest examination, using Pearson Product Moment correlation, the reliabilities for the six constructs are: feelings, . 74; task, .68; community value, .84; other value, .68; control value, .83; and self value, .64. The reliability for the conflict management score is .76."                                                                                                                                                                                                                                                                                                 
## [157] "Internal Consistency: The reliability coefficients of ECQ-P were satisfying. The alpha coefficient was .74, which indicates that the scale has sufficient homogeneity, and the stability coefficient was .78 (n = 71). The average interitem correlation was .24. Item-total correlations varied between .30 (Item 6) and .50 (Item 9)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [158] "In a large sample of employees (N = 3251) from various industries and occupations, Cronbach's alpha values for the subscales of this measure ranged from .72-.84; alpha for the Productivity Index was .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [159] "Internal consistency: The alpha reliability coefficients of the three scores were as follows: .95 and .93 for the Positive Scale, School A and B samples, respectively; .93 and .90 for Disruptive; and .85 and .81 for Isolated. Stability: Three administrations of the RCP in School A provided stability data for intervals of 6 and 17 months. Reults indicate that stability correlations (N = 161) were .87, .77, and .80 for the Positive, Disruptive, and Isolated scores, respectively. After 17 months the stability correlations (N = 163) remained robust: .63, .64, and .66, respectively, for the three scores."                                                                                                                                                                                                                                                                                                                                                                                                      
## [160] "Internal Consistency: Cronbach's alpha coefficients were calculated for the three subscales and for the total AAS. Coefficients ranged from .65 to .86 (Fear of Contagion, a = .65; Negative Emotions, a = .70; Professional Resistance, a = .75; and total AAS, a = .86), suggesting good internal consistency for all subscales and for the total scale. Test-Retest Reliability: The 2-week test-retest reliability of the AAS was established for 102 nursing (n = 47) and medical (n = 55) students. The correlation of AAS scores at 2-week intervals was high (r = .92), suggesting good short-term reliability of the instrument."                                                                                                                                                                                                                                                                                                                                                                                           
## [161] "Test-Retest Reliability: Moon and Wagner (1992) assessed 28-day, test-retest reliability for the CPCS using a small group (n = 10) of girls between the ages of 8 and 17 years. Results revealed 100% test-retest agreement for the categorical preference item and no significant test-retest difference for any of the interval-scale preference and comfort items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [162] "Internal Consistency: The internal consistency of the measure's subscales is as follows: trait guilt (coefficient a = .89, mean interitem correlation = .29), state guilt (coefficient a = .84, mean interitem correlation = .34), and moral standards (coefficient a = .88, mean interitem correlation = .33). Test-Retest Reliability: The consistency of the scales over time was assessed by test-retest administrations among student respondents at intervals of 10 weeks (n = 136) and among a subset of this sample (n = 46) who completed the Guilt Inventory a third time after the passage of 36 weeks. The Moral Standards scale was most stable for both the 10-week, r(134) = .81, p < .01, and 36-week, r(44) = .77, p < .01, periods. As expected, for trait guilt, test-retest correlations were higher for both the 10-week, r(134) = .72, p < .01, and the 36-week, r(44) = .75, p < .01, intervals than was the case for state guilt, r(134) = .56, p < .01, and r(44) = .58, p < .01, respectively."            
## [163] "In the total sample (n = 158), interitem correlations for the LMSQ ranged from r = .51 to r = .67, with a mean r of .58. Preliminary analysis of the test-retest reliability of the LMSQ score suggest excellent test-retest stability (r = .91) over a 4-month time period. Internal consistency: Cronbach coefficient alpha suggests a high level of internal consistency for the LMSQ (α = .91)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [164] "The CBOCI subscales had satisfactory internal consistency in Study 1. For the 15-item CBOCI Obsessions subscale, α .85 for the OCD sample (n = 51) and α = .89 for the total sample (n = 494). For the 12-item CBOCI Compulsions subscale, α = .84 for the OCD sample (n = 54) and α = .89 for the total sample (n = 499). In Study 2, the coefficient alphas of generalizability were .96, .61, and .21 for the first three components. Clearly, the third component did not attain an adequate level of internal consistency to warrant retention. Test–retest stability: Sixty-seven students completed the same questionnaire battery a second time after a 1 month interval. After deletion of missing data, the final sample consisted of 55 students. The CBOCI Obsessions (r = .69), Compulsions (r = .79), and Total Score (r = .77) showed a moderate level of temporal stability."                                                                                                                                        
## [165] "The reliabilities for the Conger-Kanungo (C-K) scale varied from 0.88 to 0.91 CHARISMATIC LEADERSHIP IN ORGANIZATIONS 445 across samples. For the total sample (N = 488), the reliability index was 0.88. The item-total correlations for the 25 items in the C-K scale ranged from 0.25 to 0.66, with an average correlation of 0.44. For the composite C-K scale, the test-retest reliability was 0.69."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [166] "Internal Consistency: Split-half reliability was calculated for the total sample. For the sexes combined, this was .88 (n = 2,330); for boys .66 (n = 1,260) and for girls .80 (n = 1,070). Test-Retest Reliability: Test-retest reliability was examined on a follow-up sample of 15 boys and 18 girls from the four day-care nurseries/playgroups in the pilot study. The mothers made a second rating of their child 1 year later (within a range of 2 months). For the combined group of boys and girls, the test-retest reliability was .84. When the sexes were analyzed separately, the test-retest reliability was .62 for boys and .66 for girls. The pooled test-retest reliability across the sexes was .64 (n = 33)."                                                                                                                                                                                                                                                                                                    
## [167] "Reliability analysis produced an alpha coefficient of 0.88 for the Personal Mathematics Teaching Efficacy subscale and an alpha coefficient of 0. 75 for the Mathematics Teaching Outcome Expectancy subscale (n = 324)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [168] "Internal consistency: Estimates of Cronbach’s alpha were all moderate to good: for CD-General, alpha was .73 (N = 203); for Spirituality, alpha was .76 (N = 207), for CD-Patient alpha was .85 (N = 156), and for the combined scale, alpha was .83 (N = 154). Test-retest reliability: Correlations between scores at Time 1 and Time 2 were based on responses from participants who completed the two measures at least 7 days but no more that 21 days apart. For the General Concern About Death (CD-General) scale, the test-retest correlation was .84 (N= 143); for the Spiritual Concern About Death (CD-Spiritual), the correlation was .89 (N= 143); for the Patient-Related Concern About Death (CD-Patient), the correlation was .83 (N= 116), and for the combined score, the correlation was .89 (N = 116)."                                                                                                                                                                                                         
## [169] "The split-half reliability correlation between the aggregated group similarity data matrix (GSM) for odd numbered participants (n = 19) and even numbered participants (n = 18) was high at r = .84, p = .001. The split-half reliability correlation between the GSM for one randomly selected (using a random number table) half of participants (n = 19) and the second randomly selected half of participants (n = 18) was r = .85, p = .001. These split-half reliabilities provide evidence of internal consistency between results for subsets of the data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [170] "Internal Consistency: The internal consistency reliabilities of the scales, using the entire sample of N = 6,930, ranged from .71 (skill variety and feedback from the job itself) to. 59 (task identity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [171] "Test-Retest Reliability: Two classroom samples with n = 21 and n = 36 yielded 9-10 week test-retest reliability coefficients of .71 and .63 for Total LPC scores; and somewhat lower stability coefficients were reported for the two subscale scores. Internal Consistency: Cronbach’s alpha was high for the entire 22-item scale (.90)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [172] "Internal Consistency: Coefficient alpha reliability estimates were .88, .89, and .76, respectively, in this study, and .91, .89, and .78 across all respondents (N = 1,130)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [173] "Most item-total correlations were in the moderate range. as was the six-week test-retest reliability for the seven-year-olds (r = .79, n = 60, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [174] "Internal Consistency: The mean sample-weighted internal consistency reliability was .84 (k = 79, N = 30,623). Test-Retest Reliability: The mean sample-weighted test–retest reliability was .50 (k = 4, N = 746)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [175] "Internal Consistency: Item-scale correlations ranged from .43 to .63, suggesting that each item is partially measuring the same underlying construct, but not to such an extent as to be redundant with other items. Cronbach's alpha for the entire six items was .78, suggesting that the LOT exhibits an acceptable level of internal consistency. Test-Retest Reliability: The test-retest intervals for four groups were 4 months (N = 96), 12 months (N = 96), 24 months (N = 52), and 28 months (N = 21). As shown in Table 8, the test-retest correlations were .68, .60, .56, and .79, respectively. Taken together, these findings suggest that the LOT-R is fairly stable across time."                                                                                                                                                                                                                                                                                                                                   
## [176] "Internal Consistency: The responses of college students (N = 204) demonstrated only a small loss of reliability from the 32-item Fletcher-Averill scale (.783) to this 12-item scale (.750)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [177] "Internal Consistency: Separate split-half reliabilities were calculated for the male (n = 31) and female (n = 29) versions, and reached .47 and .64, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [178] "Initial reliability evidence of this measure was evaluated in a pilot study (N= 1000) before inclusion in the final study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [179] "Tool Reliability: Cronbach's alpha = .80 for patient scores (n = 93) and .85 for primary caregiver scores (n = 81). The authors note that further testing is needed for interrater reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [180] "Interrater Reliability: Ten percent of the interviews (n = 6) were double coded, and consistency between the two coders was assessed using the formula: number of agreements per total number of agreements plus disagreements. Intercoder reliability was 87.5%, indicating consistency in categorization by the two coders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [181] "Internal Consistency: Coefficient alpha for the 15 CHAOS items was 0.79. Test Stability: A subsample (N = 42) of mothers completed two CHAOS questionnaires with a 12-month interval between the initial and subsequent questionnaires. The test-retest stability correlation for total CHAOS score was 0.74."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [182] "Internal Consistency: Internal consistency within the subscales was good (Cronbach alphas: 0.69 to 0.93). Inter-Rater Reliability: All raters were trained to a reliability of greater than 0.70 using spearman correlation to the scoring key on the training vignettes (Mean = 0.865, n = 16). Test-Retest Reliability: Test-retest reliability was established in order to ensure that the EDS3 was a stable measure over time. Seven raters completed an EDS3 on Vignette #1, and re-completed the measure again 2 weeks later. Results of a correlation analysis (r = .902) revealed excellent test-retest reliability for the EDS3."                                                                                                                                                                                                                                                                                                                                                                                           
## [183] "Reliability alphas for the 10 subscales ranged from .62 to .92. The ASQ alone was administered to a sub-sample of participants (N = 105) 1 week after the initial administration and component scores were calculated for both administrations. Scores at time 1 correlated strongly with those at time 2 for all dimensions of adolescent stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [184] "The alpha coefficients ranged from .75 (Manic/Hyperactive Behavior) to .83 (Social Avoidance), with a mean of .80. These values are within the range acceptable for research purposes. Retest reliability (n = 61) was calculated using intraclass correlation coefficients (ICCs) with a one-way random effects model. The median length of time between test and retest was 30 days, with a range of 14–90 days. The retest reliability for the full scale was .81, which is considered “excellent” (Cicchetti, 1994). Subscale retest reliability levels ranged from .72 (Manic/Hyperactive Behavior) to .83 (Social Avoidance). The mean subscale retest correlation was .78. These ranged from .45 to .78, which is very high at the item level."                                                                                                                                                                                                                                                                               
## [185] "Test-Retest Reliability: Reliability was determined using test–retests (r = 0.75, n = 45)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [186] "Test–Retest Reliability: Fifteen of the longer duration group completed the time budget on two occasions. Intraclass correlations indicated very good test–retest reliability (r=0.831, n=15, p<0.001). Inter-Rater Reliability: Ten of the longer duration group time budgets were co-rated by one of the other authors (PG). Intraclass correlations revealed excellent reliability (r=0.986, n=10, p<0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [187] "Internal Consistency: Alpha coefficients ranged from .79 (Feeding) to .91 (Social/Sleep) for the three factors. Cronbach's alpha was 0.93 for the total score. Test-Retest Reliability: ICC for test–retest scores was 0.98 (n=22, 95%CI 0.96–0.99)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [188] "The internal consistency of the test was calculated as Cronbach’s Alpha. The reliabilities of the two variables Alcohol risk and Dissimulation vary between r=0.73 and r=0.79 for the long form and between r=0.72 and r=.076 for the short form. The consistency of measurement of the individual variables is adequately high. The ATV can thus be regarded as a sufficiently precise diagnostic instrument. In both the long and the short form the variables Alcohol risk and Dissimulation correlate very strongly with each other; that is, in both forms the two variables measure the same trait (Alcohol risk: r=0.97; p=0.000; N=100/Honesty: r=0.99; p=0.000; N=98)."                                                                                                                                                                                                                                                                                                                                                     
## [189] "The overall (total scale) coefficient alpha was .81. The Attitudes subscale coefficient alpha was .68, and the Behaviors subscale coefficient alpha was .85. Item-total correlations revealed that items on the Attitudes subscale ranged from .27 to .50, with three items loading below .40. Item-total correlations on the Behaviors subscale ranged from .41 to .68. A subsample of individuals (n = 33) completed a 2-week test-retest session, which yielded a reliability coefficient of .84."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [190] "Test Reliability: Although it has not proved possible to estimate the reliability of the test on a control group, evidence that this is high can be adduced from two independent observations. The interposition of an additional variable-type and extent of operation-will only dilute the reliability and it is likely that under more favourable circumstances the test-retest correlation would be higher than that observed (r = 0-813, P < 0.001, n= 18). The numbers also represent the order of difficulty as determined in the pilot study. The relationship is clearly a close one (tau = 0-87)."                                                                                                                                                                                                                                                                                                                                                                                                                         
## [191] "This 16-item scale was found to have a coefficient alpha of .81 (M = 26.40, SD = 9.56, n = 332)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [192] "Test-Retest Reliability: The results of the test–retest reliability (10-12-week interval) for the SCOPE produced a moderate significant correlation for the total scale (Pearson’s r = .441). Similar significant coefficients were obtained for the two subscales: Pearson’s r = .428 for optimism and Pearson’s r = .553 for protective social network. Internal Consistency: The internal consistency for both factors and the total scale was based on the total sample (n = 286), assessed by coefficient alpha. The internal reliabilities were good for the total scale (alpha = .83) and each subscale: optimism (alpha = .86) and protective social network (alpha = .71)."                                                                                                                                                                                                                                                                                                                                                 
## [193] "The internal consistency of the scale proved to be adequate (Cronbach’s alpha = .74), although test-retest reliability (n = 24) was unfortunately relatively weak, r = .40."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [194] "Item–total reliability scores for Phase 1 nominations were relatively high. The highest item–total correlation was for language arts (r = .81), followed by reading (r = .80), and mathematics (r = .71). Reliability figures for Phase 2 Brief Ratings were also high as measured by item–total correlations, which ranged from .72 to .82, and by Cronbach’s alpha (r = .94). Validity was assessed using a Bayesian conditional probability analysis between Phases 1 and 2. Phases 1 and 2 qualification was a significant indicator of proficiency status, χ2(3, N = 284) = 50.22, p < .05, Cramer’s V = .43."                                                                                                                                                                                                                                                                                                                                                                                                                  
## [195] "Inter-Rater Reliability: Inter-rater reliability yielded a Intra-class Correlation Coefficient (ICC) single measure (3,1) equal to 0.94 and ICC(3,10) average measure of 0.99. ICCs between sites were 0.95 for single items [ICC(3,1)] and 0.99 for total scores [ICC(3,5)]. The within site ICCs for the 3 multi-rater sites (n=2, n=3, n=3) ranged from 0.94 to 0.98 for single measures [ICC(3,1)] and from 0.97 to 0.99 for average measures [ICC(3,2/3)]. Internal Consistency: The scale had high internal consistency among the three items (Cronbach's alpha=0.84)."                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [196] "Internal Consistency: An analysis conducted on the 20 IHBS items (n = 392) demonstrated adequate internal consistency (alpha = .84). Corrected item-total correlations ranged from .28 to .55. Test-Retest Reliability: IHBS total scores were correlated with retest scores collected after an 18-month interval. A test-retest correlation of .57 (p < .0001) was obtained indicating moderately high stability over this period of time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [197] "Cronbach’s alpha for data for the Literacy Activities Rating Scale in the ELLCO Toolkit, Research Edition (n = 262) are: Full-Group Book Reading = .92, Writing = .73, Literacy Activities Rating Scale .66. Additional reliability data are detailed in the Technical Appendix of the User’s Guide to the Early Language & Literacy Classroom Observation Toolkit, Research Edition (Smith & Dickinson, 2002)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [198] "Internal Consistency: Cronbach's alpha tests showed that the SIBAW has excellent internal consistency for the total score (alpha = 0.90), and each of its subscales: subscale 1 (0.92), subscale 2 (0.86), subscale 3 (0.78), and subscale 4 (0.83). Test-Retest Reliability: Retest data from a subsample of participants (n = 20) showed that the SIBAW has good test–retest reliability following a 6–8 week lapse for the total score (r 0.77, p = 0.001), subscale 1 (r = 0.71, p = 0.001), and subscale 2 ( r = 0.52, p = 0.02). However, subscales 3 (r = 0.40, p = 0.08), and 4 (r = 0.34, p = 0.14) were not significantly correlated at retest, which may have been due to the small retest sample size."                                                                                                                                                                                                                                                                                                                  
## [199] "Analyses show that 8 of 15 scales have internal consistency reliability coefficients greater than 0.60 (Psychiatric Symptoms, Life Satisfaction, Instrumental Activities of Daily Living, Health-related Disability, Subjective Medication Side Effects, Vitality, Legal Problems, and Mental Health-related Disability). Of these eight scales, six have reliabilities greater than 0.70. The Psychiatric Symptoms scale, which consists of eight items, has the highest internal consistency (0.86), while the lowest is for the Victimization scale (0.38), which is a three-item scale. This finding is consistent with the expectation that internal consistency reliability improves as the number of items increases. One-week test-retest reliability analyses were conducted on the baseline subsample (n = 121) using intraclass correlation (ICC) coefficients. The majority of the scales (9 of 15) display substantial reliability with ICCs greater than 0.70."                                                        
## [200] "Reliability analysis of the WBC in the current study revealed adequate internal consistency (Cronbach alpha=0.68, n=122)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [201] "Internal Consistency: Factor analyses were conducted separately using the high-risk group (n = 197) and the low-risk group (n = 102). Congruence reliability (Harman 1976) for corresponding factors was very high for the first three factors (0.93, 0.88, and 0.80) and moderate for the last two (0.56 and 0.42)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [202] "Internal Consistency: Assessments of the scales' reliabilities found internal consistency scores using Cronbach's alpha ranged from .75 to .85. Test-Retest Reliability: Four-week test-retest reliabilities (N = 17) ranged from .72 to .86 for each factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [203] "Internal Consistency: Internal consistency was examined using Cronbach’s alphas for the entire sample (n = 377). The Cronbach’s alphas were found to be very good: Environmental Invalidations (alpha = .81); Foreigner/Not Belonging (alpha = .78); Sexualization (alpha = .83); Low-Achieving/Undesirable Culture (alpha = .87); Criminality (alpha = .85), and Invisibility (alpha = .89)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [204] "The ComFor was tested on a sample of 623 children and adults from the Netherlands and Flanders with a developmental level between 12 and 60 months on the domain of daily living skills. The sample consisted of three subgroups: (1) a group of children and adults with autism and an intellectual disability (N=310), children and adults with an intellectual disability without autism (N=174), and a control group of typically developing children (N=139). The internal consistency (Cronbach´s alpha) for the five series ranges from 0.83 to 0.93; for the two levels from 0.95 and 0.94. The inter-rater reliability is very high (the mean Cohen's κ is 0.95). The test-retest reliability (Spearman's r) is 0.98 for the total score. The individual’s top scores are less stable. Also see the test manual: Verpoorten, R., Noens, I., Berckelaer-Onnes, I. van (2008) ComFor; Forerunners in Communication. Manual. Leiden: PITS."                                                                                    
## [205] "Internal consistency: in persons with functional speech (N=658): Cronbach's alpha is .86; in persons without functional speech (N=572:) alpha is .81. Interrater reliability Pearson's r is .83-.89. Stability over a six-month period: r is .81-.86; stability over a fourteen-year period: r is .72. Sensitivity and specificity in persons with MR/ID (N=1230): 92.4 and 92.4 respectively; sensitivity and specificity in persons with borderline intelligence (N=293): 77.3 and 88.5 respectively. Also see the test manual: Kraijer, D.W. (1997, 2006). Pervasive Developmental Disorder in Mental Retardation Scale. Manual. Leiden: PITS."                                                                                                                                                                                                                                                                                                                                                                                   
## [206] "Internal Consistency: Item-total correlations ranged from 0.14 to 0.65 for the 29 items. The internal consistency (Kuder-Richardson Formula 20) of the SPQ-C for children was found to be satisfactory: 0.86 for boys (N = 264), 0.88 for girls (N = 325) and 0.89 for the combined sample of children (N = 589). Internal consistency was also high for the separate age groups (i.e. 8, 9, 10, 11 and 12 yr), ranging between 0.88 and 0.90. Test-Retest Reliability: Test-retest reliability (6-7 weeks) was r = 0.49 (P < 0.001) for boys (N = 263), r = 0.58 (P < 0.001) for girls (N = 323) and r = 0.61 (P < 0.001) for the total sample (N = 586). Test-retest reliability calculated for the separate age groups ranged between r = 0.50 and r = 0.70 (P < 0.001)."                                                                                                                                                                                                                                                         
## [207] "Internal Consistency: The scales had adequate to good internal consistency in the student sample, Cronbach’s alpha = .88, .79, and .92. In the current clinical sample, internal consistency of SA and SS was solid at all time points, alpha = .83 and .95 (pre); .95, and .96 (post) and .74 and .96 (follow-up). The internal consistency of RS was somewhat lower, alpha = .76, .77, and .78, although in the acceptable range for an experimental measure. Test-Retest Reliability: An examination of test–retest reliability in a smaller sample (n = 60) indicated that SA and SS had acceptable test–retest reliability, r = .76 and .80, respectively. RS was somewhat lower, r = .66, possibly because of the small number of items."                                                                                                                                                                                                                                                                                      
## [208] "In validation samples of OCD patients (n = 99) and mixed neurotics (n = 114), the internal consistency, stability, and reliability of the short form. The test-retest reliability (t = 3 months) in OCD-I ranged from .73 to .94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [209] "Cronbach’s alpha coefficient for the PABQ Total Scale was in the total group .90 (in the PTSD group .86), indicating a high degree of internal consistency. Internal consistency for the subscales was good. Cronbach’s alpha ‘Visual Reminders’ = .89 (PTSD group = .83); ‘Trauma-related Thoughts = .88 (PTSD group = .82); ‘Agoraphobia’ = .89 (PTSD group = .85); ‘Feeling unsafe at home’ = .84 (PTSD group = .85); ‘Sleep’ = .90 (PTSD group = .89); ‘Social Interaction’ = .87 (PTSD group = .83) and ‘Sensory Reminders’ = .77 (PTSD group = .76). Participants completed the PABQ again after 1–2 weeks. The correlation between the test–retest PABQ Total Scale was .87 in the total group (N = 189, p < .001) and .78 in the PTSD group (N = 26; p < .001), reflecting adequate (short-term) temporal stability. Also, all subscales had adequate test–retest correlations."                                                                                                                                             
## [210] "Internal Consistency: Cronbach's alpha was .81 for Form A and .78 for Form B (N = 30)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [211] "Thirteen randomly selected sessions (23%) of all the rated sessions (n = 57) were used to establish interrater reliability in the development study. The combined interrater agreement for two pairs of raters was k = .77, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [212] "Test-retest (5 months, N=32 =0.64). Coefficient Alpha =0.97 (N= 169)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [213] "The reliability for the PCS was r = .92. The PCS-R had a Cronbach’s alpha of .84 (N = 19 items; 9 subscales). The Cronbach’s alpha for the Foundational Competencies subscale of the PCS-R was .76 (N = 10 items), the Cronbach’s alpha for the Functional Competencies subscale was .82 (N = 6 items), and the Cronbach’s alpha for the Continuing Competencies subscale was .65 (N = 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [214] "Internal Consistency: The internal consistency reliability (α = .97) estimates of the five scored items assessed in an undergraduate sample (n = 275) have been shown to be high. In the combined adolescent inpatient sample, the total screening score had a high alpha estimate of .94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [215] "The internal consistency coefficients (Cronbach’s alpha) were calculated for each of the four SECS subscales. For AI (N = 131, 10 items) the alpha is 0.87; for A0 (N = 120, 10 items) 0.89; for CAI (N = 130, 10 items) 0.91; and for CA0 (N = 131, 10 items) 0.90. In order to assess the stability over time, the product-moment correlation coefficients were calculated between the scores of the first and second administration for the four different subscales over an average period of 246 days. For AI, the stability coefficient is 0.65; for AO. 0.76; for CAI 0.63; for CAO, 0.68 (N = 85)."                                                                                                                                                                                                                                                                                                                                                                                                                          
## [216] "Initial analyses were conducted to confirm the psychometric adequacy of the PVAQ. The mean total score was 47.5 (SD = 13.5, range 21 to 79) and the distribution of total scores did not show significant skew. Subjects (n = 15) who completed the instrument on two occasions attained similar scores (r = .80, p < .001; paired t(14) = 1.67, p = .118) supporting their temporal stability over a short interval. The items demonstrated good internal consistency reliability (Cronbach's alpha = .86)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [217] "Both internal consistency and test-retest analyses were used to estimate the reliability of the MBMD scales. Using the entire sample, the following internal consistency coefficients were obtained: Psychiatric Indications (rtt = .76 to .89); Coping Styles (rtt = .54 to .85); Stress Moderators (rtt = .85 to .89); Treatment Prognostics (rtt = .47 to .80); and Management Guide (rtt = .77 to .79). The median internal consistency coefficient for all scales is rtt = .79. Using a smaller sample (N = 41), test-retest reliability estimates were also obtained: Psychiatric Indications (rtt = .79 to .88); Coping Styles (rtt = .71 to .90); Stress Moderators (rtt = .78 to .92); Treatment Prognostics (rtt = .72 to .88); and Management Guide (rtt = .78 to .81). The median test-retest coefficient for all scales is rtt = .83."                                                                                                                                                                                  
## [218] "Cronbach’s alpha reliability analysis was used to determine the internal consistency of the various administrations across the participating classes. Analysis revealed high Cronbach’s alpha reliability coefficients for each administration; paper α = .84 (n = 160), online α = .82 (n = 494), and overall α = .82 (n = 654). An examination of each item’s contribution to the scale reliability shows consistency ranging from .807 to .833. No item appeared to show a lack of fit. Reliability results indicate that the ASI SOY instrument may be administered in either paper or electronic format. Cronbach’s alpha reliability indexes were used to determine internal consistency for each of the administration conditions. Results revealed internal consistency for the test (α = .83) and the retest (α = .84). A Pearson correlational analysis was conducted and revealed consistency (r = .995) between the two administrations. These findings add further evidence of the ASI SOY’s reliability."              
## [219] "Internal consistency reliability (alpha) was .83. Test-retest reliability was r=.53 (n=61, p<.001, 2-tailed)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [220] "The alpha coefficients for the scales are as follows: Diet Information = .77-.76; Exercise Information = 64-.77; Diet Attitudes = .80-.82; Diet Subjective Norms = 85-.91; Exercise Attitudes = 70-.81; Exercise Subjective Norms = .85-.88; Diet Behavioral Skills = .74-.77 and 85-.87; Exercise Behavioral Skills = .70-.77; Food Label Reading = .92-.94; Diet Self-Care = .62-.75; and Exercise Self-Care = 81-.62. The Exercise Self-Care measure showed high test-retest reliability at 3 months (r = .42, p = .006, n =43)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [221] "Internal consistency of the PHIVSMS was calculated using Cronbach’s alpha. At baseline, the Cronbach’s alpha of the PHIVSMS was 0.78 (n = 121), demonstrating that the measure is sufficiently reliable for research purposes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [222] "Analysis of the PII revealed adequate internal consistency, with a participant alpha of r = .82. This consistency estimate indicates that it is acceptable to use the summated index score as a single, global indicator of involvement. In addition, to assess the stability of the measure, a subsample of those participants (n = 60) who returned the PII from the first mailing were sent a second inventory to complete to determine the test-retest reliability. Results of this analysis revealed that test-retest reliability during a period of 2 to 4 weeks produced a Pearson correlation of .96 (p < .01)."                                                                                                                                                                                                                                                                                                                                                                                                             
## [223] "Cronbach alphas for the subscales were as follows: Seeking Social Support (alpha = .84), Self-reliance/Problem solving (alpha = .84), Distancing (alpha = .69), Internalizing (alpha = .66), and Externalizing (alpha = .68). Two-week test-retest reliabilities were obtained for approximately half of the sample (n = 215): For Coping With a Poor Grade, they were. 73 for Seeking Social Support, .60 for Problem Solving, .64 for Distancing, .63 for Internalizing, and .69 for Externalizing; for Coping With a Peer Argument, they were . 72 for Seeking Social Support, .64 for Problem Solving, .58 for Distancing, .59 for Internalizing, and .78 for Externalizing."                                                                                                                                                                                                                                                                                                                                                    
## [224] "Internal Consistency: Cronbach's alpha was 0.86 (N = 120)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [225] "Internal Consistency: For the subscales, Cronbach's alpha coefficients displayed alpha values ranging from 0.79 to 0.96. Test-retest Reliability: The short SMI was administered to a subsample of healthy controls (n = 50) who filled out the short SMI at baseline, and again 4 weeks later, with a maximum deviation of 3 days. The results showed test-retest reliability of the separate modes ranging from .65 to .92, p’s<.001, with a mean of .84. The results were indicative of adequate test-retest reliabilities for all schema modes of the short SMI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [226] "Cronbach’s alphas for the secure base, safe haven, proximity maintenance, separation distress, and global attachment scores were .89, .95, .91, .91, and .96, respectively, for pet dogs (all samples, N = 923); .91, .97, .93, .92, and .97, respectively, for mothers (sample 1, N = 108); .94, .97, .95, and .98, respectively, for fathers (sample 1, N = 102); .88, .95, .93, .94, and .97, respectively, for siblings (sample 1, N = 101); .91, .94, .90, .93, and .96, respectively, for best friends (sample 1, N = 102); and .92, .96, .96, .94, and .98, respectively, for significant others (sample 1, N = 70)."                                                                                                                                                                                                                                                                                                                                                                                                         
## [227] "Test-Retest Reliability: Scores on this measure were highly correlated with scores on the same measure at the end of the study, r(N = 171) = .70, p < .001. Correcting this correlation for attenuation due to unreliability (per Hunter&Schmidt, 1990) led to an estimated test-retest correlation of r = .82."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [228] "Internal Consistency/Test-Retest Reliability: The physical danger and loss of control scales are reported to have high test-retest reliability (r = 0.86) and high internal consistency (r = 0.91) (Telch et al., 1989). As these two scales were originally developed for use in an agoraphobic population it was necessary to demonstrate their psychometric properties in a social phobic group. In an independent sample of social phobics (n = 21), test-retest reliability was found to be satisfactory (physical illness danger--r = 0.76; loss of control danger--r = 0.75) and internal consistency was moderate to high (physical illness danger, alpha = 0.69; loss of control danger, alpha = 0.89)."                                                                                                                                                                                                                                                                                                                    
## [229] "Internal Consistency: Alphas ranged from .7 to .9 across subscales and studies. Test-Retest Reliability: A subgroup of study participants (N=64) participated in the study twice within a two-month period permitting an examination of the test–retest reliability of the SURPS. Pearson and intra-class correlation coefficients indicated that the relationship between time 1 and time 2 subscale scores were good (coefficients ranged from .68 to .88)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [230] "Internal Consistency: Cronbach's Alpha for the 12-item scale was estimated to be 0.73 (N=225)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [231] "Internal Consistency: The alpha coefficients in these samples were .78 for White Afrikaners at Pretoria University (n = 350), .72 for Africans at Durban University (n = 325), .73 for Indians at Durban University (n = 211), and .76 for White English at the University of the Witwatersrand (n = 165)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [232] "In order to assess how well the items in the Yes/No Test measured the construct ‘passive knowledge of vocabulary’, tests of internal consistency were conducted based on raw scores, that is, the number of hits or correct words the test-takers selected. The alpha value for the 120 words (n = 330) was .972, and the Spearman-Brown and Guttman Split-half coefficients were slightly higher: .981 and .979, respectively. The alpha value for the 80 pseudowords was somewhat lower (.878) but still suggests a very high reliability when taking into account raw scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [233] "The internal consistency of the measures was as follows: LANTS self-report scale (alpha = .84; n = 98); LANTS informant behavioural changes subscale (alpha = .82), frequency subscale (alpha = .80); and severity subscale (alpha = .84) (all n = 88). Test–retest reliability of the self-report LANTS was good with the first administration scores (Mdn = 40.5) not significantly different to that of the repeat administration (Mdn = 39.5; z = .42, p > .05, n = 48)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [234] "The alpha coefficients obtained for the scale were .70 for White Afrikaners at Pretoria University (n = 349), .44 for Africans at Durban University (n = 323), .60 for Indians at Durban University (n = 210), and .77 for White English at University of the Witwatersrand (n = 165). These coefficients were adequate for a scale of this length in three of the samples but rather low for the African sample. However, the mean interitem correlation in that sample (r = .11) did not suggest a level of unidimensionality too low for the scale to be useable in this sample. For example, with 24 items this scale would have had an internal consistency reliability of .72. Nevertheless, it did mean results for this scale in this sample would have to be interpreted very carefully."                                                                                                                                                                                                                                   
## [235] "Test–Retest Reliability: The Pearson Correlation Coefficients for test–retest reliability, investigated in a sample of N = 47 residents of a drug rehabilitation center and averaged over the investigated seven drug categories, were r=.95 for the abstinence-corrected total duration of regular use, r=.89 for the mean number of consumption days per month of regular use, r=.89 for the mean daily amount, r=.83 for the variability in consumption days per month of regular use, and r=.75 for month variability in daily amount."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [236] "Internal Consistency: Cronbach’s alpha across the 60 items which were examined was adequate at .86. Test-Retest Reliability: The test-retest reliability of the ER-IAT was also adequate: r = .68 (p < .001, N = 36) across an interval of 3 months."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [237] "Internal Consistency: The Cronbach’s alpha coefficient for the total scale and the 2 subscales ranged from .83 to .89. Test Stability: The test-retest reliability for the overall fear scale was .80 (n = 200), for Factor 1 (Fearful Thoughts Scale) it was .79 (n = 217), and for Factor 2 (Fearful Physical Feelings and Behaviors Scale), .73 (n = 224)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [238] "Internal Consistency: The Cronbach alpha coefficient was 0.82, indicating that the internal consistency of the PDI is more than adequate. Test-Retest Reliability. The correlations between the initial and subsequent PDI scores were calculated. Highly significant relationships were found for all scores (PDI yes/no: Spearman's r = 0.78, n = 83, p < 0.001; distress: Spearman's r = 0.81, n = 74, p < 0.001; preoccupation: Spearman's r = 0.81, n = 76, p < 0.001; conviction: Spearman's r = 0.78, n = 70, p < 0.001). These significant relationships confirm the test-retest reliability of the PDI."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [239] "Internal consistency: Reliability analyses for the seven \"costs\" (expectations of the costs associated with reduced alcohol consumption) produced a Cronbach’s Alpha of .823; interitem correlation showed a mean of .396, with a range of .217 to .666. For the five \"benefits\" (expectations of the benefits associated with reduced alcohol consumption), the Cronbach’s Alpha was .856; interitem correlations ranged from .443 to .672 with a mean of .542. Test-retest reliability: Pearson product moment correlations between the two occasions of administration for each of the following were: Importance (a) items only: r = .900, n = 22; (b) items only: r = .850, n = 23; (c) items only: r = .809, n = 23; and \"Total Score\"(a + b + c items): r = .902, n = 19. This indicated a satisfactory level of test-retest reliability."                                                                                                                                                                              
## [240] "Interrater reliability: Kendall’s coefficient of agreement was used to determine intersubject agreement (U). Subjects showed only moderate agreement in their choices (U= .44). The obtained values of U for both versions differ significantly from zero, Chi-Squared (45, N = 488) = 9,791.39, p < .01. The authors of the PAQ have shown that the reliability is satisfactory (alpha = .90)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [241] "Interrater Reliability: The correlation between interviewer scores and scores obtained by an observer from behind a one-way screen was .95 (N = 35). Test-Retest Reliability: A test-retest correlation of .87 (N = 13) was obtained when an examiner retested the same patients after a seven-week interval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [242] "Internal consistency: For the full scale (a = .96), as well as for the subscales (Body: a = .94; Eating: a = .94; Exercise: a = .93). Test-retest reliability: High for the total scale (r = .90), as well as for the subscales (Body Comparison Orientation: r = .85; Eating Comparison Orientation: r = .88; Exercise Comparison Orientation: r = .84) in the full sample of test–retest completers (N = 362)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [243] "Internal Consistency: Cronbach's coefficient alpha was 0.93. Test-Retest Reliability: The test-retest correlation coefficient (2-week interval) was significant (r = .72, p < .001, n = 40). A paired t test was nonsignificant, t(38) = - 1.57, indicating that the scores did not change significantly between the two assessment points."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [244] "Internal Consistency: Psychological/ Verbal, Control, and Physical/Sexual Abuse Scales showed high internal consistency, with coefficient alphas of 0.95, 0.87, and 0.89, respectively. Test-Retest Reliability: Test-retest reliablities conducted on university students (N=62) were moderate to high: Psychological/Verbal (r=0.86); Control (r=0.76); Physical/Sexual (r=0.74); and Negative Life Events (r=0.84)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [245] "Internal Consistency: These 12 items had good reliability (Cronbach’s a = 0.85, N = 1194)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [246] "Interrater Reliability: In an initial reliability test a sample of psychiatrists, medical doctors and clinical psychologist (N = 30) independently rated 15 patient vignettes that were based on anonymous real case records. Based on this vignette method, a preliminary interrater reliability test yielded an ICC of 0.87 for the whole instrument (one-way random model, single measurements)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [247] "The median test–retest reliability (N = 94) for SWAP–II factor scores was .85 after an interval of 4 to 6 months. (Westen et al., 2007)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [248] "Internal Consistency: The internal consistency coefficient of the scale in a sample of college women was .90. Test-Retest Reliability: The correlation between the responses to the scale at Time 1 and Time 2, administered in Study 2 (N = 23), was r = .82, p < .001. Thus, Fat Talk Scale scores demonstrated adequate test–retest reliability over a five-week time period."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [249] "Internal Consistency: For Group 1, the internal consistency for the PDEQ-10SRV total score was measured by Cronbach’s alpha coefficient using the total sample (n = 48): a was 0.79. For Group 2, the internal consistency for the PDEQ-10SRV total score was 0.78. Test-Retest Reliability: The test–retest reliability of the PDEQ-10SRV was obtained in the Montréal sample using a 20–25 days time interval. The PDEQ-10SRV total score demonstrated satisfactory reliability with a correlation coefficient of .72."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [250] "Internal consistency: The value of Cronbach’s a for the total item pool (N = 1072) was .916, and for the four domains were .801, .861, .785, and .765, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [251] "Internal Consistency: The final 19-item scale was cross-validated on two independent samples of employees in a telecommunications company (N = 95) and a business services organization (N = 133). The alpha coefficient for the overall scale was .84 and .89, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [252] "Internal Consistency: For the revised scale (Eckblad et al., 1982), Cronbach's alpha coefficients displayed alpha values of 0.79 both for males (n = 775) and for females (n = 840). The correlation with the Crowne-Marlowe Social Desirability Scale (Crowne & Marlowe, 1964) was −.04 for males (n = 320) and −.22 for females (n = 507). Interrater Reliability: The first author conducted and scored all of the SAS interviews, while a second judge scored 40 SAS interviews (from both Study 1 and Study 3) to compute interrater reliabilities. The Pearson product-moment correlation between the ratings of the two judges on the four global ratings were .92 for overall social adjustment, .88 for leisure adjustment, .85 for familial adjustment, and .85 for academic adjustment. Interrater reliabilities for the constituent items ranged from .77 to .99, with a mean value of .88."                                                                                                                             
## [253] "Internal Consistency: This 17-item measure demonstrated adequate internal reliability (OB alpha = .69; OV alpha = .74; CB alpha = .66; CV alpha = .83). Test-Retest Reliability: A third pilot study of college students (n = 86, aged 18-20, 48% male) found acceptable 4-week test-retest reliability (r = .84)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [254] "Interrater Reliability: Ten percent of the videotapes (n = 8) were selected at random and independently coded by a second rater. These eight students solved 12 compare word problems each resulting in a total of 96 problems. Interrater agreement was calculated as the proportion of agreements between the two raters for the 96 problems. These analyses resulted in interrater agreement of 91% for pattern of behavior, 95% for type of error, and 89% for quality of problem recall. Pearson correlation for numbers of re-readings recorded by each rater was .97."                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [255] "Internal Consistency: Good internal consistency of the AFNS (Cronbach’s alpha 0.74, n = 180) was obtained."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [256] "Using multiple informants, reliability and validity were established based on a community sample of 227 fourth- and fifth-grade children’s self-report, maternal report (N= 171), and peer ratings of behavior (N = 227). Strong internal consistency was found for the Inhibition scale and moderately strong internal consistency for the Emotion Regulation Coping and Dysregulated-Expression scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [257] "Internal Consistency: The Cronbach’s alpha for each factor for Sample 1 was acceptable at .89 (Rules), .85 (Child’s attraction), .75 (Self-efficacy), .87 (Flexibility), and .88 (Allow Access). For Sample 2 the Cronbach’s alphas were .85, .81, .76, .85, and .84 respectively. Test-Retest Reliability: The intraclass correlations for the Sample 1 test–retest subsample (n = 46) were significant for all factors, indicating excellent agreement between the scores obtained on the two testing occasions (separated by 2 weeks); .83 (Rules); .80 (Self-efficacy); .79 (Flexibility); and .90 (Allow Access). For Child’s Attraction the intraclass correlation was marginally acceptable at .67."                                                                                                                                                                                                                                                                                                                          
## [258] "Interrater reliability: In a study of undergraduate students, good interrater reliability was found using the Kappa formula (k = 0.66). Internal consistency: In the weight control program attendee sample, internal reliability was investigated and shown to be high for this measure (n = 52; rKK = 0.943)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [259] "Internal Consistency: At T1 (Cronbach a = 0.74) and T2 (Cronbach a = 0.78). Test-Retest Reliability: Individual test-retest scores were significantly (P < .001) correlated (n = 344; 72.9% Hispanic; r = 0.80) and classroom test-retest scores were significantly correlated r = 0.66. Surveys were administered less than 2 weeks apart."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [260] "Internal Consistency: The Cronbach's alpha for the overall ABII is excellent (alpha = 0.97). The Cronbach's alpha for the social attention, sensory, and behavioural subscales are excellent, with scores of 0.96, 0.93, and 0.97, respectively. Inter-Rater Reliability: The correlation between raters was excellent (k=0.97, p<.001). Test-Retest Reliability: Total ABII Scale scores were found to be very consistent, r=0.98, N=47, p<.001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [261] "Internal Consistency: The assertion questionnaire's reliability (r = .86) was obtained using the test-retest method after a 7-day interval (N = 28). Test-Retest Reliability: An intraclass reliability coefficient (r = .83) was obtained using judges' rating of role-plays (N = 32). Self-ratings, repeated after 1 day interval yielded a coefficient of .93 (N = 25)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [262] "Internal Consistency: The internal consistency coefficients of the scale were .81 and .83 for years 2000 and 2002, respectively. Test-Retest Reliability: The 1-year (1999 and 2000) test–retest coefficients of stability of the instrument were also evaluated using a group of students (N = 61) who had twice completed the questionnaire (Cohen & Swerdlik, 2002, chap. 5). DMEQ means of the two test periods were equivalent, and significant coefficients between test–retest scores were found: total score = .60, Open Positive Environment = .63, and Freely Undertaken = .59 (ps < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                              
## [263] "Internal Consistency: Cronbach's alpha for the three mother's subscales ranged from 0.76 to 0.88. For the father's subscales, alphas ranged from 0.80 to 0.89. Test-Retest Reliability: Test-retest reliability over a 6-week interval (n=109) ranged from 0.54 to 0.66."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [264] "Internal Consistency: The Cronbach's alpha for the 21 items of the Patient-Health Care Provider Communication Scale was 0.89. Cronbach’s alpha for the 17 items composing the first factor, Quality Communication, was 0.94 and the Cronbach’s alpha for the five items of the Negative Patient–Health Care Provider Communication factor was 0.73. Test-Retest Reliability: The intraclass correlation coefficient (ICC) for test–retest reliability of the 21-item PHCPCS was 0.45 (p<0.0001, n=99) over a 2-week period. The ICCs for the Quality Communication and Negative Patient–Health Care Provider Communication subscales were 0.49 (p<0.0001, n=99) and 0.14 (p=0.08, n=99), respectively."                                                                                                                                                                                                                                                                                                                              
## [265] "Internal Consistency: A professionalism index built with these variables was highly reliable: Cronbach’s Alpha = .82. Inter-Rater Reliability: These three sections were subjected to a content analysis with a high level of reliability between two coders in a pretest (Krippendorff’s Alpha = .89; N = 60) and in a posttest (Krippendorff’s Alpha = .96; N = 70)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [266] "In 15 adult samples, the NTBS possessed acceptable interitem reliability, with Cronbach’s alpha coefficients ranging from .78-.87 (median alpha = .81). Furthermore, the highest item–total correlation was typically obtained for the item “I have a strong need to belong,” the most face-valid marker of the construct. An analysis of test–retest reliability (n = 104) revealed a 10-week reliability of .87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [267] "Internal Consistency: Cronbach's alpha analyses revealed that the four problem-solving items form a reasonably homogeneous scale (alpha = .83), referred to as Problem-Solving Self-Efficacy. The 10 items covering efficacy for maintenance of pleasant events and social interactions also were adequately homogeneous (alpha = .76) to form a single scale, referred to as Self-Care Self-Efficacy. Test-Retest Reliability: Data from a subset of the wait-list control group (N = 39) were used to calculate correlations between pretest and the end of the wait-list period, about 11 weeks later. Over this long test-retest interval, the items held up well (Self-Care Self-Efficacy, r = .675, p < .0001; Problem- Solving Self-Efficacy, r = .683, p < .001)."                                                                                                                                                                                                                                                           
## [268] "Internal Consistency: Cronbach’s alphas (N= 910) for the subscale total scores were .69 for F-Under, .84 for F-Over, and .90 for Skep. Test–retest reliability based on a sample of 42 drawn from training workshops ranged from .75 for F-Under, .85 for F-Over, and .81 for Skep over a mean period of 4 weeks. Test–retest reliability using a convenience sample of 30 colleagues ranged from .78 for F-Under, .83 for F-Over, and .79 for Skep over a mean period of 6 weeks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [269] "Internal Consistency: Internal consistency statistics (Cronbach's alpha) of the organization- and group-level safety climate sub-scales were, respectively, .90 and .92 for the pilot company (n = 1560) and .91 and .93 for the second company (n = 861). The values indicate good scale reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [270] "Internal Consistency: Alpha reliability of the three items is good (.93). Test-Retest Reliability: Test-re-test after four weeks (N = 30) reliability is .73."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [271] "Test-Retest Reliability: The scale demonstrated some evidence for test–retest reliability (N = 79 for retest after 1 month; PRD, r = .91, 95% CI [0.86, 0.94]; perceived family social capital, r = .81, 95% CI [0.72, 0.87]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [272] "Inter-rater reliability: Inter-rater agreement rates for the Cohen-Mansfield Agitation Inventory (CMAI) were calculated for each behavior on the CMAI (using either a 0- or 1-point discrepancy) for 3 sets of raters (in 3 units). These averaged .92 (n = 16), .92; and .88."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [273] "Test-Retest Reliability: Preliminary evidence of test-retest reliability was demonstrated for all three measures in the CFFS based on the intra-class correlation coefficient (n = 33; CASP = 0.94; CAFI = 0.67; CASE = 0.75; p < 0.001). Internal Consistency: High internal consistency was demonstrated for the items on the CASP based on data from participants who responded to all 20 items as applicable (n = 21; Cronbach’s alpha = 0.98) and based on data from all participants with non-applicable item scores replaced with their respective mean scores (n = 60; Cronbach’s alpha = 0.95)."                                                                                                                                                                                                                                                                                                                                                                                                                            
## [274] "The RAID-SI yielded good internal consistency reliability (Cronbach’s α= 0.75, n=32) and inter-rater reliability (average weighted κ=0.71, n=11)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [275] "Internal Consistency: Cronbach alpha coefficients for the subscales were 0.54 for Autonomy, 0.58 for Control and 0.62 for Impersonal orientation in a sample of women comprised of an intervention group (N = 60) and a control group (N = 55)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [276] "Interrater Reliability: The interrater reliability for the KIVS subscales were as follows: expressed violent behavior in childhood r = 0.91, P<.0001 (N= 15); exposure to violence as child r= 0.93, P<. 0001 (N= 15); expressed violent behavior in adulthood r = 0.92, P<.0001 (N= 15); and exposure to violence as adult r=0.95, P<.0001 (N=15)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [277] "Internal Consistency: Across all scales and samples, alphas ranged from .73 (SNAP Introversion in the college validation sample) to .88 (SNAP Neuroticism in the full derivation sample). Test-Retest Reliability: Retest correlations (n = 270; M retest interval = 49.3 days, range = 7–131 days) ranged from .82 (SNAP Antagonism) to .90 (SNAP Conscientiousness), with a median of .85."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [278] "Inter-rater reliability and test-retest reliability: Inter-rater reliability was assessed in a group of 32 random subjects using kappa coefficients for categorical variables and correlation coefficients for continuous variables. Ratings were based on a single interview with one clinician administering the SCI-PG and another observing. Test–retest reliability was assessed in 36 random subjects using kappa coefficients for categorical variables and correlation coefficients for continuous variables with a second rater administering the SCI-PG at the second visit before pharmacotherapy initiation, in a period of less than one week. Inter-rater reliability (kappa = 1.00; n= 32; P≤0.001) and test-retest reliability (kappa = 1.00; n = 36; P≤0.001) were determined for the diagnosis of PG versus non-PG using the SCI-PG. Test–retest reliability was also examined on the total number of PG criteria endorsed (r = 0.97; n = 36; P= 0.006)."                                                          
## [279] "Interrater Reliability: Approximately 25% (n = 45) of the videos were rated by both coders for reliability, and intraclass correlation coefficients were satisfactory for emotional responsiveness (0.77), intrusiveness (0.81), negativity (0.88), and child’s negative mood (0.86)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [280] "Internal and Test-Retest Reliability: The scale has high reliability (Cronbach’s alpha=.949), as well as good test-retest stability, which was checked in a subsample (n=74; r=.734; p<.01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [281] "Internal Consistency: Results of the Cronbach-alpha reliability coefficients of the perceived husband’s violent attributes scale were 0.92 and 0.89 in the pilot study and for the main study (n = 316), respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [282] "Internal Consistency: The reliability for social networking sites (n = 74) was alpha = .93, for YouTube alpha = .84, and for weblogs (n = 23) alpha = .83."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [283] "Construct Validity: Chi-square test with equivalent expected values revealed significant differences for transformational leadership, X2(2, N = 35) = 35.37, p < .01; pseudo-transformational leadership, X2(3, N = 34) = 30.24, p < .01; and laissez-faire leadership, X2(4, N = 35) = 30.00, p < .01."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [284] "Internal Consistency: The internal consistency estimate of Cronbach's alpha showed alpha = .83 (N = 306). Test-Retest Reliability: Test-retest reliability was assessed in an independent sample of female graduate counseling psychology students (n = 43) with a 4-week interval between testing and revealed r = .81."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [285] "Test-retest reliability: The TAQ was administered to the same informants on two occasions, 2 weeks apart to assess test–retest reliability (ranging from .87 to .84). Test–retest reliability ranged from 0.60 to 0.90 (mean 0.75). Inter-rater reliability: For the purpose of assessing inter-rater reliability each questionnaire was completed independently by two parents/carers of the participants, within a 7-day window (n = 125). Item level inter-rater reliability ranged from 0.31 to 0.75 (mean 0.56). Inter-rater reliability ranged from .70 to .78 across samples. Internal consistency: Internal consistency was evaluated at full-scale (alphas ranging from .833 to .947) and sub-scale level for the mobile, verbal; mobile, nonverbal; and immobile (verbal or non-verbal) participants separately (Overactivity subscale alphas ranging from .793 to .936; Impulsivity subscale alphas ranging from .766 to .920; and Impulsive Speech subscale alphas ranging from .732 to .803)."                          
## [286] "Internal Consistency: Using expert ratings, high internal consistency between items resulted for the Treatment-Specific Skills (TSS) subscale (alpha = .886, N = 97), and General Skills (GS) subscale (alpha = .896, N = 187). Interrater Reliability: Two blinded ratings on the same individual treatment sessions were obtained for some individual Activity Programme sessions, showing moderate agreement between experts: ICC(2,3) = .603, N = 44 for TSS and ICC(2,3) = .637, N = 44 on GS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [287] "Internal Consistency: General DS_R Hebrew reliability score was found to be acceptable (Cronbach’s alpha = 0.79) in a large heterogeneous Israeli sample (N = 1427)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [288] "Internal Consistency: The internal consistency of responses on all items in the RBQ-2 was high (Cronbach's alpha = .85). The internal consistencies for the four repetitive behaviour subscales were also acceptable (Repetitive Movements–alpha = .80, n = 648; Rigidity–alpha = .75, n = 671; Preoccupations–alpha = .72, n = 618; Sensory Interest–alpha = .66, n = 661)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [289] "Internal Consistency: A pilot test (N = 292) indicated adequate internal consistency (alpha = .76)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [290] "Reliability of the MJS was assessed via internal consistency (Cronbach, 1951) for the Care and Justice scales, with the exclusion of the three equivocal items (Gump, 1994). Cronbach’s alpha for the Care scale was .75 and .64 for the Justice scale, indicating adequate reliability. Split-half reliability: Care scale, the correlation between halves was r = .72, p < .01; using Kuder-Richardson formula 20, the result was r = .91, indicating adequate reliability. For the Justice scale, the correlation between halves was r = .60; the Kuder-Richardson result was r = .75, suggesting acceptable reliability. Test-retest reliability at approximately 14 days was acceptable for the full scales: r = .61, p < .05 for care; r = .69, p < .05 for justice (N = 16) (Gump, 1994)."                                                                                                                                                                                                                                    
## [291] "An initial examination of the MRNI-A conducted in Scotland (n = 271) revealed that the MRNI-A demonstrated good reliability (Cronbach alpha = 0.89). A second, ongoing study of the reliability and validity of the MRNI-A has yielded higher estimates of internal consistency (Cronbach’s alpha = .910 for girls and .930 for boys)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [292] "Internal Consistency: The Internal Shame and Self-Esteem subscales present high internal consistency, with high Cronbach' alphas (.95 and .85, respectively) and moderate to high item-total correlations. Test-Retest Reliability: In regard to temporal reliability, ISS_S retest presented a Cronbach alpha of .97. Pearson correlation between test and retest (N = 35) was .95 (p < .001) (N = 35) in a period of 4 to 6 weeks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [293] "Internal Consistency: Internal consistency for each of the factor-derived scales was excellent/good (Factor 1: alpha = .91; Factor 2: alpha = .84). Internal consistency for the YAPFAQ full scale was excellent at alpha = .92. Test-Retest Reliability: Test-retest reliability was assessed using a subset of participants (n = 20) who repeated the YAPFAQ 2 hours after initial administration. Strong test-retest reliability was found using a Pearson’s correlation coefficient (r = .82, P < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [294] "The internal reliability of the preliminary 52-item scale was 0.93 (Cronbach's alpha coefficient). A sub-sample of 26 schizophrenia patients (including most patients with moderate to severe positive FTD) was studied 12 months later. These patients exhibited stable levels of positive FTD over time (Pearson Correlation=0.973; P=0.000; two-tailed; N=26) as well as stable scores on the FTD-patient scale (Pearson Correlation=0.720; P=0.000; two-tailed; N=26), which suggests test–retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [295] "Internal Consistency/Test-Retest Reliability (6-week gap): For the overall scale, coefficient alpha was 0.90 and the test–retest reliability coefficient was r = 0.92 (N = 16, P < 0.05). The five subscales of the ISMI showed the following levels of internal consistency and test–retest reliability: Alienation, 0.79, 0.68; Stereotype Endorsement, 0.72, 0.94; Discrimination Experience, 0.75, 0.89; Social Withdrawal, 0.80, 0.89; Stigma Resistance, 0.58, 0.80."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [296] "Test–retest Reliability: Participants (N=48, 62% female) completed the scale on 2 occasions within a 2-week interval. The second session also included the Social Desirability Scale (Crowne & Marlowe, 1960). Test–retest correlations were shown to be high, with an overall score of 0.89. The domains displayed correlations of 0.78 (spending), 0.90 (eating). Also, social desirability was not correlated with the overall RTF score (r = 0.02, p > 0.89), or either domain score (r_eating = 0.02, p > 0.88; r_spending = 0.00, p > 0.94)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [297] "Internal consistency: The coefficient alpha of the three item-scores was .79. Test-retest reliability: The teacher support questionnaire was administered again in the Hong Kong subsample (n=100) 6 months later. The test–retest reliability was .54 (p<.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [298] "Internal Consistency: The OPIS revealed high internal consistency in the different samples. Cronbach’s alpha in the OCD group was 0.82, 0.91 in the MD group, .88 in the control group, and .88 in the overall sample. Test-Retest Reliability: In the control group, the test-retest reliability with an interval of 2 weeks between measurements was 0.74 (p < 0.001; n = 47)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [299] "Test-retest reliability: The results of the test–retest reliability indicated that there was good consistency between instruments. The correlation of scores for the two administrations of the instrument for the monolingual English group was r = .89 (n = 15, p < .001), and for the monolingual Portuguese group, the score was r = .98 (n = 15, p < .001). The couples whose primary language was Portuguese had a correlation coefficient of r = .76 (n = 20, p < .001), and those whose primary language was English scored r = .80 (n = 18, p < .001). Each of the test–retest outcomes showed adequate consistency between test administrations. Internal consistency: In individuals in the Brazil community family development study, the alpha score for the complete RDAS-P was alpha = .822. The alpha score for women in the field testing was .847, and for men, the alpha score was .802."                                                                                                                         
## [300] "Internal consistency: The measure had a Cronbach's alpha of .753 for the first half of the data set of older adults (n=300) and alpha for the second half of the data set (n=300) was .794, and alpha for the total data set (N = 600) was .778. Reliabilities of each of the 3 components yielded the following: Component 1 with seven items had an alpha of .697, Component 2 with six items had an alpha .527, and Component 3 with eight items had an alpha of .615. In a validation assessment sample of community-dwelling older adults, the MSU CAM Health Literacy Scale responses had a Cronbach's alpha of .731, and the Newest Vital Sign, an alpha of .623."                                                                                                                                                                                                                                                                                                                                                            
## [301] "Internal consistency: The internal consistency was evaluated with Cronbach’s alpha in each of the primary scales and composite scales. The values were high, especially in the scales directly related with eating behaviors (alphaDT = 0.92; alphaB = 0.90; alphaBD = 0.92). The internal consistency indices in the psychological scales were somewhat lower, ranging from 0.75 in the Perfectionism scale to 0.93 in the Interpersonal Insecurity Scale. Test-retest reliability: Test-retest reliability was estimated in a small sample (N = 33) of patients not equally composed of all four diagnostic categories. The stability of scores over 15 days for this sample was very high with coefficients ranging from 0.85 (Emotional Dysregulation) to 0.99 (Eating Disorder Risk Composite)."                                                                                                                                                                                                                                
## [302] "Internal Consistency: Internal consistency of the 20-item FFCSE Scale was assessed at 2 time points. At time 1 (N = 277) alpha was .90, and at time 2 (N = 304) alpha was .92. The Spearman-Brown split-half reliability coefficient was .84 at time 1 and .88 at time 2. These results suggest that the measure has good internal consistency. Test-Retest Reliability: The authors also examined test-retest reliability of time 1 and time 2 responses on the FFCSE Scale with the sample of 184 participants who completed the measure at both time points. The obtained test retest coefficient was .48, which is consistent with the perspective that CSE is a state-dependent variable, not a stable personality trait (Bandura, 1997)."                                                                                                                                                                                                                                                                                      
## [303] "Internal and Test-Retest Reliability: A pilot study (N = 42) indicated that this scale possesses internal consistency (α = .82) and 1-week test-retest reliability (r = .87)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [304] "Test-Retest Reliability: Adult participants (n = 146) in the Polish arm of the ongoing Prospective Urban and Rural Epidemiological (PURE) study completed FFQs on two occasions. Reproducibility was assessed by the intra-class correlation coefficient (ICC). When assessing repeatability, ICC varied from 0.39–0.63 in an urban setting and 0.19–0.45 in a rural setting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [305] "Internal Consistency: Cronbach's alpha among items 5-8 of the RIBS was 0.82 and removal of any item did not increase the α value to greater than 0.85, indicating good internal consistency. The item-total correlations were ≥0.74 for all the items. Test-Retest Reliability: Test-retest reliability separated by one week was 0.68, P < 0.001, n = 79). This indicates that the scale was stable over this time period."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [306] "Internal Consistency: Data from a sample of Hong Kong college students (N = 256) revealed internal consistencies of the eight subtests (Fear of one's own dying, Fear of one's own dying, Fear of another person's dying, Fear of another person's death, Fear of corpses, Acceptance of one's own dying and death, Acceptance of another person's death, and Rejection of one's own death) between .68 and .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [307] "Internal and Test-Retest Reliability: Psychometric analysis found that the CMCAS had good internal reliability (alpha = 0.82, n = 178) and good 2-week test-retest reliability (r = 0.93, n = 12)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [308] "Internal Consistency: Cronbach's alpha for the 29-item version of the Early Stage Chronic Kidney Disease Self-Management Instrument (CKD-SM) total scale was 0.95. The subscale coefficient alphas ranged from 0.77–0.93. Test-retest Reliability: The stability of the CKD-SM was assessed using Pearson correlation coefficient for measuring 2-week test–retest reliability. The test–retest correlations for the CKD-SM was 0.72 (p < 0.001, n = 26)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [309] "Internal Consistency: Coefficient alphas across four studies ranged from .94 to .96. Test-Retest Reliability: The CETSCALE was administered on two occasions separated by a 5-week period. The correlation between these two administrations was r = .77 (n = 138; p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [310] "Internal Consistency: The alpha coefficients for the ABID frequency and reaction ratings (n = 149) were 0.89 (95% CI = 0.87–0.92) and 0.92 (95% CI = 0.90–0.94), respectively. These scores showed an excellent internal consistency for the total scores. Test-Retest Reliability: The test–retest reliability (n = 70) of the ABID frequency and reaction ratings after 1 month showed an excellent external reliability, with a correlation coefficient (ICC) of 0.85 (95% CI = 0.75–0.96) and 0.89 (95% CI = 0.82–0.93), respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [311] "Internal Consistency: The overall alpha was .85. The alpha for the 10 domains across the Self-Theory Scale was 0.73.The alphas for each of the ten domains were as follows: Physical Appearance = 0.70; Physical Health = 0.78; Intelligence = 0.66; Academic Performance = 0.73; Occupational Performance = 0.59; Leisure Activity = 0.78; Personality = 0.60; Family = 0.79; Intimate Relationships = 0.79; and Friendships = 0.79. Test-Retest Reliability (6-week latency): Overall reliability was .70 (N = 83, p < .001). Test-retest reliabilities for the domains were: Physical Appearance r(81) = 0.70 (p = .004); Physical Health r(81) = 0.83 (p < .001); Intelligence r(81) = 0.76 (p < .001); Academic Performance r(81) = 0.40 (p < .001); Occupational Performance r(72) = 0.36 (p = .002); Leisure Activities r(81) = 0.67 (p < .001); Personality r(81) = 0.67 (p < .001); Family r(81) = 0.71 (p < .001); Intimate Relationships r(68) = 0.72 (p < .001); and Friendships r(81) = 0.68 (p < .001)."               
## [312] "Internal Consistency: Cronbach's alpha of the 8 consequences items was 0.67 for the merged sample, slightly less than the recommended cut-off of 0.70. Test-Retest Reliability: Test-retest reliability was assessed by calculating coefficients of stability for the participants who completed the HDGM at 3 and 6 (n = 128) and 6 and 9 (n = 131) month assessments. Results indicated positive and moderate correlations among drinking game (DG) frequency, DG typical drinks, time spent playing games, and DG consequences. Supplemental analyses revealed comparable direction and strength of the correlations for peak blood alcohol level (BAC), typical BAC, frequency of drinking, drinks per week, and the summary scores on the Brief-Young Adult Alcohol Consequences Questionnaire (B-YAACQ; Kahler, Strong, & Read, 2005) (Borsari et al., 2014)."                                                                                                                                                                 
## [313] "Internal Consistency: A person (family) reliability index of .87 suggested excellent internal consistency. test–Retest Reliability: Considering all Time 1 versus Time 2 (n = 39) pairs, the intraclass correlation is .72, indicating moderate to good test–retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [314] "Interrater Reliability: Interrater reliability for the TPOCS–A child and parent forms was calculated using intraclass correlations (ICCs) (Shrout & Fleiss, 1979) on the basis of taped therapy sessions. It was found that Interrater reliability was acceptable (i.e., at least .40; see Cicchetti & Sparrow, 1981) for the child and parent items. Scale Interdependence: The correlation between the child and parent forms was -.03 (n = 19, ns), suggesting that child and parent alliance were independent. Internal Consistency: Internal consistency of the child form was acceptable for the full sample (alpha = .95), early alliance (i.e., average of first two sessions; alpha = .93), and late alliance (i.e., average of last two sessions; alpha = .91). With regard to the parent form, internal consistency was acceptable for the full sample (alpha = .89), early alliance (alpha = .87), and late alliance (alpha = .79)."                                                                                     
## [315] "Reliability of the ONID was evaluated by a sample of the healthy elderly (n = 19), formally assessed by the same initial health protocol, were re-evaluated 1 year later and documented to be nondemented. Test-retest correlations demonstrated ONID self-reports of both present and past behaviors to be unchanged in a 1-year interval (“Present” r = .57, P < .01; “Past” r = .63, P < .003)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [316] "Reliability was evaluated in two ways. First, the internal reliability of the instrument was computed using Cronbach's alpha. The computed alpha coefficient was 0.85 on the pre-class items and 0.83 on the post-class items. Second, two sets of similar questions were compared. The correlation of Item 3 to Item 11 and the correlation of Item 8 to Item 13 were computed. These item pairs were chosen because the contents of the item pairs are somewhat similar, though not exactly the same. Item 3 inquires about a sense of positive connection to the child and Item 11 asks whether the parent enjoys and interacts positively with the child. Item 8 inquires about slapping or hitting a child and Item 13 inquires about spanking. The correlation of Item 3 to 11 was r = 0.65 on the pre-class responses and r = 0.61 on the post-class responses (ps < .0001, n = 1,274). The correlation of Item 8 to 13 was r = 0.47 for pre-class responses and r = 0.50 for post-class responses (ps<.0001, n= 1,273)."     
## [317] "In the non-clinical group (n = 569), Cronbach’s alpha for overall scale and three subscales are listed as follows: overall OBQ-44, alpha = 0.954; RT, alpha = 0.902; PC, alpha = 0.889; ICT, alpha = 0.840. For the clinical group (n = 66), Cronbach’s alpha for overall scale and three subscales are listed as follows: overall OBQ-44, alpha = 0.962; RT, alpha = 0.930; PC, alpha = 0.917; ICT, alpha = 0.869. All revealed a very good consistency. For the non-clinical sample (n = 371), the coefficients of test-retest correlation are 0.709 for RT, 0.729 for PC, 0.635 for ICT, and 0.786 for the whole scale. Moreover, for the clinical sample (n = 23), the coefficients of test-retest correlation are 0.752 for RT, 0.745 for PC, 0.653 for ICT, and 0.723 for the scale. All test-retest correlations were significant, which indicates OBQ-44 has ad- equate levels of stability for a measurement."                                                                                                              
## [318] "Rater Agreement: To determine the level of agreement across raters for negligence and accident, the authors treated raters as items and calculated agreement (Cronbach's alpha) across the 24 scenarios for accident ratings alone (alpha = .99), negligence ratings alone (alpha = .99), and for accident and negligence combined (alpha = .99). However, because alpha increases as a function of the number of items included (in this case, 204 raters), the authors also computed alpha separately for four randomly drawn samples of size n = 8 for accident and negligence ratings, as well as for both ratings together. For accident ratings alone, across the four samples, the average alpha = .90 (SD = 0.03), and the average corrected rater–total correlation was equal to .74 (SD = 0.11). For negligence ratings, average alpha = .93 (SD = 0.01; average rater–total r = .78, SD = 0.10). Across all ratings, the average alpha = .90 (SD = 0.01; average rater–total r = .71, SD = 0.10)."                        
## [319] "Cronbach’s coefficient alpha was 0.90 for both the pilot (n = 88) and construct validity (n = 170) samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [320] "Internal Reliability: The Cronbach's alpha of score was 0.847. Test–Retest Reliability: A Pearson correlation was run between the initial test scores and the retest scores taken a week later. The analysis showed a strong significant correlation between the initial scores and the retest scores (r = 0.752, N = 232, p < 0.01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [321] "Test-Retest Reliability: Although data bearing on the validity of self-reports on the GAQ scale items were not presented by the authors, test-retest reliability coefficients obtained with a sample of introductory psychology students (n = 44) were as follows: .67 (perceived level of information), .42 (perceived danger), .48 (perceived general value), .68 (perceived personal value), .25 (perceived appropriateness), and .74 (participation interest)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [322] "Internal Consistency: The Cronbach's alpha coefficient for the CETPI in the total sample (N = 150) was 0.93. All of the three factors yielded good internal consistency estimates ranging from 0.88 to 0.90."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [323] "In an independent sample of 192 mechanics who were rated by two supervisors. Alphas were .96 for that sample and .94 for the main sample (N = 975)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [324] "Internal Consistency: Internal consistency of the 26-item FASRAT was high, without indicating excessive redundancy (alpha coefficient = 0.88, n = 70 based on listwise deletion), with all items having corrected item-total correlations greater than 0.25."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [325] "Internal consistency: PSI was 0.86. Cronbach’s alpha was 0.85 for the subjects that had no missing data for tasks (n = 61). Interrater reliability: the authors note that multiple raters would have increased confidence in results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [326] "Internal Consistency: The reliability for the PPGR was Cronbach alpha = .63 (n = 106)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [327] "Internal Consistency: Alpha reliability in the main study sample was 0.78. Test-Retest Reliability: In the Ontario Child Health Study (OCHS) pilot study conducted on a small adult sample (n = 66), test–retest reliability was ICC = 0.62."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [328] "Internal Consistency: Internal consistency for OMCI was high with an alpha of 0.886 for total score, 0.829 for mother score and 0.780 for child score. Interrater Reliability: Inter-observer reliability between experts on 154 filmed interactions suggested a significant high correlation on total score: (r = 0.851, P < 0.001, n = 154), mother score (r = 0.790, P < 0.001, n = 154) and child score (r = 0.842, P < 0.001, n = 154)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [329] "Internal Consistency: In four samples (Study 1 [N= 73], Study 2 [N=302], Study 3 [N=184], Study 4 [N=300]), the Cronbach's alpha coefficients were .89 and .88, .90 and .89, .94 and .90, and .92 and .89, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [330] "Cronbach's alpha for the Forgiveness Likelihood Scale was .85. Test-retest reliability (N = 287), computed with an average of 15.2 days between administrations (range = 9 to 30, SD = 4.28) was .81."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [331] "Internal consistency of the instrument was high for the total sample (ɑ = .926) and the high-functioning group (ɑ = .940). The internal consistency for each subscale is listed by total sample, followed by high-functioning group sample, respectively: Social reciprocity (ɑ = .921, .900), Social participation/avoidance (ɑ = .891, .893), and Detrimental social behaviors (ɑ = .848, .845). Test-retest reliability was .904 for the total sample ( n = 254), .902 for the high-functioning group (n = 176), and .878. The test-retest reliability for each subscale is listed by total sample, followed by high-functioning group sample, respectively: Social reciprocity (ɑ = .89, .86), Social participation/avoidance (ɑ = .86, .82), and Detrimental social behaviors (ɑ = .84, .83)."                                                                                                                                                                                                                                  
## [332] "A reliability analysis showed that corrected item–total correlations ranged from 0.31 to 0.62, with the removal of PSQ item 7 increasing the alpha coefficient substantially from 0.56 (with item 7 included in the data set) to 0.84. A Cronbach’s alpha of 0.59 was obtained for the eight PSQ items (0.78 for the PSQ with item 7 removed). In the study of Broadbent et al. using a clinical sample of psychotherapy patients attending a CAT clinic (N = 52), the eight item version of the PSQ showed an alpha coefficient of 0.77 and with a BPD sample (N = 24) a coefficient of 0.87 was achieved. Test–retest reliability assessed using the group of students and CAT practitioners (N = 29) of Broadbent et al. after a six week period indicated that the PSQ was stable across time with a correlation of 0.75."                                                                                                                                                                                                       
## [333] "Test-retest reliability: Test-retest reliability was assessed in a subsample (n = 46). All questions had substantial to perfect test-retest reliability (kappa’s > 0.60), except for separation sidewalk-cycling path (kappa = 0.51) and overall upkeep (kappa = 0.45), which had moderate reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [334] "Test-retest reliability was established by administering the questionnaire to a group of adults from the community sample (n = 51) on two occasions, one week apart. Reliability was high (r=0.91). Internal consistency was calculated for the entire sample and for each of the three groups. Cronbach's alpha was greater than 0.90 for all analyses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [335] "Items were merged to create a measure of Positive Effort Beliefs (alpha = .79, M = 4.66, SD5 = .89). The test–retest reliability for this measure over a 2-week period was .82 (N = 52)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [336] "Internal Reliability: The Cronbach's alpha was .84. Test-Retest Reliability: The resulting intraclass correlation (ANOVA estimate of reliability) was .69 (n = 15, p = .004)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [337] "Cronbach’s alpha was found to be good for the Cognitive Sensitivity Index (N = 11; alpha = .89). Item–total correlations ranged from .43 to .79. Interrater reliability was tested using Cronbach’s alpha by double-coding a minimum of 10% of the videos and revealed good agreement for younger siblings (alpha = .88) and acceptable agreement for older siblings (alpha = .72)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [338] "Reliability analysis of the three factors yielded the following Cronbach's alphas: Warmth (Parental Standards, alpha = .86; Perceived Behavior, alpha = .86 ); Agonism (Parental Standards, alpha = .88; Perceived Behavior, alpha = .73); and Rivalry/Competition scale (Parental Standards, alpha = .81; Perceived Behavior, alpha = .76). Test-retest reliability was evaluated with 25% of the sample (n = 29) who completed the PEPC-SRQ on two occasions spaced 3 months apart. Scores for Parental Standards of Warmth, Agonism, and Rivalry/Competition correlated .74, .86, and .77, respectively, across the two time points. Test-retest correlations for Perceived Behavior were .71 for Warmth, .47 for Agonism, and .37 for Rivalry/Competition (all ps < .05). The authors note that the marginal test-retest reliability of perceived Rivalry/Competition suggests that the results for this scale should be interpreted cautiously."                                                                                
## [339] "Across the entire sample, a medium correlation between Sharing and Helping was found, Pearson’s r=.44, p<.001, N=196. Remarkably, Sharing and Helping correlated somewhat higher with Moral Courage, Pearson’s correlations of .24 and .29, respectively, relative to Altruistic Punishment, Pearson’s correlations of .16 and -.00, respectively. Moral Courage and Altruistic Punishment showed only small albeit significant intercorrelation, Pearson’s correlation r=.17, p<.02, N=196."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [340] "Internal Consistency: Cronbach’s alphas for the Cognitive and Emotional demand scales in a Dutch internet sample (N = 3,382) were .90 and .81, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [341] "Interrater Reliability: The overlap between the children who were assessed using teacher reports and peer/self-reports of bullying involvement was n = 907. In 66% of the cases, there was an exact agreement between the teachers and peers on whether children were involved in bullying, and the k value (k = 0.32, n = 907) demonstrated a fair interrater agreement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [342] "Test-Retest Reliability: Of the 94 participants, 13.8% (N = 13) accepted to come back to the memory clinic and underwent a second e-CT test (average time between assessments = 56 days, range: 4-118 days). The coefficient of correlation (r) between the first and second e-CT scores was 0.89 (p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [343] "The Health Care Discrimination Scale (HCDS) was found to have acceptable reliability for a new instrument (N = 218, 12 items; alpha = .78). Cronbach's alphas for the Health Care Cultural Safety (HCCS) and Patient/Family Cultural Needs (HCPF) subscales were .87 and .66, respectively. The test-retest coefficient was determined using Pearson Product Moment Correlation r = .98, which indicated a very high estimate of stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [344] "Internal Consistency: Cronbach’s alpha for each subscale was .73 (Closeness), .80 (Depend), and .87 (Anxiety). A test-retest analysis was performed with a subsample of participants that completed the scale 60 days after the initial application (n = 30), indicating significant and high levels of temporal stability for all subscales (correlation coefficients ranged from .57 to .74)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [345] "Internal Consistency: The four split-half correlations between odd and even scores, applying Spearman-Brown corrections, proved to be moderate and significant for three of the trial types: Failure–negative, r = .419, n = 60, p = .024; Failure–positive, r = .459, n = 60, p = .011; Success–negative, r = .464, n = 60, p = .009. The internal reliability for the Success–positive trial type was non-significant, r = -.09, n = 60, p = .51."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [346] "Internal Consistency: In two samples of Amazon.com Mechanical Turk workers (N = 1388 and N = 1419), alpha reliability was 0.85 and 0.84, respectively. In two samples of public university undergraduate students (N = 995 and N = 956), alpha reliability was 0.85 and 0.83, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [347] "Internal Consistency: Reliability of the treatment items, using Cronbach’s alpha, was alpha = 0.56 for the sample of patients (n = 6), alpha = 0.82 for parents (n = 13), and alpha = 0.81 for medical record data from healthcare providers (n = 11)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [348] "Test-Retest Reliability: A subset of parents and teachers (N = 44) reliably reported the Behaviors domain of the STI (correlations ranged from .85 to .90). Test-retest reliability was moderate for both the Injuries (.70) and Symptoms domains (.60 to .64). Internal Consistency: Values for coefficient alpha were high for Behavior and Symptoms (alphas = .95 and .98, respectively). The coefficient value for Injuries was, as expected, below the traditional .70 cutoff (alpha = .63)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [349] "Internal Consistency: In a sample of fourth-grade students (N = 200) in the U. S., the Cronbach's alpha for the nine items was .87. In the sample of teachers, the Cronbach's alpha for the three items was .76."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [350] "Inter-Rater Reliability: Persons with clinically significant health anxiety (n = 52) and healthy controls (n = 52) were interviewed using the HPDI. Diagnoses were then compared with those made by an independent assessor, who listened to audio recordings of the interviews. Ratings generally indicated moderate to almost perfect inter-rater agreement, as illustrated by an overall Cohen's κ of .85. Disagreements primarily concerned (a) the severity of somatic symptoms, (b) the differential diagnosis of panic disorder, and (c) somatic symptom disorder (SSD) specifiers."                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [351] "Internal Consistency: Cronbach's α was .79. Test-Retest Reliability: Test-retest reliability (n = 14) was .78, which was highly significant (p = .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [352] "Internal Consistency: Cronbach's alpha was 0.79 for the overall sample and ranged from 0.71 to 0.86 for the four subsamples (children, early adolescents, adolescents, and emerging adults). Interrater Reliability: Two raters who were blind to both aims and the design of the study were asked to score a randomly selected sample of the drawings (n = 330, 14.9% of the sample) to assess the interrater reliability of the Test for Creative Thinking--Drawing Production; Chinese Version. The interrater correlation coefficients that were obtained for the Test for Creative Thinking--Drawing Production; Chinese Version scores were generally good, with r ranging between 0.67 to 0.98."                                                                                                                                                                                                                                                                                                                              
## [353] "Interrater and Test-Retest Reliability: Analysis of reliability showed overall high values of percentage agreement (≥ 70) and of the rank-order agreement coefficient (r > 0.82), and low degrees of systematic disagreement in a sample of Swedish geriatric rehabilitation patients (n = 20–25)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [354] "Inter-rater Reliability: Reliability for the synchrony coding scheme was determined by having a second coder independently code 24% of the videotapes for mothers and 24% of the videotapes for fathers. Kappa computed between the two coders' ratings of mother–toddler dyads (n=31) across intervals resulted in κ = 0.83 for interactional synchrony. Kappa between the two coders' ratings of father–toddler dyads (n=21) across intervals resulted in κ = 0.86 for interactional synchrony."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [355] "Temporal stability was examined by using only those ratings by peers who rated the same child at both time points (n = 46). The correlation was .61 (p < .001), suggesting adequate stability when children are rated by the same peer. LTRS-Average and LTRS-Highest scores without regard to whether raters differed at the two time points were also examined. Scores from Time1 and Time2 were significantly correlated for both LTRS-Average (r = .36, p < .001) and LTRS Highest (r = .50, p < .001) scores. Although moderate, these correlations would suggest reasonable temporal stability given the length of time between assessments (4 months) and differences in lunchroom seating policies across schools."                                                                                                                                                                                                                                                                                                          
## [356] "Internal Consistency: Reliability was α = .92 in a sample of Korean college students (N = 143)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [357] "Reliability: The Cronbach's alpha for negative a positive parental behavior was .69 and .85, respectively. Interrater reliability: The interrater reliability was acceptable for all variables (intraclass correlations [ICCs] = .59–.85, n = 55; Cicchetti, 1994)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [358] "Internal Consistency: Cronbach alphas for the total measure were .77 and .78 for the two samples (n = 184 and n = 186), respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [359] "For ministry shame and ministry guilt, Cronbach’s alpha coefficients in the student sample were 0.86 and 0.77, respectively. In a subsample of the students (n=49), test-retest reliabilities over a 1-month period for shame and guilt were r=0.78 and 0.82, respectively. Internal consistency for ministry shame and guilt in the clergy sample (Cronbach’s alpha coefficients) were 0.86 and 0.76, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [360] "Internal Consistency: scale internal consistency reliability was investigated at two levels of analysis: the individual student score (n = 614) and the class mean score (n = 32). The reliability estimates at the level of individual student score were all above .77, with the exception of the \"complying\" dimension (alpha = .63). Similarly, at the level of the class mean score the alpha values were all above .75, with the exception of the \"reprimanding\" dimension (alpha = .65)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [361] "The inter-rater reliability was determined by the correlation between the 0 and 2-week score in the Chicago sample as it is done by two different raters: r = 0.86 and N = 32. The correlations between the 2-week and 6-week ratings (r = 0.81, N = 36) were also significant, indicating the stability of both the syndrome and the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [362] "Cronbach's alpha = .86. For the second study, reliability analyses of the Terrorism Questionnaire resulted in very high Cronbach’s alphas in all three cases (N=130 for all): α (Terrorism Questionnaire, general version, pre-test) = .80, α (Terrorism Questionnaire, general version, post-test) = .88 and α (Terrorism Questionnaire, specific version) = .82."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [363] "The Cronbach’s alpha coefficient for the K-BDRS was 0.866. The inter-rater reliability was analyzed in a subsample of patients (n = 20) who were interviewed by two different raters. The inter-rater reliability was high for both the total K-BDRS score (ICC = 0.954, 95 % confidence interval [CI] = 0.884–0.982, p < 0.001) and the individual items (ICC > 0.70). The test-retest reliability was also analyzed in a subsample of patients (n = 35) who had no clinical change between two testing sessions, and was high for both the total K-BDRS score (ICC = 0.950, 95 % CI = 0.901–0.975, p < 0.001) and the individual items as well (ICC > 0.70."                                                                                                                                                                                                                                                                                                                                                                       
## [364] "Reliability analysis yielded an overall Cronbach's alpha of .84. In addition, alpha was estimated for each of the four factors: (1) Blend/Balance, .87 (n = 8); (2) Time-Feel, .65 (n = 5); (3) Idiomatic Nuance, .80 (n = 2); and (4) Expression, .87 (n = 3). Alpha was also estimated for each of the rater groups: undergraduates, .78 (n = 19); graduates (n = 27), .75; professional performers, .75 (n = 29); and university professors, .89 (n = 27)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [365] "Interrater reliability: The estimated inter-rater reliability from 28 videos that were coded by multiple coders (two randomly selected coders) was excellent for both BOSCC domains, as well as for the Core Total, with ICCs ranging from 0.97, 95% CI [0.94–0.99], to 0.98, 95% CI [0.96–0.99]. ICCs of individual items ranged from 0.72, 95% CI [0.53–0.91] to 0.96, 95% CI [0.93–0.99]. Test-retest reliability: Using a sub-set of children (n = 20) with two video observations separated by less than one month (40 videos total), the estimated test–retest reliabilities (ICCs) were high: 0.89, 95% CI (0.77, 0.98), for the social-communication domain, 0.79, 95% CI [0.62, 0.96], for the RRB domain, and 0.90, 95% CI [0.81, 0.98], for the Core total. ICCs of individual items ranged from 0.44, 95% CI [-0.05, 0.92] to 0.89, 95% CI [0.81, 0.98]."                                                                                                                                                                
## [366] "Internal consistency: Spearman’s correlation showed that scores for the two vignettes had a strong, significant correlation (ρ (129) = 0.68, p < 0.001). Cronbach’s alpha coefficient was 0.73 for the 44 items on the scoring scheme, indicating good internal consistency. Inter-rater reliability: The intra-class correlations indicated substantial inter-rater reliability looking at absolute agreement for total score for both data sets marked by two raters (N = 25, ICC(2,k) = 0.94, p < 0.001). Test-retest reliability: Intra-class correlations indicated excellent test–retest reliability for total Score between time points one and two (N = 10, ICC(2,k) = 0.96, p < 0.001)."                                                                                                                                                                                                                                                                                                                                    
## [367] "The coefficient alpha of the 30-item ECI scale (based on 489 subjects) was .90. The test-retest correlation was .91 (n= 45)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [368] "Inter-rater Reliability: Following training, 10% of the sample (N = 20) was double-rated and inter-rater reliability was assessed on these responses. Inter-rater reliability was excellent (Landis & Koch 1977; kappa = .89). Internal Consistency: The AST-DA had good internal consistency on pleasantness ratings (Cronbach's alpha = .83, George & Mallery, 2003) and excellent split half reliability (r = .80)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [369] "Test-Retest Reliability: The kappa index of test-retest reliability for the instrument over a two-week period was .78 in a sample of medical center employees (n = 20)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [370] "Internal Reliability: Cronbach's alpha statistics for the Body Image Scale in these sub-groups were 0.91, 0.91 and 0.86, respectively. Cronbach's alpha statistic for data from the full sample (n=682) was 0.93: item alphas ranged between 0.92 and 0.93."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [371] "Internal consistency reliability for the total sample of 1196 participants on the ICIAI-FAM (n = 10 items) and ICIAI-FRD (n = 10 items) scales was high (alpha = .91 and .90, respectively). Reliability estimates for each of the three subscales within each context exam­ined separately was good (alphas ranged from .80 to .88). The reliability estimates for the ICIAI-FAM and ICIAI-FRD total scale when explored separately by each racial/ethnic group were also good: five-item subscale of maintaining social harmony through action (alphas ranged from .87 to .89), three-item subscale of respecting the values and norms of the group (alphas ranged from .78 to .87), and two-item subscale of self-sacrifice on behalf of group needs (alphas ranged from .77 to .82)."                                                                                                                                                                                                                                            
## [372] "Reliability analysis yielded an overall Cronbach's alpha of .830. Interrater reliability was examined by comparing QoDD-D-MA scores with scores on the Informal Caregivers' version of the QoDD (QoDD-D-ANG). The Pearson correlation coefficient for matching cases (n = 150) of the QoDD-D-ANG and the QoDD-D-MA was r = .245 and 2-sided significant (P < .01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [373] "Internal Consistency: Cronbach alphas ranged from .661 to .814 in the total sample (N = 292). Test-Retest Reliability: The 2-week test-retest correlations were significant for the total score (t = 0.934, p < 0.001), and the sub-tests Explaining Inferences (t = 0.818, p < 0.05), Negative Why (t = 0.867, p < 0.05), Determining Solutions (t = 0.940, p < 0.001) and Avoiding Problem (t = 0.914, p < 0.05). The correlation for the sub-test Determining Cause was not significant (t = 0.631). Interrater Reliability: A Pearson Correlation Coefficient (r) was calculated, for inter-scorer reliability for the total test score (r = 0.9662) and for the sub-tests Explaining Inferences (r = 0.9185), Determining Cause (r = 0.8785), Negative Why (r = 9318), Determining Solution (r = 0.8823) and Avoiding Problem (r = 0.9031) with all correlations being significant at p < 0.001."                                                                                                                                  
## [374] "Cronbach’s alpha = .95. Among 11 subjects who repeated the survey 37 to 194 days later, the mean change in Total Integration Score was +1.5 of 100 (95% confidence interval -5.0, +8.0) with a range from -19 to +23, providing evidence of good test–retest reliability. Interrater agreement within practice (N=32 respondents from 15 practices) was also supported. The authors note that the wording of items can be further improved to increase the measure’s reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [375] "Cronbach's alpha for the entire sample (N = 120) was .921; for husbands separately, .923, and for wives separately, .920. Systematic removal of each item had no impact on the alpha."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [376] "Cronbach's alpha values were 0.87 [0.86] for MA, 0.84 [0.88] for EV, and 0.73 [0.70] for DI based on N=149 (4-week retest based on N=52 given in brackets)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [377] "The DPSQ exhibited high reliability (alpha = .82). The removal of any single item did not improve the tool’s internal reliability. Correlation analysis revealed significant correlations (r = .74, n = 78, p < .001) between the 10 individual items of the DPSQ and the total questionnaire score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [378] "Internal Consistency: Reliability analysis found a Cronbach’s alpha value of .97 (N = 46); this indicated high internal consistency of the items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [379] "Interrater Reliability: To establish reliability, approximately one-fifth (n = 115) of the total number of coded posts were randomly selected and coded by the first and second authors. Percent agreements for all variables in the coding system ranged from 89.5% to 99%. Kappas ranged from 0.66 for the type of leadership style to 0.80 for whether the post was a staff member or a participant, indicating substantial agreement between coders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [380] "Internal and Test-Retest Reliability: Internal reliability of the SCSK scale was acceptable (KR-20 = .69) in a sample of 514 young adults, and 2-week test–retest reliability was high (r = .83, n = 52)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [381] "Internal Consistency: Cronbach alphas across two studies (N = 204 and N = 100, respectively) ranged from .74 to .96. Items with the highest item-total correlation within each factor were used to form an 8-item short-form scale with acceptable reliability (alpha = .82)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [382] "The internal consistency of the SAC-IAT was moderate whether including all participants (α = .64; N = 78) or only including child molesters with victims below 12 and nonsex offenders (α = .73; n = 57)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [383] "Internal Consistency: Cronbach alphas across two studies (N = 204 and N = 100, respectively) ranged from .79 to .94. Items with the highest item-total correlation within each factor were used to form a 9-item short-form scale with acceptable reliability (alpha = .76)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [384] "Results revealed a strong general dimension with high internal consistency (α = 0.92), as well as the existence of two hypothesised subfactors (correlated at 0.78): efficacy to parent and efficacy to connect, each with internal consistencies of 0.85+. Test–retest reliability (n = 200) was 0.84."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [385] "Internal consistency: Cronbach's alphas were above 0.84 across all samples. Test-retest reliability: Stability was correlated between two data collections, (Cronbach-alpha was 0.881 for the two surveys) and 0.885), the rate being r = 0.86 (N = 75; p <0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [386] "The retest reliability of the IS was .87 (1-mo. interval, N = 300)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [387] "The α (Cronbach) coefficient was calculated for each scale, in the non-clinical sample of the CSI–4 Checklist (N=1066). More than a half of the internal consistency coefficients were over .70 (14 of the 24 coefficients from the Teacher Checklist and 21 of the 26 coefficients from the Parent Checklist) and only three coefficients (two from the Teacher Checklist and one from the Parent Checklist) were below .60. To assess test-retest reliability, the Romanian version of the CSI-4 was administered twice, at a two-month interval. For most scales, significant values of the correlation coefficients were obtained, at p<.05 (generally, at p<.001) and the value of the correlation coefficients were moderate to high, except for the Compulsions scale of the Teacher Checklist, and the Schizophrenia scale of the Parent Checklist. Interrater reliability was also tested and found to be sufficient."                                                                                                      
## [388] "The Kuder-Richardson 20 statistic (KR20) for internal consistency reliability was calculated for the post-tested subscales, using retained items only. The KR20 (i. e. standardized item alpha) for the general knowledge subscale was 0.60 and for the curability subscale was 0.62. The overall KR20 for the two subscales combined was 0.71. Correlations were run between use and frequency of screening methods and scores on the subscales. No significant correlation was found between women's scores and use or frequency of mammography or professional examinations. There was a weak but significant correlation between subscale scores and utilization of breast self-examination (BSE). For the general knowledge subscale, the correlation with BSE utilization was 0.17 (n = 177, P= 0.01). The correlation of the curability subscales with BSE utilization was 0.18 (n=178, =0.01)."                                                                                                                              
## [389] "As in previous studies of the reliability of the original English version the internal consistency of the scale was high (Cronbach alpha = .88). A Pearson product-moment correlation was the estimate of test-retest correlation over a 4-wk. interval. This correlation was satisfactory: r = .72 (n = 74)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [390] "Cronbach's alpha coefficient was .905 for the subsample of managers (N = 126) and .888 for the subsample of lower-ranking officials (n = 487)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [391] "For the knowledge measure (combined A & B sets), Cronbach’s alpha was .810. The correlation between composite scores on set A and set B was r = 0.883 (p < 0.001, n = 30). For the self-efficacy measure, Cronbach’s alpha was 0.954 at the first administration and 0.933 at the second administration. The correlation between composite selfefficacy scores at the first and second administrations was r = 0.699 (p <0.001, n = 30)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [392] "Study 1: The alpha coefficient was .93 in the initial sample (n = 372), .92 in the 3-week retest subsample (n = 121), and .94 in the 7-month retest subsample (n = 102). The 3-week test–retest correlation coefficient was .78, whereas the 7-month test–retest correlation coefficient was .65. Study 2: The alpha coefficient was .93."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [393] "Cronbach’s alpha for item-to-scale consistency was .78 for first-order cognitive ToM, .76 for first-order affective ToM, .84 for second-order cognitive ToM, and .69 for second-order affective ToM. Test-retest reliability of the VAMA was assessed over a 4 week interval (n = 30). ToM total ICC = .93, 95% CI = .85–.96, first-order cognitive ICC = .96, 95% CI = .91–.98, first-order affective ICC = .98, 95% CI = .95–.99, second-order cognitive ICC = .95, 95% CI = .89–.97, and, second-order affective ICC = .99, 95% CI =.98–99."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [394] "Internal Consistency: For the combined adolescent samples (n = 153), Cronbach's alpha was 0.94. Temporal Stability: The test–retest correlation for the 20 adolescents from Samples 2 and 3 who completed the IPG-C twice with a 4-week to 6-week interval was r = 0.72 (p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [395] "Internal Consistency: For the combined children samples (n = 169), the Cronbach's alpha was 0.91. Temporal Stability: The test–retest correlation for the 18 children from Samples 2 and 3 who completed the IPG-C twice with a 4-week to 6-week interval was r = 0.88 (p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [396] "Test-retest Reliability: The QAPACE was administered at two different times, 6 weeks apart, over one year period (2001-2002; n = 121). Results showed Pearson’s intra class correlation coefficients (ICC) between two estimations of total energy expenditure as r = 0.96 [95% CI, 0.95 ; 0.97]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [397] "Internal Consistency: To determine the scale’s reliability, Cronbach's alpha was calculated, resulting in a reliability coefficient of 0.82, indicating the scale as a whole has adequate internal consistency. Internal consistency was tested across the different participants/settings and across the different species in this sample. Alpha levels ranged from 0.72 to 0.89, indicating the HAIS is internally consistent across several settings and species. Test-retest: A subset of participants (n = 57) were subjected to test-retest analysis. Of the 57 participants, 52.6% (n = 30) returned one week later to complete the HAIS a second time, based on their experience with the animal the week before. The test-retest coefficients ranged from 0.36 to 0.94, with most coefficients at or above 0.70. These data suggest that it is possible to measure HAI with the HAIS up to one week after an interaction with an animal, although some items may be more reliable than others."                             
## [398] "Internal Consistency: This scale was found to have good internal consistency (eight items, Cronbach’s α = 0.891, n = 46)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [399] "Internal Consistency: There was good internal consistency for each treatment target subscale (Core Belief subscale, six items, Cronbach’s α = 0.851, n = 48; Multimodal subscale, six items, Cronbach’s α = 0.808, n = 48; Generic subscale, 10 items, Cronbach’s α = 0.823, n = 48). The results showed good internal consistency on both the Core Belief (six items, Cronbach’s α = 0.800, n = 47) and Multimodal (20 items, Cronbach’s α = 0.850, n = 47) subscales but moderate internal consistency on the shorter Target-free subscale (four items, Cronbach’s α = 0.569, n = 47)."                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [400] "Internal Consistency: Cronbach’s α was 0.86 (95% Cl 0.83-0.88; n= 303). Test-Retest Reliability: (ICC= 0 69, 95% Cl 0.57-0.78)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [401] "Internal Consistency: An additional validation (n = 19) of the resulting instrument demonstrated high reliability (Cronbach’s α = 0.88)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [402] "Results in the pilot study were as follows for each sub-scale: Frequency, alpha = .80; Effort Grade alpha = .83; Consequences alpha = .95. The reliability index obtained in the final sample (n = 383) was: Frequency alpha = .73; Effort Grade alpha = .80; Positive impact on the environment alpha = .93."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [403] "Internal consistency: The internal consistency (Cronbachs alpha) of the BCQ total score (the whole group of women and without eating disorders) was at .95. In the group of Women with eating disorders α = .93, in the group of women without eating disorders α = .90 and in the group of men α = .83. The values ​​of women with anorexia Nervosa had an internal consistency of α = .94, the women with Bulimia Nervosa α = .93, and those of Women with an undefined eating disorder α = .92. Test-retest reliability: The test-retest reliability was based on the data of a sample of non-dysfunctional women and men (n = 85, 2 week intervals) rtt = .91 (p < .001). Second, was the test-retest reliability on a sample of women with eating disorders who were waiting for a psychotherapeutic treatment (n = 19), at intervals of three months. This resulted correlation coefficients of rtt = .73 (p <.001)."                                                                                                            
## [404] "Internal Consistency: The Cronbach's alpha coefficients calculated for a broad sample (n = 797) completing the final 27-item QMEC support the fidelity of the overall Optimal commitment scale (α = 0.89) and its subscales: Enthusiasm (α = 0.88), Perseverance (α = 0.89) and Reconciliation (α = 0.83). The same is true for the overall scale of Over-commitment (α = 0.86) and its subscales: Excessive enthusiasm (α = 0.88), Compulsive persistence (α = 0.79) and Perception of neglect (α = 0.87). The global scale of Under-commitment (α = 0.95), and the subscales of Lack of interest (α = 0.91), Lack of energy (α = 0.87) and Perception of invasion (α = 0.92) were also faithful."                                                                                                                                                                                                                                                                                                                                  
## [405] "As a whole scale, the Turkish version of the DERS was found to have a Cronbach's alpha coefficient of .94. Item total correlations ranged between .18 and .71, and 32 of the items had item total correlations of above .35. Cronbach's alphas for the subscales of the DERS ranged from .75 to .90. The Guttman split-half reliability for the DERS was .95: the Cronbach's alpha coefficient for the first part comprised 18 items and was .86, and the second part comprised 17 items and was .89. The test-retest reliability of the total DERS was found as .83 (n=59), slightly lower than the original version which was .88 (n=21). Test-retest reliability coefficients of the subscales of the Turkish version of the DERS ranged between .60 and .85."                                                                                                                                                                                                                                                                    
## [406] "Internal consistency: Cronbach's alpha was 0.75 and 0.83 respectively, for the Awareness and Recognition factors. Test-retest stability (n= 62) had an intraclass correlation coefficient of 0.73 (95% CI, 0.51–0.83) for awareness and 0.85 (95% CI, 0.64–0.92) for recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [407] "Internal Consistency: The Cronbach's alpha values were greater than .90. Test-Retest Reliability: With a three-month interval, the total value and the core behavioral items (p each <.001, rtt = .67 [RS], .82 [EC], .80 [WC], .85 [SC], .88 [Total value], Tb = .45 [objective binging], .39 [self-induced vomiting], n = 73 non-clinical subjects)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [408] "After established themes were agreed upon, 20% of the surveys (n=8 surveys) were randomly selected to be double-coded. One hundred percent agreement was achieved between the first author and the reliability coder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [409] "Internal Reliability: The reliability of the final 140-item version of the LIFE was .83. Phase II LIFE content scale reliabilities ranged from .76 to .89. The already established Defensiveness scale reliability from Phase I was .78 (N=75) and from Phase II was .75 (N=100)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [410] "Internal Reliability: The person reliability was 0.81 and the Cronbach's alpha was 0.88 suggesting the FreKAQ-J has good internal consistency and is suitable for both individual and group use. Test-Retest Reliability: Of the participants who reported no change (the difference between first and second round of pain intensity during movement is under 10 mm) in pain intensity during the past 2 weeks (n = 23), there was excellent agreement between test and retest total scores, with an ICC of 0.76 [95% confidence interval (CI) 0.52±0.89]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [411] "The Cronbach alpha coefficient of the total score of the RBD was α = 0.91. For the RBD domains, it ranged from 0.76 to 0.87. Regarding test-retest stability (N = 9), ICC was satisfactory for the total score (ICC = 0.97; p ≤ 0.001) as well as for the RBD domains (self-management of BD = 0.95, p ≤ 0.001; self-care = 0.97, p ≤ 0.001; self-confidence = 0.78, p ≤ 0.01; interpersonal support=0.88, p ≤ 0.01). The turning point factor's ICC was not significant (p=0.68)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [412] "The MIEG scale showed good internal reliability across all samples, from α = .91 (Sample 3) to α = .96 (Sample 1). Reliabilities of target groups (4 items each) across all participants were also computed: Albanian (α = .91, n = 408), Chinese (α = .84, n = 216), French (α = .83, n = 749), Germans (α = .80, n = 450), Indians (α = .72, n = 104), Iranians (α = .74, n = 450), Moroccan (α = .91, n = 491), Romanian (α = .91, n = 870), U.S. citizens (α = .85, n = 299). In all the analyses, the Cronbach’s α did not increase with the elimination of any item. The item-total correlations for the MIEG items were over .40 across all samples."                                                                                                                                                                                                                                                                                                                                                                         
## [413] "The test-retest coefficient was 0.59. The split-half was 0.85. For the whole sample (N = 204), Cronbach’s alpha coefficient was 0.89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [414] "Internal Reliability: Across the entire sample (N = 258), the PQ-92 and its subscales had good internal consistency as indicated by Cronbach's alphas of 0.945 for the total scale (p = 0.0001), 0.888 for the positive subscale (p = 0.0001), 0.848 for the negative subscale (p = 0.0001), 0.767 for the disorganized subscale (p = 0.001), and 0.826 for the general subscale (p = 0.0001). Test-Retest Reliability: The coefficient of stability was 0.942 for PQ total, indicating excellent short-term test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [415] "Test Reliability: Cronbach’s alpha was estimated at .951, suggesting an acceptable level of internal consistency. Interrater Reliability: An analysis of how raters collected and interpreted data during data collection showed high interrater reliability (ICC = .972) for the 20% of observations (n = 42) that were conducted by two raters independently scoring the IVC-R."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [416] "Cronbach’s alphas were .936, .910, and .896 for the total scale (18 items), Inattentive subscale (9 items), and Hyperactivity/Impulsivity subscale (9 items), respectively. Inter-rater reliability was assessed based on teachers’ and parents’ ratings (n = 106; 53 ADHD and 53 normal) using Cohen’s Kappa = .925 (p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [417] "Cronbach’s alpha for the PSQ4D was 0.80 for the entire sample. Cronbach’s alpha was 0.75 in men and 0.82 in women; 0.76 in the 18- to 24-year age group (n=109), 0.73 in the 25- to 34-year age group (n=230), 0.85 in the 35- to 44-year age group (n=223), 0.78 in the 45- to 54-year age group (n=185) and 0.77 in the 55- to 60-year age group (n=80); 0.79 in public and 0.78 in private hospital settings. When the PSQ4D test positivity was defined as ‘any two questions positive’ (score ≥2), the kappa coefficient for interrater reliability (n=118) was 0.72 (95% CI 0.61–0.83). Using the same definition for test positivity, the kappa coefficient for test–retest reliability (n=38) was 0.9 (95% CI 0.76–1.0)."                                                                                                                                                                                                                                                                                                    
## [418] "The Guttman split half reliability was .89 (N=120), the Cronbach's alpha was .94. Reliability coefficient of three social categories for perceived discrimination questionnaire was estimated separately. Guttman split half reliability for General category was found to be .88, Other Backward Categories was .89 and Scheduled Caste/Scheduled Tribe category was .89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [419] "Internal Consistency: The internal consistency reliabilities of both the Attitudes (α = .89) and the Behaviors (α = .90) subscales were high; the alpha for the overall measure was α = .90. Test-Retest Reliability: Among the subsample who completed the measure twice (n = 148), test-retest reliability was acceptable for both of the FMS subscales, with r = .79, p < .001 for the Attitudes subscale and r = .76, p < .001 for the Behaviors subscale, and r = .82 for the entire scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [420] "Internal Reliability: Internal reliability of the ACES-NL was excellent (Cronbach's alpha= .91 and Lambda 2= .91). Item total correlations were moderate and ranged from .39 to .65 (M= .55). The ACES showed excellent internal consistency (Cronbach's alpha= .89-.92) in Canadian studies (Dozois & Westra). Test-Retest Reliability: Test-retest reliability (over a 18-month period) was good (r= .80 for the total sample, N= 108, and r= .79 for the pre-intake sample, n= 92)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [421] "Internal Reliability: Using Cronbach's coefficient alpha (a), the internal consistency of the ARP-R for total sample (n=201) was .99. Across assessment conditions, coefficient alpha (a) was .96 and .94 for the curriculum-based assessment and published, norm-referenced test case summaries respectively. Test-Retest Reliability: Across 1-month (n = 86), 3-month (n = 80), 6-month (n = 79), and 12-month (n = 74) intervals, test-retest reliability coefficients of .85, .82, .84, and .82, respectively, were obtained."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [422] "Coefficient α = .65 (Time 1; N = 713), .73 (Time 2; N = 422). BSCI Factors: Mutual Concerns [coefficient α = .50 (Time 1; N = 820), .64 (Time 2; N = 485)]; Social Connections [coefficient α = .55 (Time 1; N = 917), .50 (Time 2; N = 544)]; Community Values [coefficient α = .51 (Time 1; N = 1040), .61 (Time 2; N = 621)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [423] "Internal Consistency: The WBIS-Y displayed a Cronbach’s alpha level of .874. Test-Retest Reliability: A strong, positive, significant correlation was noted between interviewees’ repeated WBIS-Y assessments, despite the small sample size (N = 10, r = 0.88, p = .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [424] "Analyses indicated that test-retest reliability was high for both a PWS group and a control group. The authors were unable to assess inter-item reliability as the SGSM contains only one item for each situation. For intra-rater reliability, results indicated a strong level of agreement between the raters, as the ICC was 0.95 (95% CI= 0.92–0.98, n =20). Similarly, inter-rater reliability, the ICC was 0.95 (95% CI = 0.92–0.98, n= 20) and the concordance correlation coefficient was 0.998 (n= 20, 95% confidence interval =0.9995–0.9998)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [425] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.93 for the SELA, using the initial sample (n =12 teachers; n = 268 students). Test-retest Reliability: The SE Composite of the five social emotional rubrics and AF Composite of three academic rubrics, displayed alpha values of 0.89 (SE composite) and 0.91 (AF composite) over a one-month period. The SE subscale rubric ratings ranged from 0.70 to 0.87 and the AF subscale rubric ratings ranged from 0.84 to 0.87. All test-retest ratings were statistically significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [426] "Cronbach's alphas (EFA/CFA): Food Choice Driven by the Advertising Environment Scale = 0.77/0.81; Food Choice Driven by a Healthy Aesthetic Scale = 0.52/0.54; Food Choice Driven by Busy Daily Life and Preferences Scale = 0.55/0.44. Responses from a subsample of freshmen completing both Spring Time 1 and Spring Time 2 (n = 109) were used to determine test–retest reliability. Cohen’s weighted κ coefficients for responses within 20 days of first administration revealed FCPS items have moderate to substantial test–retest reliability based on Landis and Koch (1977) criteria where ≤0 = poor, .01 to .20 = slight, .21 to .40 = fair, .41 to .60 = moderate, .61 to .80 = substantial, .81 to 1 = almost perfect."                                                                                                                                                                                                                                                                                                
## [427] "Internal Reliability: Cronbach alpha coefficients showed high internal consistency reliability, with alpha values for the Vitality, Emotional distress, and Sleep factors at 0.96, 0.96, and 0.90, respectively. Test-Retest Reliability: Test–retest reliability of individual items in stable patients (n = 33), 11 to 17 days after their baseline visit, was satisfactory, with intraclass correlation coefficients ranging from 0.61 to 0.86."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [428] "Cronbach’s α coefficients at baseline for subjects with BPD and comparison subjects were 0.86 and 0.90, respectively. When subjects with BPD were combined with comparison subjects, the test homogeneity of the baseline scores remained high (α = 0.92). Cronbach’s α coefficient for the borderline subjects was 0.89 after the first month of treatment, and remained high (0.90 to 0.92) during the 20-week treatment period. Item-total correlations and the corresponding overall measure of internal consistency indicated that all items are measuring the same dimension. Correlation between baseline and screening BEST total scores was moderate (r = 0.62, n = 130, P < .001). There was a mean (SD) of 53.1 (45.6) days between screening and baseline assessments."                                                                                                                                                                                                                                                  
## [429] "Cronbach's alpha was 0.81. Test-retest reliability estimates for identical administration within 7 days were 0.62 and 0.36 respectively, for enumerator (n = 95) and automated phone (n = 92) samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [430] "Cronbach's alphas across samples were as follows: Derivation (n=2,325): .23; Mixed gender (n=625): .51; Self/informant (n=174): .22; Male prison (n=192): .35; Mixed gender jail (n=139): .59; Female prison (n=198): .59; Male jail (n=82): .07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [431] "The survey was assessed for internal consistency and uniqueness of each question by an expert panel (n = 8) including RTs, ROMPs and researchers (Imle & Atwood, 1988; Monterosso, Kristjanson, & Dadd, 2006). Items not meeting the minimum criterion for agreement (disagreement of more than one expert) were adapted or deleted according to feedback received and in consultation with panel members (Lynn, 1986)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [432] "Internal Consistency: Cronbach’s alpha for this scale was .88. Test-Retest Reliability: A subsample of caregivers (n = 33) completed the scale at 4- and 8-month intervals. Test-retest reliabilities were .71 and .67, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [433] "The STQ was considered feasible, showed adequate internal consistency (Cronbach’s a = .734), and the test–retest correlation with the STQ items demonstrated a high concordance between the tests over a two-week interval (ICC = .990; n = 50)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [434] "The DAD demonstrated a high degree of internal consistency (Cronbach’s alpha = .96) and excellent interrater (N = 31, ICC = .95) and test–retest (N = 45, ICC = .96) reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [435] "Internal Reliability: The alpha coefficients according to ASC forms and ASC items, indicate high internal consistency. The mean coefficient across the nine forms, using a subsample of children (n = 56), was .83 (range = .79–.86). The mean coefficient for the eight items was .81 (range = .71–.89). The overall, alpha coefficient when considering all items in all forms was .83, but when totals from each of the forms were used as items, the alpha coefficient was .96. Test-Retest Reliability: Using a subsample of children (n = 56) who received all nine ASC forms with 2 weeks, the correlation between the median or best scores resulted in a mean correlation of .82, p < .01 (using median scores), and .78, p < .01 (using best scores). When parallel form reliability was examined for forms that were administered within the same session, albeit a random selection of forms, the mean correlation was .78, p <.01."                                                                                     
## [436] "Association between social support index scores over the long test–retest interval was strong (r = .78, p < .001). In a stratified analysis, those participants in the long-interval sample who experienced major life events between visits In the group experiencing a major life event showed patterns of test–retest agreement that were distinct from those seen in individuals with relative life stability. In a combined sample of all test–retest comparisons (n = 243), there were statistically significant, but somewhat weak, correlations between total weekly interaction and social support (r = .25, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                    
## [437] "Satisfactory internal consistency (α = .81) was found in Sample 1 for the total score, with somewhat lower values on the subscale levels: manageability (α = .77), reflection (α = .76), and balance (α = .63). In Sample 2, the total scale alpha score was satisfactory (α = .75) with lower subscale values of manageability (α = .71), reflection (α = .64), and balance (α = .57). Stability over time was tested with a subset of Sample 1 (n = 60) over four weeks and resulted in a high retest reliability coefficient of r = .85. As SOC-R is assumed to be stable across the life span, a longer retest interval of 15 months was examined and yielded a coefficient of α = .74."                                                                                                                                                                                                                                                                                                                                         
## [438] "Both the cultural harmony versus conflict (α = .86) and cultural blendedness versus compartmentalization (α = .81) subscales yielded reliable scores. Both subscales also had good test–retest stability: r harmony = .77 and r blendedness = .73 (n = 239, range = 5 to 10 days after first session, M = 6.9, SD = 0.9 days)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [439] "Internal Reliability: The internal consistency reliability for the final model, using Samples from the three studies (n = 942), was .94. The internal consistency reliabilities for the subscales of the SPF-24 were Social Support = .93, Social Skills 5 .89, Prioritizing/Planning Behavior = .90, and Goal Efficacy = .83."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [440] "Internal Reliability: Results from three samples (total N = 1,959) indicated high reliabilities (ranging from .87 to .91)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [441] "Internal Consistency: An initial set of items was administered to a sample of university students (N=42) and resulted in 21 reliable items (r=.408-.687)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [442] "Test-retest reliability: The TGMD-3 (German translation) provides excellent test-retest (hypothesis 1, interval: 2 weeks, N = 104; locomotor skills: ICC = .94, 95% CI [.91, .96], p < .001; balls skills: ICC = .98, 95% CI [.97, .99], p < .001). Interrater reliability: Interrater scores (hypothesis 2, 2 raters, N = 30 observations; locomotor skills: ICC = .88, 95% CI [.76, .95], p < .001; ball skills: ICC = .97, 95% CI [.94, .99], p < .001). Intrarater reliability: Intrarater scores hypothesis 3, N = 30 observations, interval: 4 weeks; locomotor skills: ICC = .97, 95% CI [.94, .99], p < .001; ball skills: ICC = .99, 95% CI [.98, 1.00], p < .001). Internal consistency: Locomotor skills: Cronbach’s α = .76, and Ball skills: Cronbach’s α = .89."                                                                                                                                                                                                                                                       
## [443] "Internal consistency reliability values ranged from. 60 (narcissistic) to. 84 (borderline) with a median of. 72 in the normative sample;. 61 (obsessive–compulsive) to. 82 (borderline and avoidant) with a median of. 74 in the university sample;. 63 (narcissistic) to. 88 (borderline) with a median of. 78 in the outpatient mental health sample; and. 60 (narcissistic) to. 85 (borderline) with a median of. 77 in the prison sample. Test–retest reliability was examined in a subset of the original MMPI–2 normative sample (n=193) who were administered the test 1 week apart. The values were substantially larger than their corresponding internal consistency coefficients, ranging from. 78 (paranoid and obsessive–compulsive) to. 91 (avoidant) with a median of. 86."                                                                                                                                                                                                                                           
## [444] "Test-Retest Reliability: The ICC statistic for the test-retest reliability of NPRS-NP for the stable group (n = 36) at two week follow-up, showed excellent test-retest reliability and a MDC of 1.13 points"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [445] "In a sample of Portuguese (N = 53) internal consistency was good for high-conflict personal dilemmas (ρ = 0.84), poor for impersonal dilemmas (ρ = 0.53), and unacceptable for low-conflict personal dilemmas (ρ = 0.47). In a separate sample (N = 41), internal consistency, measured by the KR20 test, was good for high-conflict personal dilemmas (ρ = 0.86), poor for impersonal dilemmas (ρ = 0.50), and unacceptable for low-conflict personal dilemmas (ρ = 0.47). In a sample of Portuguese college students (N = 137), internal consistency was equivalent for both the long and short versions of dilemmas: good for high-conflict personal dilemmas (long and short versions: ρ = 0.85), and unacceptable for impersonal (long version: ρ = 0.40; short version: ρ = 0.41) and low-conflict personal dilemmas (long version: ρ = 0.29; short version: ρ = 0.28)."                                                                                                                                                       
## [446] "The internal consistency of the MCSYS subscales was assessed in the combined 2 basketball samples (n = 582). Cronbach alpha coefficients for the total basketball sample were .78 for the mastery scale and .74 for the ego scale. In a separate sample of swimmers, alpha coefficients of .84 for mastery and .75 for ego were obtained. Test-retest reliability for the MCSYS was assessed in sample of competitive swimmers, which completed the MCSYS and was then retested 1 week after the initial administration. The subscales demonstrated adequate test-retest reliability for a situational variable, with coefficients of .84 for mastery items, and .76 for ego items."                                                                                                                                                                                                                                                                                                                                                 
## [447] "Coefficient alpha was .92 for the 12-item version, demonstrating very strong internal consistency. Alphas for the three 4-item subscales were .88 (Problems), .87 (Frequency), and .85 (Initiation). Test-retest reliability was investigated over a 2-week period in a small sample (N = 27). Intraclass correlation coefficients between the two administrations were .75 for the total score, .72 for Problems, .81 for Frequency, and .58 for Initiation. Paired sample f-tests revealed no significant differences in mean scores between the two administrations for the total score or any of the three subscales (all p's > .60)."                                                                                                                                                                                                                                                                                                                                                                                           
## [448] "In a sample of commercial organization employees (N = 249), Cronbach's alpha ranged from .80-.92, and test–retest reliability coefficients for the 5 new scales were as follows: Agreeableness r = .85; Extraversion r = .80; Neuroticism r = .75; Conscientiousness r = .86; Openness r = .71 (N = 65, all p < .01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [449] "The alpha coefficients ranged from .65 to .73. The test-retest reliability coefficients for a sample of college students (N = 119) were statistically significant (ps < .001) but low."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [450] "Cronbach's alphas: Full test=.91; Interactional Problems=.86; Educational Problems=.78; Fear of Being Ridiculed=.80; Psychological/Personal Problems=.70. Test retest reliability (N=100) was significant (r=.91, p<.01) with two weeks interval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [451] "Internal Reliability: The Cronbach's alpha coefficients for the entire OTS and its two subscales all were in the .80s. Test-Retest Reliability: Over a 4-week interval, the test-retest reliabilities were .76 for the total OTS score, .67 for the Sensitivity subscale, and .81 for the Severity subscale (all Ps < .001; N = 61)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [452] "In a sample of children (N = 453, ages 8-14), coefficient alpha was .87; the three-week test-retest reliability was .80. In a separate sample (N = 241, ages 7-14), coefficient alpha in the current sample was .85."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [453] "Internal Consistency: The internal reliability of the BDS was satisfactory, in the present sample of 170 participants (Cronbach’s α = .69), and among all of the Wave 2 participants (n = 239) who completed the BDS (Cronbach’s α = .75)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [454] "Cronbach's alpha=.72. The test-retest reliability of the scale over a three week period (n = 95) was 0.93."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [455] "Cronbach's alpha obtained for the combined sample (n = 1,029) ranged from 0.77-0.85 across the factors, while test-retest reliability coefficients ranged from 0.70-0.89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [456] "Reliability of the final scale was α = .94. Inter-temporal stability checks, with a two month delay between two administrations, was assessed across two independent samples, university staff members (n= 118) and undergraduate students (n = 83). For the staff sample, the BESC scale demonstrated acceptable test-retest reliability with the two administrations being significantly correlated after a two-month delay, r = .62 (p < .001). The mean of the individual-item correlations was r = .51 (all ps < .001). For the student sample, the correlation between the two measures was r = .78, (p < .001) and the mean of the individual-item correlations was r = .59 (all ps < .001)."                                                                                                                                                                                                                                                                                                                                 
## [457] "A standardized Cronbach’s a was 0.92, and average inter-item correlation was 0.32. Of those, who repeated the GPM-K within 2–4 weeks (n = 32), Pearson’s r correlation of test–retest reliability was statistically significant (r = 0.640)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [458] "Based on the combined clinical and community samples (n = 648), coefficients for the HART, HART-A, and HART-B were .96, .93, and .92, respectively. Both short forms correlated more highly with the full HART (r = .98 each) than with one another (r = .93). Pearson correlations between baseline and follow-up scores on the HART, HART-A, and HART-B were .96, .94, and .91, respectively. In 111 adults tested twice, 4–8 years apart, HART-A and HART-B showed excellent test–retest reliability (rs = .94 and .92)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [459] "Internal consistency of the scale was high, with a coefficient alpha of 0.87 and a mean inter-item correlation of 0.27 (n = 406). Two-week test–retest correlation for the college sample (n = 30) was adequate (r = 0.78, p < 0.001). No difference in the percentage of correct responses of college students at study baseline (42.28 ± 19.42) and at 2-weeks follow-up (42.63 ± 22.94) was observed, t(29) = 0.00, p = 0.90."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [460] "The internal consistency of the RTW-SE scale was examined on the baseline data (all three samples) and the follow-up data (from samples 2 and 3). The internal consistency was excellent over time and across samples (> .80). The test re-test reliability of the scale was studied within-sample 3 (N = 65) using the baseline measurement and at a two-week follow-up. Pearson correlation was .73 (p <.01), indicating adequate test re-test reliability (Evers, 2001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [461] "Cronbach's alpha ranged from .88-.94 across the factors in an Iranian sample of college students (N=187), and .86-.97 in a US sample of college students (N=188)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [462] "The new 13-item RSC-C showed internal reliability (α = .76). Mean scores at time 1 (M = 29.53, SD = 7.19; score range 13-52) and time 2 (M = 29.13, SD = 6.59; score range 13-52) were not significantly different (F[1, 196] = .55) and were moderately correlated (r = .43, n = 197, p<.001). Taking into consideration the long retention interval (1 year), these results imply a satisfactory degree of test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [463] "The intraclass correlation coefficients (ICC) for interrater reliability were 0.845 (two-way random absolute agreement) and 0.657 (one-way) for test–retest reliability testing. Cronbach’s alpha-value on the APS-J was 0.645 for the total sample (n = 171) and 0.719 for subjects who scored 0 on the MMSE (n = 58)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [464] "The single component had strong item-total correlations (mean ± s.d. = 3.08 ± 0.70) and an internal consistency of α = 0.88. Test-retest for the 9-item scale was r = 0.52, p = .086 (n = 12)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [465] "Internal Consistency: Using Cronbach's alpha, the alpha coefficient was 0.62. Inter-Rater Reliability: The inter-rater reliability was good (k = 0.77, P = 0.0001, n = 18)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [466] "In a sample of students (N = 412) Hong Kong students of average ability , the reliability estimate for the total scale was .946, ranging from .745-.857 across the subscales. In a sample of students (N = 374) talented in mathematics (Grades 4–9, age 9–15 years), the reliability estimate for the total scale was .937, ranging from .776-.872 across the subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [467] "McDonald’s omegas ranged between 0.42-0.84 and 0.61-0.83 respectively across the dimensions in 2 separate samples (N = 187; N = 261)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [468] "The internal consistency of each of the seven dimensions was estimated using coefficient alpha. The reliabilities exceeded the conventional level of acceptance of .70: Unity with Others = .90; Serving Others = .83; Expressing Full Potential = .83; Developing the inner Self = .72; Reality = .79; Inspiration = .89; and Balancing Tensions = .85. The alpha for the total scale was .92. Test-Retest Reliability: Responses completed 2 months after the responses were initially collected (n = 173, response rate 63%) had a correlation of .80 (p < .01), suggesting stability of the scale over time."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [469] "Internal consistency reliability of the composite factor was tested using Cronbach’s alpha reliability statistic. Cronbach’s alpha for N = 252 was .945 and for N = 202, it was .948."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [470] "All alpha coefficients were above .84, and all test-retest (n=159) correlations were above .78."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [471] "The five-factor scale had a Cronbach’s α of .91; appearance had a Cronbach’s α of .93; emotional response, .84; sporting interests, .82; occupational interests, .81; and interpersonal style, .72. Correlations for test-retest reliability (N = 20 completing the measure on two occasions, 10 days apart) were high for the overall total scale score (r = .97). They were also high for each subscale: appearance, r = .94; emotional response, r = .94; sporting interests, r = .98; occupational interests, r = .88; and interpersonal style, r = .77."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [472] "Internal Consistency: Cronbach's alpha coefficient was α = .79 (p = .01, N= 586) for the internal reliability. Test-Retest Reliability: The test–retest reliability coefficient was rtt= .68 (N= 217, p < .01) for the follow-up span (2–6 months) of the control group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [473] "Internal Consistency: Cronbach's alpha of the 30 items was high (α=0.95, n=686), indicating ‘excellent’ internal consistency for the measure (Cronbach, 1951). Likewise, the Cronbach's alphas for each subscale were also in the ‘excellent’ range (α=0.82–0.91)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [474] "Internal Consistency: The index variables of the partner onerous causal attribution or partner burdening responsibility attribution of negative experience have excellent reliability. Test-Retest Reliability: The post-measurement stability of the FAP short form over a 15-month period is moderately high (rtt = .43 for females and rtt = .42 for males, N = 101, p <.001), suggesting that the FAP scales are change-sensitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [475] "Internal Consistency: Persuasion (alpha = 0.84); Nurturing (alpha = 0.88). Study 1 test-retest reliability: The scale exhibited acceptable measurement properties over Time 1 (n = 76, α = .95, r- = .33) and Time 2 (n = 36, α = .95, r- = .33) according to acknowledged heuristics. Within-subjects test-retest reliability (r = .76, n = 36) was also acceptable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [476] "Test–retest correlations were high (Pearson correlation coefficient = 0.99, n = 56, p = .000). Additionally, there was no statistically significant difference between the means by using dependent sample t-test analysis (t = 0.40, n = 210, p = .69). Cronbach's alpha was high (α = 0.83, n = 210)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [477] "Internal consistency: Reliability was evaluated following ECT treatment 1 (Cronbach α = 0.76, n = 21). Test-retest: Across ECT treatments 2 and 3, test-retest reliability was 0.67 (P < 0.01, n = 21)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [478] "Internal Consistency: The OBQ-9 demonstrated good internal consistency (alpha = .85); corrected item-total correlations ranged from .48 to .64. Subscale alphas were as follows: Perfectionism and Intolerance for Uncertainty, alpha = .83; Responsibility and Threat Overestimation, alpha = .77; Importance of and Control over Thoughts, alpha = .83. Test-Retest Reliability: A significant correlation was found, r(255) = .86, p < .001, and suggested that the scale demonstrated good test–retest reliability. The reproducibility of subscales was also assessed by conducting zero-order Pearson's correlations between each subscale scores from Week 1 and Week 2 of IRT (n=257). Significant correlations were found and suggested that subscales demonstrated good test–retest reliability: Perfectionism and Intolerance for Uncertainty, r(255) = .77, p< .001; Responsibility and Threat Overestimation, r(255) = .83, p<.001; Importance of and Control over Thoughts, r(255) = .83, p<.001."                     
## [479] "Internal Consistency: Alpha for direct connection with the creator subscale was .87, for asceticism subscale was .82, for meditation subscale was .83, for divine love subscale the alpha was .69. The short four items scale had an alpha of .71. Test-Retest Reliability: Test–retest (4 weeks interval between Time 1 and Time 2) on a sample of (N = 34) found to be .72."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [480] "Internal Consistency: Cronbach's alpha coefficients displayed alpha values ranging between 0.841 and 0.926. Test-retest Reliability: A subgroup of participants (n = 17) with stable lymphedema, who were not undergoing active treatment was recruited to assess the test-retest reliability of the LLIS. The results showed intraclass correlation coefficients (ICC) for test-retest reliability ranging from .965 to .990."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [481] "Test-Retest Reliability: The mean interval between two assessments was 12.3 days (SD = 5.5, range 3–31) for the sample a patients (n = 41). The intraclass correlation was .72. The concordance between the needs assessments of the patient-key worker pairs was examined. The agreement on number of unmet needs (ICC) of .61 was substantial, but lower for no needs, met needs and unrated needs (.45, .36 and .25 respectively)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [482] "Internal Consistency: Values for Cronbach’s alpha were .91, .92, .92, and .92 for Sample 1, Sample 2, Sample 3, and the total sample, respectively. Test-Retest Reliability: The test–retest reliability with an interval of two months was .66 (based on N = 133 of Sample 1)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [483] "Inter-scorer reliability: r = .90 (p < .001) for the total score. Internal consistency: alpha = .96 based on all capacity items (n = 56) across three vignettes for patients with dementia and schizophrenia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [484] "Internal Consistency: Using Cronbach's alpha, the internal consistency was high for the total score and avoidance of pain (alpha = .87 and .89, respectively) and medium for cognitive fusion (alpha = .54). Test-Retest Reliability: Assessed by headache sufferers (N = 89), the test-retest correlation was good over a three-month period, was .52 (.54 for Pain Avoidance and .36 for Cognitive Fusion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [485] "Internal Consistency: The Cronbach’s alpha coefficient was 0.963 for the whole scale. High correlation of all items with the overall score was found, ranging from 0.60–0.86, except for item 9 which reached a moderate correlation (0.44). Test-Retest Reliability: With a two-week interval, the ICC for the overall scores reached a value of 0.90 (95% confidence interval = 0.87–0.92; n = 240) and for each item it ranged from 0.77–0.88, except for item 3 (0.60)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [486] "Internal Consistency: Using Cronbach's alpha, the reliability was 0.87. Test-Retest Reliability: The test–retest reliability was high (ICC = 0.75) using data from the patients (n = 199) who were re-administered the Q-LES-Q-SF 2 weeks after the first administration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [487] "Internal consistency: Cronbach's alpha for the InDI-A was 0.93, and item-total correlations ranged from 0.69 to 0.81. The adjusted ICC for test-retest reliability of the InDI-A (n= 150)was 0.72 (95% CI: 0.63, 0.79). ICCs for lifetime InDI-D and InDI-M frequencies were 0.70 (95% CI: 0.62, 0.78) and 0.72 (0.63, 0.79) respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [488] "Internal consistency: Cronbach's alpha, McDonald's omega, and Composite reliability ranged from .74-.85, .75-.85, and .75-.87 respectively, across the factors. Test-retest reliability: All three factors had good test–retest reliability (1 week interval): rappearance = .93, p < .001; rweight = .88, p < .001; rphysical = .78, p < .001, rBUMPSstotal .91, p < .001 (n = 93)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [489] "Internal consistency: the final IMAGEN-DIS scale demonstrated acceptable to good internal consistency (Time 1 α = .78; Time 2 α = .81). Test-retest reliability: In the subsample of participants for whom data were available for both Time 1 and Time 2 (n = 1,585), the IMAGEN-DIS scale also evidenced good temporal stability, with scale scores at Time 1 showing a strong, significant association with scores at Time 2 (r = .61, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [490] "Internal Consistency: The total measure (n = 27 items, alpha = .90), Physical Violence (alpha = .90), Sexual Violence (alpha = .89), and Atypical Violence (alpha = .87) subscales demonstrated good reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [491] "Internal Consistency: McDonald's omega coefficients (McDonald, 1999) displayed an overall ω value of 0.93 for the Supervisor Idea Adoption Scale. For the subscales, omega ω values were 0.90 (Idea Openness), 0.89 (Idea Selection), and 0.92 (Idea Application). Test-retest Reliability: The instrument was administered twice over a 3-month period to a Study 3 subsample (n = 189). Pearson's correlations were calculated between the T1 and T2 scores at the item, subscale, and general scale level. The results showed substantive associations between the first data collection (T1) and data collection 3 months later (T2). T1 and T2 at scale level were respectively .67 for the full supervisor idea adoption scale, .59 for idea openness, .53 for idea selection, and .59 for idea application. T1 and T2 at item level ranged from .43 to .54 for idea openness, .41 to .47 for idea selection, and .50 to .55 for idea application, respectively."                                                              
## [492] "Internal Consistency: The internal consistency of the T-iPBI scale was excellent with a Cronbach’s alpha of .90. The Cronbach’s alpha values of each subscale were also high (alpha = .72–.82). Test-Retest Reliability: Within the test–retest sample (N = 33), mean T-iPBI scores at T1 (Day 0), T2 (Day 7), and T3 (Day 28) were 67.45 (SD = 11.52), 66.85 (SD = 12.27), and 66.76 (SD = 13.98), respectively. The average measure ICC of T-iPBI was .95 with a 95% confidence interval from .90 to .97, F(32, 64) = 18.35, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [493] "Internal consistency: Cronbach’s alpha value for the total measure was .86, and ranged from .75-.85 across the factors. Test-Retest Reliability: Test-retest results (1 month interval) were r = .86, n = 64, p = 0.00."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [494] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.81 for the instrument. If the total score is excluded, then the overall alpha value displayed as 0.61. Inter-rater Reliability: To determine the reliability between evaluators, the Kappa index (k) was calculated in participants (n = 20) evaluated by 2 examiners (one of whom led the session) who would later score the In-Out-Test. Reliability results between evaluators displayed as k = 0.94. Test-retest Reliability: The Interclass correlation (ICC) value for the test-retest reliability was r = 0.57 (p = 0.575)."                                                                                                                                                                                                                                                                                                                                                                                                        
## [495] "Internal Consistency: Alpha internal consistency reliabilities over three administrations (N = 110) are as follows: information, .80; friendship, .81; influence, .64; and entertainment, .80. Test-Retest Reliability: The test–retest reliability for the entire scale is .64 (mean days to retest = 29, SD = 16.8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [496] "Internal Consistency: Alpha reliability for the six-items scale was .823 in current data. Test-Retest Reliability: Test–retest (4 weeks interval between Time 1 and Time 2) on a sample of (N = 34) was .94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [497] "Internal Consistency: Cronbach’s alpha coefficient assessed the internal consistency of the CAPS-T yes/no for 192 completed cases and showed satisfactory reliability (alpha = 0.93 for the nonclinical sample; alphas of 0.93 and 0.89 for the clinical samples). Test-Retest Reliability: Some participants were administered the CAPS-T on two occasions separated by 6 months. Highly significant relationships were found for all rating scores (CAPS-T yes/no: Spearman’s r = 0.81, n = 61, P < 0.001; distress: Spearman’s r = 0.81, n = 61, P < 0.001; intrusiveness: Spearman’s r = 0.83, n = 61, P < 0.001; frequency: Spearman’s r = 0.8, n = 61, P < 0.001)."                                                                                                                                                                                                                                                                                                                                                            
## [498] "Internal consistency: Cronbach's alpha coefficient for the total scale was calculated at 0.901. The Cronbach's alpha values for the factors ranged from 0.698-0.804. Test–retest reliability: The ICC coefficient was calculated for all dimensions. This coefficient was calculated at 0.911 for the whole instrument. Spearman correlation coefficient was used to describe the linear relationship between factors. Results showed that there was a strong and positive correlation between the main factors (r = 0.603.0.923, N = 450, P < 0.0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [499] "Internal Consistency: The internal consistency of the CSVQ was good (alpha = .86). Corrected item-total correlations for each item ranged from .48 to .75. Test-Retest Reliability: The test re-test reliability of the CSVQ was assessed in a small subsample of participants (n = 84) who elected to complete the questionnaires again at a 1-month interval. Test re-test reliability was strong (r(73) = .74), indicating that CSVQ scores remained relatively stable over this time period. Interrater Reliability: Ratings of social vulnerability between parents and teachers were significantly correlated (r(93) = .29, p = .004)."                                                                                                                                                                                                                                                                                                                                                                                         
## [500] "Internal Consistency: The measure showed good reliability (Cronbach's alpha = .825). Test-Retest Reliability: To assess temporal stability of the instrument, a Pearson’s r was calculated for the test-retest (r = 0.693, p < 0.001). This was done with a sub-sample (N = 269) obtained by availability of participants, with an interval of 15–27 days."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [501] "Internal Consistency: In the short form, Guttman’s lambda 2 was 0.89 for parent-report and 0.86 for self-report. Interrater Reliability: There was a moderate intraclass correlation between parent- and self-report T scores in the short form (ICC = 0.65 [95% CI 0.62–0.68], p < .001, n = 1174)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [502] "Internal Consistency: Cronbach's alphas ranged from .77 to .92. Test-Retest Reliability: Test-reliability was good (r = 0.80, N = 84)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [503] "Internal Consistency: For husbands, Cronbach’s alpha for internal stressors (10 items) was .949 and that for external stressors (eight items) was .922. For wives, Cronbach’s alpha for internal stressors (10 items) was .913. Cronbach’s alpha for external stressors was .844 when there were 8 items and .790 when there were 4 items. Test-Retest Reliability: For husbands, there were strong positive correlations for scores at the two time points for acute internal stressors (r = .64, p < .001, n = 225), chronic internal stressors (r = .67, p < .001, n = 225), acute external stressors (r = .58, p < .001, n = 225) and chronic external stressors (r = .59, p < .001, n = 225). There were also strong positive correlations among wives for scores at the two time points on acute internal stressors (r = .63, p < .001, n = 206), chronic internal stressors (r = .72, p < .001, n = 206), acute external stressors (r = 60, p < .001, n = 206) and chronic external stressors (r = 62, p < .001, n = 206)."   
## [504] "Internal Consistency: For the subscales, Cronbach’s alpha coefficients displayed alpha values ranging from 0.67 to 0.94. Values were not increased by the deletion of any items. Test-retest Reliability: The DAPR was administered twice within a one-week interval (n = 154). Results showed Cohen’s kappa values ranging from 0.41 – 0.61 for each subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [505] "Internal Consistency: Reliabilities were calculated from a Q-sort, using samples from 5 organizations. Results were as follows: insurance organization employees (reliability = .96), financial institution employees (.94), information systems organization employees (.93), non-profit organization employees (.88), sales and service unit employees of a major manufacturer (.94). For 2 levels at the insurance organization results were: claims adjusters (.95) and supervisors (.90). For the factors, reliabilities were .96, .96, .93, and .85, respectively. Test-retest Reliability: The OFI-R tested branch operations managers of a financial institution (n = 28) twice within a 9-month period, obtaining a correlation of 0.76. Graduate psychology students were given the OFI-I twice within a 6-month period, obtaining a correlation of 0.70."                                                                                                                                                                 
## [506] "Test-Retest Reliability: Pearson’s correlation showed a significant positive correlation of the two measurements both when calculated over all countries (n=90, r=0.70, p < 0.001) and by country (Austria: n=30, r=0.54, p < 0.01; Italy: n=18, r=0.73, p < 0.001; Sweden: n=20, r=0.69, p < 0.001; UK: n=22, r=0.78, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [507] "Internal Consistency: For the subscales, Cronbach's alpha coefficients displayed alpha values ranging between 0.77 and 0.87 (interest subscales) and between 0.73 and 0.85 (skill subscales), indicative of good reliability. Test-retest Reliability: In order to conduct the test–retest reliability analyses, a subsample from Study 2 (n = 271) took the finalized test (76 items) a second time between 17 days and 50 days (M = 29.0, SD = 7.74) of the first administration. Results showed test–retest reliabilities between .74 and .86, indicating high test–retest reliability between Time 1 and Time 2."                                                                                                                                                                                                                                                                                                                                                                                                                
## [508] "Internal Consistency: The Cronbach's alpha coefficients for the cognitive empathy, affective empathy, sympathy, and the CAMES in the total sample were .82, .80, .82, and .87, respectively. Test-Retest Reliability: With a 2-week interval, the two-way random ICC result indicated good test–retest reliability (N=1,251) for cognitive empathy, ICC = .71, F(1, 1250) = 3.23, p < .05; affective empathy, ICC = .66, F(1, 1250) = 2.49, p < .05; sympathy, ICC = .71, F(1, 1250) = 1.79, p < .05; and the whole CAMES, ICC = .76, F(1, 1250) = 4.76, p < .05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [509] "Internal Consistency: Cronbach's Alpha coefficients displayed alpha values for the full sample (n = 95). At Time 1 (prior to the children being enrolled in the theater arts program), the alpha value was 0.74. At Time 2 (approximately 5 months after completing the program), the alpha value was 0.81. Inter-rater Reliability: Intraclass correlation coefficients (ICC) were used to assess inter-rater reliability in separate observations of the PTAR conducted for each time point in each year (i.e, Time 1 and Time 2 for year 1 and year 2). Two coders rated the same children during the live observational assessments. The ICC results suggested acceptable reliability for all of the scales coded at almost all time points (r = .23 – .93, with the majority of the scales at 0.70 or above, denoting good to excellent reliability. The positive findings also suggested that the PTAR is a tool that observers can be trained to use reliably in a live coding situation."                                    
## [510] "Internal Consistency: The internal consistency of the scores was adequate, with Cronbach's alphas of 0.94 for the FSQ-20 scores and 0.85 for the FSQ-8 scores. Test-Retest Reliability: The test-retest correlation with a two-week interval was strong (n=102): r=0.88 for the FSQ-20 and r=0.83 for the FSQ-8."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [511] "Test-retest Reliability: From a subsample of participants (n = 122) who performed the BLAST twice, Pearson's correlation coefficient (Rho) and the intraclass correlation coefficient - (icc) were used. Results showed that the most reliable measure is the median reaction time (Pearson Rho = 0.93, icc = 0.90); most measures reached 0.6 or higher with both methods, with a maximum reliability for INTENSITY (Rho = 0.8, icc = 0.81) and a minimum reliability for MEAN_DURATION (Rho = 0.49, icc = 0.49). These values correlate with test-retest reliability measures of standard tests of executive functions (Lowe & Rabbitt, 1998)."                                                                                                                                                                                                                                                                                                                                                                                    
## [512] "Internal consistency: Cronbach alpha was .88 for the total score and .90 and .76 respectively, for the Congruence/Experiential Fluidity and Incongruence/Experiential Constriction factors. Test-retest reliability: The ‘pure’ test–retest correlation in the scores from a sophomore group that did not receive training between assessments was .61 (n = 34; p < .001), the same as the overall test–retest value for data from all groups combined, indicating good reliability of the SI-22-F scores. For data from the other groups, with the exception of the two very small subsamples (anxiety and psychiatric clinics), test–retest correlations were large and ranged between .52 and .79, confirming adequate test–retest reliability of the scale scores from student samples and alcohol and breast cancer patients."                                                                                                                                                                                                  
## [513] "Internal Consistency: Cronbach's alphas were 0.86 and 0.83, and corrected item‐total correlations were in the 0.58–0.80 and 0.48–0.73 range in the first and second samples, respectively. For emerging (n = 191) and young adults, Cronbach's alphas were 0.88 and 0.86, and corrected item‐total correlations were in the 0.52–0.81 and 0.53–0.75 range, respectively. For mothers, voluntarily childless and infertile women, Cronbach's alphas were 0.87, 0.90 and 0.81, and corrected item‐total correlations were in the 0.55–0.77, 0.59–0.83 and 0.41–0.74 range, respectively. Test-Retest Reliability: Test–retest reliability estimate over a 4‐week period was acceptable, with an ICC of 0.75%and 95%CI [0.58, 0.85]."                                                                                                                                                                                                                                                                                                   
## [514] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.720. For the sections within the measure, alpha values were 0.836, 0.725 and 0.697 for section 2, section 3 and section 4, respectively. Test–retest Reliability: Using a pilot sample of nurses (n = 50), the measure was administered twice within a 2-week period, with test–retest reliability shown as 0.75 (p < 0.05)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [515] "Internal Consistency: The overall Cronbach’s alpha for DASH-NP was 0.92 (self-reporting subgroup 0.90; interview subgroup 0.94). Test-Retest Reliability: With a mean time interval between 13 ± 10 days, the ICC for DASH-NP was 0.97 (95% CI: 0.94 – 0.98, p < 0.001, n = 31) with a Minimal Detectable Change (MDC) of 11 points out of 100. When the overall group was divided into those who completed the initial assessment by self-reporting and the follow-up by interview (0.96) and when both were by completed by interview (0.94)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [516] "Internal Consistency: Cronbach's alpha coefficients displayed alpha values collected for analysis of the single-item measure (social media exposure). Using a national sample (n = 1152) to assess content- (CSM) and user-oriented social media (USM) risk information exposure pertaining to both a micro dust issue and an earthquake issue, alpha values were as follows: micro dust, CSM = 0.88, USM = 0.82; earthquake, CSM = 0.88, USM = 0.83."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [517] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed alpha values of 0.94 (Internal management) and 0.90 (external influence). The third factor (Notoriety), due to having only 2 items, did not report an alpha value. For the items within the dimensions comprising the S.N.A.P., alpha values displayed as 0.92 (physical security), 0.93 (procedural security), and 0.71 (relational skills). Interrater Reliability: Dual ratings by Responsible Medical Officer (RMO) and Primary Nurse were obtained for the sample (n = 110), to compare RMO and primary nurse ratings for the same patient. A Pearson correlation coefficient score of 0.732 (p < 0.01) was shown. In conducting the same Pearson test separately on the physical, procedural and relational dimensions, significant results at p < 0.01 (two tailed) were shown. However, it was also observed that primary nurses tended to rate higher than RMOs."                                                                            
## [518] "Internal consistency: Across the subcomponents, Cronbach's alpha ranged from 0.537-0.806 and 0.562-0.797 respectively, in Mayangna/Miskito and mTurk samples. Test-retest reliability: The correlations for satisfaction (r = 0.388, n = 70, p < .001) and alternatives (r = 0.449, n = 70, p < .001) across the 2 years were both significant, although the correlation between commitment scores wass only marginally so (r = 0.236, n = 70, p = .049), and investment scores exhibited no significant association (r = 0.046, n = 70, p = .703). It should be noted that although long test–retest intervals are generally preferred in order to eliminate the effects of memory, it would be expected that such a long interval (2 years) with a potentially dynamic measure would result in much lower levels of stability."                                                                                                                                                                                                    
## [519] "Internal Consistency: In a pretest sample (n = 229), the constructs within the model displayed alpha values of 0.82 (functional congruity), 0.92 (self-image congruity), 0.80 (social visibility of hotel consumption), and 0.95 (brand attitude)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [520] "Internal Consistency: The Cronbach’s alpha of the scale was .844. Test-Retest Reliability: With a one-week interval, the intraclass correlation coefficient (ICC) was .76 (p<.001; n=100)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [521] "Internal Consistency: Cronbach's alpha coefficients demonstrated satisfactory reliability for the first-order factors (alpha values ranging from 0.82–0.86 in Study 1; 0.79–0.85 in Study 2. Test-retest Reliability: The 2-month and 3-month test-retest reliability of the SRS, tested in a subgroup of Sample 2 (n = 97), showed Pearson correlations of .68 and .56, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [522] "Internal Consistency: Cronbach's alpha coefficients were calculated for each form of the assessment, with all alpha values displaying at 0.70 and above. Moreover, of the 10 different forms, only three forms had reliability coefficients under 0.80 (i.e., Version B in Grade 1, Grade 2, and Grade 5). Inter-rater Reliability: A teacher unfamiliar with the assessment randomly scored 6% (n = 109) of the assessments. The teacher was given only the scoring guide developed by the researcher, which emulates likely 'real world' scenarios. Results showed overall percent exact agreement as 94%. Percent exact agreement per grade were: Grade 1 (92%), Grade 2 (98%), Grade 3 (94%), Grade 4 (93%), Grade 5 (96%)."                                                                                                                                                                                                                                                                                                     
## [523] "Internal Consistency: Across the studies, Cronbach's alpha coefficients displayed alpha values ranging from 0.78 to 0.93 for the BFTS overall. Test–retest Reliability: The BFTS was administered twice in a 3-week period in a sample of adopted Korean American emerging adults, ages 18-30 years. The second administration occurred after participants had completed a multistage Korean language training protocol. Results for Time 1 (n = 79; average age at adoption = 5.44 months) and Time 2 (n = 66; average age at adoption = 5.25 months) showed significant correlation (r = .85, p < .01)."                                                                                                                                                                                                                                                                                                                                                                                                                           
## [524] "Internal Consistency: Cronbach's alpha of the overall score was at least 0.85, with a reliability of at least 0.80. Split-half Reliability: Cronbach's alpha coefficients displayed alpha values of 0.85 for sample 1 (Psychosomatic in-patients; n = 246), and 0.92 sample 2 (Psychosomatic out-patients; n = 559). Alpha values for the subgroups in each sample were all at least 0.70, and at least 0.80 in half the cases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [525] "Test Reliability: The means and standard deviations for the appraisal ratings in the samples from Study 2 (n = 202) and Study 3 (n = 200) were compared. Results were shown to be similar between the studies regarding CSI Cue Presence: 55.9 (7.04) for Study 2; 56.0 (7.58) for Study 3. Similar results were also seen for CSI Cue Absence: 53.6 (8.81) for Study 2; 56.1 (7.17) for Study 3. Together, the results suggested good reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [526] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.80 for the 5-item GDS, which is comparable to the alpha value of 0.86 for the 15-item GDS. Test-retest Reliability: The 5-item GDS was administered twice by phone by the same research assistant (n = 20), within a 7- to 12-day interval. Results showed the mean difference between test and retest scores as −0.25 (95% CI, −0.73 - 0.22). Test Sensitivity and Specificity: The 5-item GDS had a sensitivity of 0.97, specificity of 0.85, and global diagnostic accuracy of 0.90. For the target population (with a depression prevalence of 46%), the positive predictive value of the 5-item GDS was 0.85, and the negative predictive value was 0.97."                                                                                                                                                                                                                                                                            
## [527] "Internal Consistency: For the categories of variables, Cronbach's alpha coefficients displayed alpha values ranging from 0.74 (Emotions of music; Emotions of narration) and 0.93 (Image of target group). Inter-rater Reliability: The inter-coder reliability, measured by Cronbach's alpha, ranged from .37 to .70. Disagreements were settled through discussion, and the subcategories' operational definitions were refined, resulting in an updated codebook. A second pilot test followed (N = 30), following further coder training, improved inter-coder reliability to an average of .80."                                                                                                                                                                                                                                                                                                                                                                                                                                
## [528] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed an alpha values ranging from 0.88 to 0.91 (Sample 1) and from 0.88 to 0.90 for Sample 2. Test-retest Reliability: The instrument was given twice in a 6 month period to sample 2, participants who had not changed jobs during this time (n = 48). Results showed all stability coefficients to be highly significant (Impulse control: rtt = .57; Overcoming internal resistances: rtt = .68; Resisting distractions: rtt = .59)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [529] "Internal Consistency: The Cronbach's alpha was 0.924. Test-Retest Reliability: Test–retest analysis revealed no significant differences when the participants of the study were evaluated by the EILP-G questionnaire two times within 1 week (ICC=0.859–0.987). This was also true for the reliability analysis of the individual test items from 1 to 10 (ICC=0.842–0.976; p=0.001). Inter-Tester Reliability: The intertester estimation demonstrates excellent results (n=8; ICC=0.820, p=0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [530] "Test–retest Reliability: The PAM-MH was given twice to the control group (n = 18) within a 14-week interval. The results showed good test–retest reliability (Pearson's r = 0.74)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [531] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.87 for the CKAQ-R. Test-retest Reliability: The scores from a group of students (n = 101) in grades 1, 3, and 6 who took the CKAQ-R twice in a one-month period were compared. Results showed a correlation of 0.88 between the two test periods. Average inter-item correlations of the 24-item revised scale was r = .201."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [532] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.92 for the GRiPS. Test–retest Reliability: The GRiPS was administered 3 months after the first survey, as a follow‐up assessment in Study 2 (n = 115). Results showed a 3‐month test–retest reliability score of r = 0.80."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [533] "Test-retest reliability: A non-clinical subsample filled in SCORE-15 on two occasions one to two weeks apart. Correlations between measurement 1 and 2 were .81 (95% CI .66‒.91) for the total scale, .56 (95% CI .20‒.81) for strengths, .80 (95% CI .57‒.93) for difficulties and .69 (95% CI .47–.87) for communication (p < .001 for all comparisons). Internal consistency: Cronbach’s alpha for SCORE-15 for the adults in families with clinical contact (n = 204 without imputation) was .82 for difficulties, .73 for strengths and .69 for communication, indicating acceptable internal reliability. Cronbach’s alpha was also calculated based on family mean values for clinical families (n = 151 without imputation), resulting in α = .82, .75 and .71, respectively. Internal consistency for healthy families (n = 67, family mean average without imputation) was not quite adequate, with α = .57 for difficulties, .68 for strengths and .53 for communication."                                                
## [534] "Internal Consistency: For the child-report, Cronbach's alpha coefficients displayed an overall alpha value of 0.81; for the parent-report, the overall alpha value was 0.82. Test–retest Reliability: Using the Intraclass Correlation Coefficient (ICC) in the German sample (n = 97), the APLES showed satisfactory retest reliability (ICC ≥ 0.70) in all scales in the child- and parent-report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [535] "Inter-Rater Reliability: Twenty five per cent of the sample (n = 12) were randomly selected and coded by the second author for the purposes of inter-rater reliability analysis. The percentage of agreement of depth of awareness codes (80.7%), duration of awareness codes (79.9%), and all 12 codes (66.3%) was substantial. There was a substantial amount of agreement (Landis & Koch, 1977) between coders when judging the depth of the D-DACS hierarchy a participant's awareness was directed (κ = .71) and when judging the duration of awareness (κ = .64). Not all 12 codes were calculated, due to the relative number of observations to the number of possible codes which an independent university statistician advised would be unreliable to calculate and report."                                                                                                                                                                                                                                              
## [536] "Internal Consistency: Cronbach's alpha ranged from .82-.95 across the factors. Test-retest Reliability: Test-retest reliability of the factors was examined through Pearson correlations among them in the test and the retest, using a subsample of licensed psychologists (n = 787) who are members of the Spanish Psychological Association. Correlations ranged from .50-.79 across the factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [537] "Internal Consistency: Using the 14 items and the entire sample (n = 694), Cronbach's alpha coefficients displayed an overall alpha value of 0.912 for the CV‐PAM. For the factors, Cronbach's alpha coefficients displayed alpha values of 0.778 (Believes an Active Role is Important), 0.882 (Confidence and Knowledge to Take Action), and 0.828 (Taking Action)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [538] "Internal consistency: α = .96. Test-retest reliability: Temporal stability was shown by the correlation between the scores before the treatment and after 1 month (r = .85, SE = .06, p < .001, n = 29)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [539] "Internal Consistency: Cronbach's alpha coefficients showed the SOMS with an overall alpha value of 0.85. Test-retest Reliability: Applied to 10% of the sample ( n= 60), the SOMS was administered twice in a 2-week period. Results showed the means of the two tests to be extremely close to each other, with the t value at 0.428 and the P value at 0.068. the means of tests that had a 2‐week period gap were extremely close to each other on the scale. The t value of th epaired double test was 0.428, and itsPvalue was 0.068. No meandifference was found between the means of the first and the last testbetween the two dependent groups"                                                                                                                                                                                                                                                                                                                                                                             
## [540] "Test–retest Reliability: A subscample of participants from Experiment 2 (n = 36) were retested between 2 months, 0 days, to 3 months, 25 days, following the initial testing (median 2 months, 9 days; mean 2 months, 13 days). The results (Experiment 3) which compared the difference in scores between test and retest, as well as the t and P values of paired-samples t-tests, showed that all differences were in the direction representing improved performance. The maximum improvement in performance on retest was 0.7 dB on the different voices 0 degrees condition. Minimum change was 0.1 dB on the spatial advantage and total advantage conditions. There were no significant differences in performance between test and retest on any LiSN-S measure (p ranged from .080 to .862)."                                                                                                                                                                                                                              
## [541] "Internal Consistency: After removing 3 items from the original PMQ (Adams et al., 2004) due to having the lowest correlation coefficients, Cronbach's alpha coefficients were re-calculated. Results showed an overall alpha value of 0.703, suggesting that the PMQ's internal consistency continued to be good; with all 26 items, the alpha value was 0.73. Test-retest Reliability: The revised PMQ used Pearson's correlation coefficients with a sample of patients (n = 18) to recalculate test-retest reliability. The resulting coefficient of r = 0.77 was indicative of adequate test–retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                
## [542] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.92 for the 15 items comprising the problems list within the PSIT. For the subscales, alpha values displayed as 0.91 (Negative affect), 0.77 (Anxiety and PTSS), and 0.79 (Social and self-image). Test-retest Reliability: The PSIT was completed twice within a 30-day period (n = 128). The Intraclass Correlation Coefficient (ICC) displayed results of 0.86 (95% confidence interval (CI) = 0.81–0.90), indicative of good test-retest reliability. Test Sensitivity and Specificity: The following cut-off values represent maximum sensitivity and specificity, respectively: 7 on subscale 1 (Negative affect: 89.6% and 83.4%), 3 on subscale 2 (Anxiety and PTSS: 94.4% and 90.3%), and 4 on subscale 3 (Social and self-image: 85.7% and 90.7%)."                                                                                                                                                                               
## [543] "Inter-rater reliability: The LOF Mobility Scale had good inter-rater reliability for assessment of LOF prior to hospitalization (N = 131, kappa = 0.66, p < .001) and at the time of CICU admission (N = 131, kappa = 0.71, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [544] "Internal Consistency: Cronbach's alpha coefficients displayed overall alpha values of 0.97 (Time 1) and 0.96 (Time 2) for the MEWS. Test-retest Reliability: The MEWS was administered at baseline (Time 1) to 79 cases and 29 controls. Two separate follow-up assessments of the ADHD cases occurred at 3 months (Time 2) and 6 months (Time 3) after baseline. The mean interval between Time 1 and Time 3 was 6.4 months (SD = 0.58 months). Pearson's correlation showed that at Time 2 and Time 3, (ADHD: n = 79; n = 55), the MEWS scores demonstrated satisfactory retest reliability (r = .63, 95% CI = [.42, .80], p < .0001). Test Sensitivity and Specificity: Results of ROC analysis, including the area under the curve (AUC), indicated excellent discriminant capacity. A score of 15 on the MEWS provides the optimal balance of sensitivity (.90) and specificity (.90), suggesting a cut-off for disorder threshold."                                                                                            
## [545] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed alpha values of 0.82, 0.86, 0.84, and 0.87 for Malevolence, Benevolence, Resistance, and Engagement, respectively. Test-retest Reliability: A subsample of participants (n = 15) completed the BAVQ twice in a one-week period. Results showed high intraclass correlations, ranging from 0.85 to 0.93, indicating that the characteristics being measured were well defined and stable over the short term. Test Sensitivity: Score distribution showed that malevolence was distributed bimodally, peaking at scores of 4, 5 and 6; benevolence scores peaked at 0, 1 and 2 (i.e., no or low benevolence), and were evenly spread thereafter. So, the provisional cut-off point for malevolence was a score of 4 or more, and 3 or more for benevolence. Results showed that all those known to believe their voices to be 'benevolent', and 90% of those believing their voices to be 'malevolent', were correctly classified by the BAVQ."        
## [546] "Internal Consistency: For the constructs, Cronbach's alpha coefficients displayed alpha values of 0.94 (Intention), 0.90 (Behavioral beliefs; Control beliefs), 0.89 (Attitude), and 0.71 (Perceived behavioral control). Test-retest Reliability: The model's items were administered twice within a 2-week interval to a subsample (n = 148) of participants, showing a test-retest reliability value of 0.79."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [547] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed alpha values of 0.87 (Quality of fantasy), 0.84 (Imaginary relatives), and 0.90 (Imaginary playmate). Test-retest Reliability: Using a convenience subsample (N = 76; males = 38, females = 38), the FFQ was administered twice over a 2-week period (15 days), to assess the factorial structure. The correlation computed between the factor scores at W1 (Wave 1) and at W2 (Wave 2), indicated good reliability of the latent structure: Quality of fantasy (r = 0.73), Imaginary relatives (r = 0.76), Imaginary playmate (r = 0.76). Moreover, the three factorial dimensions appear to show significant consistency between W1 and W2."                                                                                                                                                                                                                                                                                                        
## [548] "Internal Consistency: Using a sample tested in a quantitative pilot study (N=36; ages 18–43 years; 18 women, 18 men), Cronbach's alpha coefficients displayed an alpha value of 0.83."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [549] "Test-retest Reliability: In a pilot study (n = 27), the OMPSQ was administered twice in a 1 week interval. Results demonstrated an acceptable Pearson product moment on a total score of 0.83 (range = 0.63 - 0.97)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [550] "Test-Retest Reliability: There was a strong correlation between the FoMOsf at Time 1 and the FoMOsf at Time 2 (r = .717, p < .001). On average, participants (n = 43) completed the FoMOsf twice within 53.7 days, from Time 1 to Time 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [551] "Internal Consistency: The Y-BOCS-II demonstrated high internal consistency (alpha = 0.90), as did the obsessions and compulsions subscales (alpha = 0.87 and 0.88, respectively). The internal consistency of the Y-BOCS-II Symptom Checklist was also high (alpha = 0.88). Test-Retest Reliability: The test-retest reliability of the Y-BOCS-II was calculated in a subset of the sample (n=25) who completed a second rating 1 week after the initial evaluation, and was found adequate (ICC = 0.63)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [552] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.98 for the SBQ, demonstrating high internal consistency. Pearson's Product Moment correlations for all SBQ items were found to be significant, showing high internal reliability. Test–retest Reliability: The SBQ tested a sub-sample (n = 30) twice in a 4-week period. The test-retest displayed significant positive correlations between the first and second administrations (r = .93, p < .001), indicating high reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [553] "Internal Consistency: The Kuder-Richardson Coefficient showed good internal consistency (0.887) for the one-factor model. Test-retest Reliability: The retests were carried out 10–15 days after the initial tests with a subsample of individuals (n = 130). The Intraclass-Correlation Coefficient of 0.926 between the test and the retest demonstrated excellent temporal stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [554] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.70, indicative of adequate internal consistency. Interrater Reliability: Using a sample of participants recruited from the community (n = 10), the MT scores were compared by 2 independent raters for all MT items. The scores for each interviewer were identical, resulting in intraclass correlations of 1 for all test items. Test Sensitivity and Specificity: The area under the curve (AUC) was .78 for the sample (n = 168), with analysis indicating that the optimal criterion score was between 5.5 and 6.5. Using an MT score of 6, a sensitivity of .80 and specificity of .65 were obtained for classifying participants as impaired on the basis of their MoCA score. On the basis of a total score of 6 or less, 25% of the community sample and 23% of the hospital sample were classified as impaired on the MT."                                                                                                       
## [555] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.89 for the full PScS. For the subscales, Cronbach's alpha coefficients displayed alpha values of 0.86 (Psychological resources scarcity), 0.85 (Material scarcity), and 0.84 (Time scarcity). Test-retest Reliability: The PScS was administered twice in a 2-month period (n = 146; between 8–10 weeks), to assess temporal stability. Results showed the coefficients of stability for the full PScS (r = .84, p < .01), time scarcity subscale (r = .81, p < .01), psychological resources scarcity subscale (r = .78, p < .01), and material scarcity subscale (r = .71, p < .01) met the traditional minimum standard of reliability (≥.70) as described by Terwee et al. (2007) in their evaluation of survey measurement properties. The results suggested that perceived scarcity scores are overall reasonably stable over time."                                                                                                 
## [556] "Internal Consistency: Cronbach's alpha coefficients for the entire sample (n = 128) was 0.793; for the patients (n = 100), it was 0.753. The results showed that the NAT items adequately measure a single unidimensional construct. Inter-rater Reliability: Across the three items of the NAT, median weighted kappa for accomplishment score was .98 (ranging between .95–1.0) For error agreement, kappas were not used because of unequal marginals (as most participants made no errors on most items). Percent agreement was calculated as the number of participants for whom both raters agreed on the presence or absence of an error; the median agreement was 98% (ranging between 70–100%). The median percent agreement on the number of times a particular error occurred was 95% (ranging between 70–100%)."                                                                                                                                                                                                         
## [557] "Test Sensitivity: In testing the sample (n = 29), results indicated that recognition memory measures on the LPT were insensitive to cognitive impairments in these children; all students achieved scores of 80% or higher on these tasks, as children with SLDs in reading or writing were easily able to pass the recognition subtests of the LPT; more variability in performance was found on the harder subtests. The difference between performance on easy and hard subtests was related to greater difficulties with working memory. The authors noted that good effort tests should be as insensitive as possible to actual cognitive impairments. Moreover, they noted that the LPT showed promise as a measure of both invalid responding, while also being sensitive to genuine learning impairments."                                                                                                                                                                                                                   
## [558] "Internal Consistency: Cronbach's α was .97 (p < .01) for the SFSAD, and for each subscale ranged from .94 to .98. Test-Retest Reliability: Pearson's correlation coefficient of the test–retest reliability (n = 30) for the SFSAD total score was .99 (p < .01), and for each subscale was also high (ranging from .97 to .99)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [559] "Internal Consistency: For the illness self-concept, Cronbach's alpha coefficients displayed an overall alpha value of 0.69 for the total sample (n = 26)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [560] "Internal Consistency: Cronbach's alpha coefficients displayed level alpha values for each of the four data sets, as well as for the whole sample (n = 525). Alpha values ranged from 0.94 to 0.97 across the four countries, in accord with results reported for the original instrument (CDS; Dijkstra, Buist, & Dassen, 1996). For the English version of the CDS, used to assess the total Canadian sample (n = 116), the overall alpha value was 0.94. Inter-rater Reliability: For the Canadian subsample assessed (n = 55), the English version of the CDS displayed Kappa values ranging between 0.27 and 0.80, which indicated fair to substantial inter-rater reliability. For the Canadian data set, the inter-rater reliability had a lower number of participants (n = 55) due to data being available from patients of only two nursing homes."                                                                                                                                                                         
## [561] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value 0.91 for the patient for self-evaluations and 0.90 for informant evaluations. For the subscales, alpha values were 0.88 and 0.85 for self and informants (Prospective memory), and 0.81 for self and 0.81 for informant's reports (Retrospective memory). Test-retest Reliability: The VATAmem was tested twice between 24 hrs and 3 days (n = 15). Pearson correlations showed a high significant coefficient between test and retest (r = .92, p < 0.001, d = 4.70). Test Sensitivity: The VATAmem identified 15 patients as being unaware of their memory deficits while the PRMQ identified 28 patients (chi-square = 12.68, p = .001, φ = 0.50), suggesting that the VATAmem diagnostic criteria may be more conservative, but also less prone to false positives than the PRMQ. Also, 14 of 15 patients (93.3%) identified by the VATAmem as unaware of their deficits, were also classified by the PRMQ."                                
## [562] "Test-Retest Reliability: With a one-week interval, most questions (n = 16; 73%) had acceptable test-retest correlations, most questions (n = 17; 77%) had a medium-high correlation for resident-representative pairs, and most (n = 19; 86%) had low levels of missing data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [563] "Internal Consistency: The internal consistency of the PF was assessed using Coefficient H = 0.91. Test-Rest Reliability: With a 3-month interval, The mean PF total scale score at Time 1 and 2 was 9.09 (SD = 3.70) and 9.34 (SD = 3.38), respectively, and test–retest reliability was acceptable, r(N = 200) = 0.73, p < 0.001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [564] "Internal Consistency: The internal consistency of the FoS items were assessed using Coefficient H, which is considered a more appropriate measure of internal consistency than Cronbach's alpha as it takes into account the unequal factor loadings and measurement errors associated with one-factor congeneric models (Hancock & Mueller, 2006). The internal consistency for the final five-item FoS scale as measured by Coefficient H was 0.93. Test-Retest Reliability: The mean FoS total scale score at Time 1 and 2 was 14.19 (SD = 5.17) and 15.58 (SD = 5.25), respectively, and the test–retest reliability was also acceptable, r(N= 200) = 0.76, p < 0.001."                                                                                                                                                                                                                                                                                                                                                          
## [565] "Inter-rater Reliability: OTDRS trained in providing the TSNT were used to determine inter-rater reliability. Results showed that in a randomly selected subset of the sample (n = 40), the naming portion had higher reliability (k = .80; 95% CI [.69, .91]) than the function portion (k = .54; 95% CI [.379, .700]); from this, the authors chose to use traffic sign naming as the measure for the study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [566] "Internal Consistency: Cronbach's coefficients displayed an overall alpha value of 0.82 for the SCAB. For the factors, alpha values ranged from 0.69 (Creative Cognitive Style) to 0.82 (Creative Engagement). Test-retest Reliability: A subsample (n = 36) was administered the SCAB twice in a one-month interval. The results showed the following test-retest reliability coefficients: .80 (total scale), .83 (Creative Engagement), .86 (Creative Cognitive Style), .90 (Spontaneity), .78 (Tolerance), and .70 (Fantasy). These results suggest that the SCAB is measuring a stable trait, and is not evoking a social desirability response set."                                                                                                                                                                                                                                                                                                                                                                            
## [567] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.85 for the IPSCC Scale. Test–retest Reliability: The IPSCC was administered twice in a 2-week interval to a sample of individuals (n = 27) who were not part of the original sample. The results indicated good reliability (r = .98, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [568] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.96 for the checklist. Inter-rater Reliability: Using a second evaluator to assess a random sample of service plans (n = 101), a correlation of .80 was observed for inter-rater reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [569] "Internal Consistency: Cronbach’s alpha coefficients showed satisfactory internal consistency: “Habit and Negative Affect Reduction” (N = 18 items), alpha = .94, and “Pleasure and Stimulation” (N = 7 items), alpha = .79."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [570] "Test-retest Reliability: A sample of middle-aged men and women (n = 94; ages 21 to 78 years) was used to test the CSRQ. A separate test–retest of each item was conducted, and an 8-day interval and weighted kappa values were calculated. Moreover, the test–retest was carried out by the same researchers at all three data collection sites, to minimize the risk of bias by differences in instructions given. The results showed that 41% of the items had substantial to almost perfect agreement (kappa values ranging from .65-.97); the remaining items showed moderate agreement (kappa values ranging from .41-.60). Collectively, the results support good test-retest reliability."                                                                                                                                                                                                                                                                                                                                   
## [571] "Internal consistency: Cronbach’s alphas for the ten subscales ranged from .78 to .88. Test-retest reliability: Two-month test–retest reliability for a subsample (n = 100) ranged from .44 to .73. Only one of the scales (Managing Mood) had unacceptable test–retest reliability (<.50)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [572] "Internal Consistency: Cronbach's alpha coefficients from the LEAU sample (n = 1,848) displayed an alpha value of 0.88 for the TRD items, indicative of good high internal consistency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [573] "Test-retest Reliability: Partial correlations between prenatal and postnatal BCEs scores, controlling for number of days between prenatal and postnatal administration (M= 194.77 days, SD= 58.00, range = 91–311), indicated excellent test-retest stability (r = .80, p < .01). Fisher's \"r to z\" tests indicated comparable (non-significant) test-retest stability for English-speaking (r = .80, p < .01, n =59) and Spanish speaking women (r =.78, p < .01, n = 18). Difference score analyses indicated that 44% (n= 34) of the follow-up sample reported the exact same total prenatal and postnatal BCEs score, and 83% (n= 64) of the follow-up sample reported postnatal BCEs scores within one point of their prenatal BCEs scores."                                                                                                                                                                                                                                                                                  
## [574] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.85 for the SEQ-SS. An alpha value of 0.81 was displayed for both subscales. Test-retest Reliability: A subsample (n = 19) of children (average age = 11) filled out the SEQ-SS on 2 separate occasions, approximately 1 week apart (range = 6 to 11 days). Intraclass correlations demonstrated good stability, with an overall ICC value of .90 for the SEQ-SS. Test-retest correlations for the Academic/Social Stress and Separation/Discipline Stress subscales were .79 and .91, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [575] "Test–retest Reliability: During a 5-week period, teams of students (N = 123) exchanging messages with each other via an online forum filled in a short questionnaire containing the SISI, to measure identification with the small group. The results showed a significant drop in identification over time, possibly reflecting weekly changes in circumstances within these groups. Despite the drop off, correlations of the SISI over weeks were shown to be high and significant (average r = .59). Average correlations from 1 week to the next week were r = .67. The average after a 2-week interval was r = .57, and after a 3-week interval, it was r = .53. Overall, test–retest reliability was seen by the authors to be adequate, especially given the considerable changes in identification over time."                                                                                                                                                                                                              
## [576] "Internal Consistency: The Cronbach's alpha coefficients ranged from .84-.89. Test-Retest Reliability: The second phase of the study conducted two tests to evaluate stability over time of the shared cultural characteristics scale items that were retained after Phase 1. A sample of employees from Organization B (n = 185) and Organization C (n = 170) received the first questionnaire in March and the follow-up questionnaire in June. The first test yielded reliability coefficients of 0.82 for affiliation, 0.88 for community embeddedness, 0.92 for respecting elders, 0.89 for harmony, 0.85 for faith, 0.87 for brotherhood, 0.85 for morality, 0.91 for future orientation and 0.95 for conformity. The second test showed reliability coefficients of 0.85 for affiliation, 0.89 for community embeddedness, 0.90 for respecting elders, 0.87 for harmony, 0.83 for faith, 0.85 for brotherhood, 0.80 for morality, 0.87 for future orientation and 0.90 for conformity."                                        
## [577] "Internal Consistency: The final 19-item scale had a Cronbach of 0.85. Internal a consistency for all subscales, with the exception of subscale 5 (negative affect: 0.59), was good, with Cronbach a ranging from 0.81 to 0.82. Test-Retest Reliability: With a two-week interval, the ICC for all items (n = 53) was 0.85 (F (76,76) 12.32, p<.001, 95% CI: 0.77 to 0.90.), indicating ‘good to excellent’ reliability (Koo & Li, 2016). The ICC for the final 19-item measure was 0.82 (F = (76, 76) 10, p<.001, 95% CI: 0.73 to 0.88), indicating ‘moderate to good’ reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [578] "Internal Consistency: For each of the TIV dimensions, Cronbach's alpha coefficients displayed alpha values ranging from 0.85 to 0.90. Test-retest Reliability: The TIV tested a subsample of participants (n = 102) twice within a 3-week period. Results showed that the TIV scores at Time 1 and Time 2 were highly correlated (r=0.77, p < .001), establishing the scale's test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [579] "Internal consistency: Cronbach’s alpha of the PRE subscale was 0.652 and Cronbach’s alpha of the UT subscale was 0.723. Test–retest reliability: For the modified 2- MEV scale, the correlation coefficients of PRE and UT were 0.65 (N = 105, p = 8.19E-14) and 0.70 (N = 105, p < 2.20E-16), respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [580] "Internal Consistency: domains. The authors tested for internal consistency in the barriers and facilitators items by using Spearman-Brown split-half reliability for 2-item domains (n = 11), with a criterion for adequate reliability of coefficient > 0.80, and Cronbach's alpha for 3-item domains (n = 1) with adequate reliability coefficients > 0.70. As no domains had adequate internal consistency, the TDF questions were mapped onto the COM-B system to examine the barriers and facilitators to CPT implementation. A Cronbach's alpha was calculated for each COM-B component (Capability: α = 0.77; Opportunity: α = 0.60; Motivation: α = 0.75)."                                                                                                                                                                                                                                                                                                                                                                  
## [581] "Internal Consistency: The Cronbach's alpha was .91. Internal consistency for individual groups was as follows: non-students .94, STEM students .92, HS students .92, women .94, and men .93. Test-Retest Reliability: Test-retest reliability at 6–8 weeks was r = .85, p < .001, N = 71."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [582] "Internal consistency: Cronbach's alpha was 0.71. Test‐retest reliability: Good test‐retest reliability of the BM DJGLS was demonstrated by a strong positive correlation (r = 0.93, n = 81, P < 0.05) between the initial BM DJGLS responses with those gathered after approximately 2 weeks, indicating stability of the measure over a short period of time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [583] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed alpha values of 0.89 (Guilt) and 0.93 (Shame). Test-retest Reliability: The GSQ-APMI was administered twice to a subsample (n = 10) within a 6-week interval. High test-retest correlations were found for Guilt (r = 0.69, p < 0.001) and Shame (r = 0.71, p < 0.05) (Dancey & Reidy, 2017)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [584] "Internal Consistency: Cronbach's alpha coefficients for the NLRN sample (n = 129) ranged from 0.78-0.80; for the corresponding preceptor sample (n = 129), alpha values ranged along similar lines (0.78-0.80)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [585] "Internal Consistency: Reliability was assessed via McDonald's Omega (ω) coefficients (Geldhof et al., 2014). For the sample (n = 110), within- and between-person reliability displayed ω results as 0.84 and 0.96, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [586] "Internal Consistency: Reliability was assessed via McDonald's Omega (ω) coefficients (Geldhof et al., 2014). The results showed a ω value of .78 for negative affect and .79 for positive affect on the within-person level; for the between-person level, the results were .95 and .87, respectively. Reliability (ω) on the within and the between-person level for the sample (n = 84) was .93 and .98, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [587] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.85 for the DES-SF, using the original dataset. Using the data from the new sample (n = 229) resulted in an overall alpha value of 0.84."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [588] "Internal Consistency: Cronbach's alpha coefficients displayed an alpha value of 0.87 in the National sample, and 0.86 in the North Carolina HMO sample. it was 0.86. Test-retest Reliability; Using a random subsample from the North Carolina HMO sample (n = 306), results showed an alpha value of 0.71 for test-retest reliability within a 2-month period between test administrations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [589] "Internal Consistency: Cronbach's alpha coefficients displayed an alpha value of 0.84 for the observed total score of the PPFI. Test–retest Reliability. The temporal stability of the PPFI was examined in 2 samples: adult professionals from a multinational corporation (n = 276; Sample C), and a community sample of adults from the U. S. Mid-Atlantic region (n = 303; Sample D). Pearson correlation coefficients (r) were computed between each of the 3 PPFI subscales, as well as the 15-item total score from baseline (Time 1) to 4-month follow-up (Time 2). Test–retest reliability was r = .55 for Avoidance, r = .57 for Acceptance, r = .61 for Harnessing, and r = .59 for total PF scores (ps < .001)."                                                                                                                                                                                                                                                                                                          
## [590] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.812 for the ARMS. Split-half Reliability: Adequate split half reliability was displayed for the ARMS (0.829). Test-retest Reliability: The ARMS was administered twice within a 3-week period to a subsample (n = 67) of participants. The results showed a test-retest reliability of 0.902, indicating high consistency over time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [591] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.95 for the ETI. Domain alpha values were: 0.86 (physical abuse domain), 0.92 (emotional abuse domain), 0.92 (sexual abuse domain), and 0.74 (general trauma domain). Inter-rater Reliability: The intraclass correlation coefficient (ICC) measured agreement between 2 raters who were blind to the other’s ratings. High levels of agreement were shown: physical (ICC = .97), emotional (ICC = .97), sexual abuse (ICC = .99), and general trauma (ICC = .94). Test-retest Reliability: Pearson correlations assessed test and retesting done in a group of participants (n = 10) with or without PTSD, by 2 different raters within a 2–4 week period; both raters were blind to each other’s assessments. Domain results showed high levels of agreement between test and retest: physical abuse (r = .97), emotional abuse (r = .98), and sexual abuse (r = .99), with lower levels of agreement for general trauma (r = .51)."      
## [592] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.85 for the VPD. Test-retest Reliability: The VPD was completed by a subsample (n = 25) twice in a 1-week interval, reporting a retest reliability of r = 0.82."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [593] "Internal Consistency: Cronbach's Alpha coefficients of all dimensions' scores showed good reliability, with alpha values ranging from 0.590 to 0.840. Test-retest Reliability: The instrument was administered twice in a 2-week period to a subsample of teachers (n = 90). The results showed coefficients of stability ranging from 0.608 to 0.741, indicative of acceptable test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [594] "Internal Consistency: Cronbach's alpha reliability was acceptable for the total FIES:CI scale (r = .770–.785). Reliability results for the factors showed alpha values of were 0.798 (NI) and 0.847 (PI). Test–Retest Reliability: The FIES:CI was examined for stability over a 2-week interval (n = 134 members of 38 families). Test–retest scores were calculated on each of the 9 items and the total score while accounting for the intra-class (family members within each family code) correlation. The T1 to T2 correlation scores ranged from r = +.75 for Financial Concerns to r = +.90 for Caregiving Strategies, which were indicative of excellent stability."                                                                                                                                                                                                                                                                                                                                                        
## [595] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.91 for the SNI. Test-retest Reliability: A subset (n = 29) of the larger normative sample completed the SNI twice within approximately five weeks after the original administration. The results apart indicated adequate to excellent reliability scores, ICC = .79, with a 95% confidence interval of .547–.903. Also, the average SNI scores at initial testing (M = 113.8; SD = 17.5) did not differ from those at retest (M = 117.4; SD = 17.5), t(28) = 1.42, p = .167, d = .21."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [596] "Internal Consistency: Omega coefficients for SPQ-B total in the psychiatric group (n = 50) and the non-psychiatric group (n = 202) were good (0.88 and 0.80). Omega coefficients for the SPQ-B factors were lower, albeit higher for the psychiatric group than for the controls (perceptual cognitive (0.81; 0.64), interpersonal (0.78; 0.67) and disorganized (0.73; 0.59). Test-Retest Reliability: The test-retest correlations for SPQ-B was 0.62 (p<.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [597] "Test-Retest Reliability: Test-retest reliability (2-week interval) of the combined ranked score (n = 50) from the Adolescent Peer Relations Instrument (APRI; Parada, 2000) and SPPI was indicated by a moderately strong correlation when answered in response to self-report of verbal/physical victimization rs =.773 (p < .001), and a strong correlation in response to social victimization rs =.841 (p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [598] "Internal Consistency: Internal Consistency of the scale was indicated by a ω coefficient of .81 (95% CI, .78-.84) for the Reflectivity scale, and .86 (95% CI, .84-.88) for the Negative Expectation scale. Test-Retest Reliability: Temporal stability was assessed in a subgroup (N = 84) of the sample. This subgroup answered the DPQ-SV twice, with approximately 1 month between sessions. A correlation coefficient (r = .73 CI [.61, .81]; p < .001) was found for the association between the Reflectivity scores at Time-1 (M= 25.10, SD = 6.00, Range 10–35) and at Time-2 (M = 24.71, SD = 5.52, Range 12– 34). A correlation coefficient (r = .82 CI [.74, .88]; p < .001) was found for the association between the Negative Expectation scores at Time-1 (M = 26.26, SD = 8.39, Range 8–42) and at Time-2 (M= 27.35, SD = 8.35, Range 11–42)."                                                                                                                                                                        
## [599] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.80 for the measure. Test-retest Reliability: The measure was administered to a subsample (n = 40) 4 months after the first testing. A Pearson product moment correlation coefficient of 0.74 was found between the original and retest scores, indicating satisfactory test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [600] "Internal Consistency: Coefficient alphas for the seven scales on the CPRS-R ranged from .75 to .94 for males and .75 to .93 for females. Test-Retest Reliability: Using Pearson product-moment correlations (n = 50), the CPRS-R scales had the following 6-week test-retest correlations: .60 (p < .05) for Oppositional, .78 (p < .05) for Cognitive Problems, .71 (p < .05) for Hyperactivity-Impulsivity, .42 (p < .05) for Anxious/Shy, .60 (p < .05) for Perfectionism, .13 (p = n.s.) for Social Problems, and .55 (p < .05) for Psychosomatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [601] "Internal Consistency: Results indicated acceptable internal consistency estimates for all four subscales: Trait Anger, α = .84; Anger Expression, α = .69, Anger In, α = .71; and Anger Control, α = .79. Test-retest Reliability: The AESC subscales were re-administered three times to a subset of the sample that included children on treatment for cancer (n = 130). While the results showed the Trait Anger subscale to have the highest test–retest stability across both the 6- and 12-month intervals, all the subscales showed moderate and statistically significant consistency over time."                                                                                                                                                                                                                                                                                                                                                                                                                            
## [602] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.94 for the CGSES. For the subscales, alpha values were 0.89 (College attendance) and 0.90 (College persistence). Test-retest Reliability: A subsample of participants (n = 18) completed the CGSES twice in a 3-week period. Alpha values of the test-retest bivariate analysis was 0.88, indicative of a high consistency level over time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [603] "Internal Consistency The Cronbach's alpha coefficient for both samples was 0.93. Test-Retest Reliability: With an interval of one week, the test–re-test reliability [n = 140, ICC = 0.90, 95% confidence interval (CI) = 0.85–0.94, p < 0.001]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [604] "Internal Consistency: For the 6-item instrument, Cronbach's alpha coefficients displayed an overall alpha value of 0.94 (sample 1; n = 115), 0.86 (sample 2; n = 202, Phase 1), and 0.87 (sample 2; n = 127, Phase 2/SBJ beliefs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [605] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.80 for the PCC scale. For the subscales, alpha values were 0.77 for History and 0.82 for Culture, considered to be satisfactory, as the two subscales include a relatively small number of items that tend to substantially lower the alpha values (Briggs & Cheek, 1986). Importantly, the correlation between the two subscales was modest but statistically significant: r =.23; p < .01, confirming speculations about their relatedness. Test–retest Reliability: An English-language version of the PCC scale was administered twice within a 3-week period to a group of undergraduates (n = 40) attending the University of Dundee (Scotland). The results showed a satisfactory degree of temporal stability for the PCC scale overall between Time 1 and Time 2: r = .74; p < .001. For the subscales, r values of .80 (p < .001) and .44 (p < .01) were obtained for Culture and History, respectively."                        
## [606] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.96 for the NCAAPS. For the factors, alpha values ranged from 0.81 to 0.92. Test–retest Reliability: A sample of emergency ward nurses (n = 30) completed the NCAAPS twice within a 2-week period. The results showed a test–retest reliability of 0.740 (p < .001), indicating that the NCAAPS was stable across time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [607] "Internal Consistency: The Catastrophizing subscale showed high internal reliability of alpha = 0.93 at baseline and alpha = 0.93 at follow up. The Coping subscale’s reliability was alpha = 0.90 at baseline and alpha = 0.88 at follow up. Test-Retest Reliability: The Pearson’s correlation assessing test-retest reliability for the Catastrophizing subscale was r = 0.62 (n = 21), and for the Coping subscale was r = 0.61 (n = 21)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [608] "Internal Consistency: The EOS scores were calculated with the ordinal omega coefficient (Gadermann et al., 2012) for each dimension of the instrument. The results showed the ordinal omega coefficients and their confidence intervals ranging between 0.68 and 0.84. Test-retest Reliability: The temporal stability of EOS scores was evaluated using the Spearman rho correlation coefficient. The EOS was administered twice to a subsample of participants (n = 65) within a 2-week interval. The results showed the Spearman rho coefficients ranging between 0.60 and 0.69, indicative of adequate temporal stability."                                                                                                                                                                                                                                                                                                                                                                                                      
## [609] "Internal Consistency: The Cronbach's alpha for the entire sample (n = 656) was .830. The test-retest sample (n = 354) was alpha = .819. Test-Retest Reliability: The temporal stability of the test was adequate (r = .712)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [610] "Internal Consistency: Cronbach's alpha coefficients displayed alpha values ranging from 0.540 to 0.741 for the 10-item SCS-SF, and from 0.291 and 0.667 for the 12-item SCS-SF. Test-retest Reliability: Analysis of the pretest sample of nursing students (n = 50) was 0.617 (Pearson's correlation, 95% CI = 0.436–0.790) and 0.618 (ICC, 95% CI = 0.413–0.764), indicating fair agreement. While the 12-item form had higher test–retest reliability, the 10-item form showed acceptable reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [611] "Internal Consistency: Cronbach's alpha values were .80 for FMs (n = 56), .80 for MF's (n = 87), .81 for female controls (n = 65), and .66 for male controls (n = 58). In a new sample of 202 SRS applicants who were either diagnosed transsexuals or gender-dysphoric but not transsexual and who were participating in a 5-year prospective study, the alpha values were .92 for male applicants and .78 for female applicants (n = 82)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [612] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.7 for the REPQ. Test-retest Reliability: A subsample of participants (n = 73) completed the REPQ twice within a 14-day period. Pearson's correlations showed r values for the items ranging between .59 and .79 and significant results at P < .001, demonstrating fair-to-good test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [613] "Internal Consistency: The Cronbach's alpha and McDonald's omega values were 0.76 and 0.79, respectively. Correcting the Cronbach’s for restriction of range yielded an estimate 0.91. Test-Retest Reliability: A relative high test-retest reliability (r = 0.74, P <.001) of the SIDI-F-SR over a 14-week period (M = 95.84 days, SD = 10.40, range = 83-116) was found using subset of women (n = 19)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [614] "Internal Consistency: Cronbach's alpha coefficients were used with a portion of the sample (n = 1,007) to assess the items via corrected item-total correlation coefficients. Items were removed when they showed the lowest item-total correlation coefficient and also caused the alpha value of the complete ASTFW instrument to increase once removed; 17 such items were therefore removed using this procedure. Additionally, composite reliability (CR) was shown to range between 0.69 and 0.91 for the ASTFW. Test-retest Reliability: The ASTFW was administered twice within a two-week period to a sub-sample of participants (n = 34). The results showed the intra-class correlation coefficient (ICC) at 0.82, with a 95% confidence interval from 0.63 to 0.91 (F = 5.34, p < 0.001)."                                                                                                                                                                                                                               
## [615] "Internal Consistency: Using the exploratory factor analysis sample (n = 367), Cronbach's alpha coefficients displayed alpha values across the factors ranging from 0.88 (BEN) to 0.95 (BAR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [616] "Internal Consistency: For the sample of undergraduate students in Study 1, the Cronbach's alpha for the total scale: α = .93) as did the subscales: Monitoring Behaviors (α = .81), Controlling Behaviors (α = .79), Demeaning Behaviors α = .78), (Threatening and Aggressive Behaviors α = .69), and Jealous and Possessive Behaviors (α = .80). For the sample of undergraduate students in Study 2, the Cronbach's alpha for the total scale was α = .93, and four of the five subscales demonstrated adequate internal consistency reliability: Monitoring Behaviors (α = .83), Controlling Behaviors (α = .79), Demeaning Behaviors (α = .75), and Jealous and Possessive Behaviors (α = .79). Test-Retest Reliability: In a sample of women (n = 47), correlations among scores from the first and second administration of the Relationship Red Flags Scale supported test–retest reliability for the five dimensions of the measure (ICC ranged from .81 to .90, p < .001."                                                 
## [617] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.81 for the Persian BSCS. Further reliability was determined via an intra class correlation coefficient (ICC) test, which showed ICC values of 0.88 for the Persian BSCS, and 0.83 and 0.78 for the 2 subscales, respectively. Test-retest Reliability: A subsample of participants (n = 30) completed the Persian BSCS twice during a 2–4 week period. The results showed an ICC of 0.88 and a confidence range of 0.8–0.93, confirming repeatability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [618] "Internal Consistency: For the factors, the internal consistency of each motive displayed good to excellent Cronbach's alpha coefficients, ranging from 0.76 to 0.93. Test-retest Reliability: The VMQ was administered twice within a 2-week period to a subsample of adolescent participants (n = 153). Temporal stability reliability was computed utilizing a 2-week test-retest correlation. Across the factors, the test-retest correlation ranged between .60 (Recreation) and .82 (Violent reward)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [619] "Composite Latent Variable Reliability: CLVR = 0.85, supporting internal consistency. Test-retest Reliability: The test–retest reliability was evidenced by a substantial and statistically significant correlation between two administration points separated by a week (n = 70; r = 0.76)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [620] "Internal Consistency: Internal consistency with Cronbach’s a was found at initial data analysis 0.96. Similarly, sensitivity data analysis excluding data of participants with one missing answer (n = 7) demonstrated a Cronbach’s a of 0.95. Test-Retest Reliability: Test–retest reliability of the scale was found to be very high among health care professionals suggesting that the IDPS_GR can be used to assess their perceptions over time; ICC(2,1) = 0.92 (confidence interval: 0.87–0.95)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [621] "Test-retest Reliability: The ANRQ-R was administered twice to a subsample (n = 1,670) of women within four weeks of their antenatal booking appointment; Time 1 was with their midwives at their first antenatal appointment; Time 2 was completed via online self-report. Intraclass Correlation Coefficient (ICC) results showed the ANRQ-R to have good test-retest reliability (ICC = 0.77); at the item-level, test-retest reliabilities were moderate to good (ICC range = 0.65–0.80; kappa coefficient range = 0.31–0.74)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [622] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha of 0.66, which was an improvement over the alpha value of 0.55 displayed in the original 10-tem instrument (PRS; Bouisson, 2002). Test-retest Reliability: The results showed intraclass correlations (ICC) between baseline and 2-year follow-up (the AMI) to be good: ICC = 0.69 (n = 343). Item Response Theory: IRT analysis used a 2-parameter probit IRT model for graded responses (GRM; Samejima, 1997) to assess item data. The IRT results showed the item discrimination (slope) ranging from 0.97 to 2.26. According to Baker's criteria (Baker, 2001), all items were shown to have moderate discrimination power that fit the GRM."                                                                                                                                                                                                                                                                                                     
## [623] "Interrater Reliability: Agreement between paired judges ranged from 85% to 95%. Perfect agreement was observed across all judges on 85% of all patient records. Rank correlations ranged between .98 and .99. Average k values ranged from .86 to .91.The results showed high interrater reliability despite the absence of specific training for the raters. However, the raters did have clinical experience in managing dysphagia in adult patients. Test Sensitivity: To evaluate whether the FOIS was clinically sensitive to change in oral intake, the scale was applied to dietary information of acute stroke patients (n = 302) at 3 time points: on admission to the stroke unit, at 1 month post-onset, and at 6 months post-onset. The results showed that the FOIS was sensitive to change in a group of acute stroke patients who would be expected to show substantial change in oral intake of food and liquid."                                                                                                    
## [624] "Internal Consistency: Cronbach's alpha coefficients displayed an overall value of 0.88 for the ESE scale among the total analytic sample (n = 447)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [625] "Internal Consistency: Cronbach's alpha coefficients were estimated across three samples (students and employed adults), with results showing overall alpha values for PBE scale ranging from .84 to .91 (M = .88). For the subscales, alpha values ranged from .59 to .77 for Brand appeal, .71 to .76 for Brand value, and .73 to .83 for Brand recognition. Composite Reliability: The CR values for the three factors were either higher than the .70 cutoff or nearly so, ranging from .66-.90. Test-retest Reliability: The PBE scale was given twice within a two-week interval to a sample of Dutch business administration students (n = 247), and twice within a six-week interval to a sample of employed workers recruited via MTurk (n = 349). in the business administration student sample, the PBE Scale at Time 1 was significantly correlated with the PBE Scale at Time 2 (r = .70, p < .001); similar results were seen n the employed workers sample, (r = .79, p < .001), demonstrating stability over time."   
## [626] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.89 using a first-wave sample (n = 346) for analysis. In a final sample (n = 150), a subsample of the first-wave sample, the instrument displayed an overall alpha value of 0.90. Composite Reliability: The instrument displayed a CR value 0.95). Inter-item Reliability: An overall value of 0.94 was reported for the instrument, indicating high reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [627] "Test-retest Reliability: The instrument was examined for its two-week test-retest reliability in a sample of adults (n = 146) who completed the instrument twice within the period. Cronbach's alpha coefficients displayed an alpha value of was 0.73 at time point one and 0.78 at time point two. The test-retest correlation for the scale was r = .77, p < .001, indicative of good test-retest reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [628] "Internal Consistency: The BILD-Q demonstrated good reliability across four studies, with Cronbach’s alpha coefficients reflecting good internal consistency (total alpha = .82; boys = .77; girls = .80). Moreover, the range of item-total correlations overall, though slightly lower in this sample, was still in the acceptable range (total = .57–.71; boys = .42–.76, girls = .52–.73). Test-retest Reliability: Over a 6-week period, a subsample of students (n = 103; 53.4 % male) allocated to the assessment-only control arm of the trial, who had data at both time-points, was assessed. Reliability over time was supported, based on acceptable intraclass correlation coefficients (overall = .74; boys = .76; girls = .69); paired-sample t-tests showed no significant change over time (overall: t (102) = 1.22, p = .224; boys: t (51) = 0.68, p = .499; girls: t (50) = 1.02, p = .315)."                                                                                                                      
## [629] "Internal Consistency: Cronbach's alpha coefficients displayed high alpha values in both versions (0.93–0.94), with alpha levels similar to those found in studies with clinical and non-clinical samples (Abrahamsson et al., 2006; Coolidge et al., 2005, 2010). In addition, the subscales were all internally consistent. Test-retest Reliability: A sub-sample of participants (n = 109) completed the CDBS-R twice in a two-week interval. Results from the intraclass correlation coefficient (ICC) showed a strong ICC for both versions (0.94 for the 28-item long form and 0.82 for the 24-item short form). The results demonstrated that the CDBS-R is stable over a two-week period."                                                                                                                                                                                                                                                                                                                                    
## [630] "Internal Consistency: Cronbach's alpha coefficients for all participants (n = 273) displayed an overall alpha value of 0.89. For the subscales, slightly lower alpha values were displayed: 0.79 (Attentional impulsiveness), 0.72 (Motor impulsiveness), and 0.77 (Non-planning impulsiveness). Test-retest Reliability: A subsample of participants (n = 62; all healthy controls) completed the swe-BIS twice within a 1-week interval. Pearsons correlations showed a statistically significant test-retest correlation for the swe-BIS total score (r = .78; p < .001), as well as for the subscales of Attentional (r = .63; p < .001), Motor (r = .54; p < .001) and Non-planning (r = .77; p < .001) impulsiveness."                                                                                                                                                                                                                                                                                                         
## [631] "The internal consistency of the ICR was good with Cronbach’s α = .84 (N= 125). The retest, performed by the same rater on the same session recordings after 13 weeks on average, demonstrated a high retest reliability of r = .91 (p < .001, n = 20). Interrater reliability was good for the first pair of raters and excellent for the second pair of raters with ICC(3,1) = .93 (n = 11). Because of the high interrater agreement, scores were averaged across raters for the validity analyses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [632] "Internal Consistency: The Cronbach's alpha for the total MTS was .91. Split-Half Reliability: The split half reliability of the measure using the odd and even method was found to be .90 (p < .001). The Cronbach's alpha for the two splits was found to be .82 and .79, respectively. Test-Retest Reliability: One week test-retest reliability of the instrument on n = 45 participants was found to be r = .86."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [633] "Internal Consistency: The Cronbach’s alpha for the items comprising the functioning index for the entire (0.69), Montreal (0.72), and Chennai (0.66) sample. Test-Retest Reliability: With an interval of 7 to 23 days in Montreal and 14 to 21 days in Chennai, the RAY functioning index had good test–retest reliability, ICC2,1 = 0.82, 95% CI [0.71, 0.89], N = 59. For the Montreal and Chennai samples, the corresponding ICCs2,1 were 0.64, 95% CI [0.37, 0.81], N = 30, fair reliability, and 0.97, 95% CI [0.94, 0.98], N = 29."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [634] "Internal Consistency: Cronbach’s alpha scores were 0.92 for IPA and 0.85 for INA. These results confirm that the IPANATTR demonstrated high internal consistency. Test-Retest Reliability: One-week test-retest reliability (N = 46) values were 0.75 for IPA and 0.62 for INA. Four-week test-retest reliability (N = 55) values were 0.66 for IPA and 0.51 for INA. These findings may indicate that the IPANAT-TR has a stronger state component."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [635] "Internal Consistency: For the factors, Cronbach's alpha coefficients displayed alpha values ranging from 0.80 to 0.98. Composite Reliability: For each factor, the and CR value was above 0.70. Test-retest Reliability: A convenience sample participants (n = 63) were assessed twice within a 2-week interval. During this interval, intraclass correlation coefficients (ICCs) were calculated between two sets of scores on each factor, with the results showing ICC values greater than 0.70; the results indicated good test-retest reliability (Zheng & Sun, 2013)."                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [636] "Internal Consistency: The Cronbach's alpha was 0.94. Test-Retest Reliability: The test–retest correlation (n = 75) was r = 0.96, with a 1-3 week interval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [637] "Internal Consistency: Cronbach’s alpha values were 0.92 for the patient version of the A-STAM and 0.92 for the clinician version. Test-Retest Reliability: With a 2-4 week interval, A-STAM (n = 15) and 0.93, 95% CI [0.79, 0.98] for the clinician A-STAM (n = 14), indicative of good test–retest reliability (Streiner, Norman, & Cairney, 2015)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [638] "Internal Consistency: In a pilot study with part-time MBA students (n = 226), Cronbach's alpha coefficients displayed an overall alpha value of 0.92 for the instrument. For the 2 target samples (low-wage, blue-collar and higher income, white-collar employees), alpha values were 0.86 and 0.89, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [639] "Internal Consistency: Cronbach's alpha coefficients displayed an overall alpha value of 0.82 for the BFS. For the factors, the alpha values were as follows: 0.78 (CTLG), 0.67 (DPF), and 0.60 (GBD). The authors noted that the low alpha value for GBD is not unusual as it has only three items; moreover, from psychometric formulae, alpha is known to be very sensitive to scale length such that, long scales (scales with 10 or more items) are expected to yield high alphas while short scales yield relatively low alphas. Test-retest Reliability: The BFS was administered to participants (n = 151) across a two-week interval, with the results showing an alpha value of 0.86. For the factors, the test-retest alpha values were as follows: 0.81 (CTLG), 0.82 (DPF), and 0.70 (GBD)."                                                                                                                                                                                                                              
## [640] "Internal Consistency: The omega (ω) coefficient was 0.91. Test-Retest Reliability: With a mean interval of two weeks, the DAS-1 scores in Time-1 (M = 40.11, SD = 13.16, N = 36) and Time-2 (M = 39.33, SD = 14.75, N = 36) showed an ICC = 0.87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [641] "Internal Consistency: The Cronbach’s alpha coefficients for the overall scale, NB subscale, and VP subscale were 0.77, 0.75, and 0.84, respectively, suggesting moderately high internal consistency. Test-Retest Reliability: The test–retest reliability coefficients (n = 167) had ICC values of 0.79 for CAQ-8 total, 0.68 for VP subscales, and 0.68 for the NB subscales. These findings suggest moderate test–retest reliability for the Chinese CAQ-8."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [642] "Internal Consistency: Cronbach’s alpha indicated that the first (n = 6 items) and second factors (n = 7 items) had moderate internal consistency, (alpha = .80) and (alpha = .70) respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [643] "Internal Consistency: The SDS-G had a very high Cronbach's alpha coefficient for the 12 items, (α=.86). Test-Retest Reliability: Three-month test-rest reliability was satisfactory in that there was a significant positive correlation between the total scores of the SDS-G at Time 1 and Time 2, r = .883, N = 16, p < .0001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [644] "Internal Consistency: Internal consistency analyses conducted on the overall sample yielded very high McDonald’s ω coefficients, .88 to .95, for all of the ETRADQ scales. Test-Retest Reliability: Test–retest reliability (1-2 months) assessed on a subsample (n = 163: 86 COM, 77 RISK) also proved very good for all of the scales, r = .83 to .91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [645] "Internal Consistency: Cronbach alpha coefficients of all subscales were >0.7, the lowest was 0.740 for the items of the Cheating subscale, and the highest, i.e. 0.981, for the items of the Perjury subscale. For the overall reliability, the Cronbach's alpha value was 0.93. Test-Retest Reliability: The results of the test-retest, which were performed on a smaller sample (n=50), indicated that the participants' responses were consistent over time. All test-retest correlations were significant (p < 0.001) for all corresponding pairs of pre- and post-test variables and the lowest value of Spearman correlation coefficient was 0.72."                                                                                                                                                                                                                                                                                                                                                                           
## [646] "Internal consistency: The internal consistency values of the 4 subscales were 𝛼 = .82 (Refrain from Eating), 𝛼 = .86 (Food as Reward), 𝛼 = .82 (Healthy Eating), and 𝛼 = .80 (Nutritional Replenishment), and ranged from .78-.86 in separate samples. Test-retest reliability: Using a two-week interval, response rate for the retest was 43.7%. A sensitivity analysis using G*Power (Faul et al., 2009) showed that the retest had a high chance (β = 0.80, α = .05, N = 166) to detect correlations of r ≥ .21. In a separate sample, positive and significant correlations between the two time points for all factors, ranging between r = .71 (p < .001) and r = .84 (p < .001), indicated high levels of test–retest reliability over 2 weeks."                                                                                                                                                                                                                                                                             
## [647] "Internal Consistency: Factor 1 had an internal consistency of .89 and inter-item correlations from .43 to .65. Factor 2 had an internal consistency of .88 and inter-item correlations from .42 to .68. Cronbach’s a for the full 14-item scale was .91 and interitem correlations ranged from .17 to .68. Test-Retest Reliability: Participants in the test–retest sample (n = 55) completed Time 2 measures 14–33 days after Time 1 (M = 17.78, SD = 4.95). According to the criteria published by Cicchetti (1994), the intraclass correlation coefficient, ICC (3, 1) indicated that the temporal stability of SOBBS Factor 1 (.89), SOBBS Factor 2 (.73), and the SOBBS Total Scale (.89) were excellent."                                                                                                                                                                                                                                                                                                                      
## [648] "Internal consistency: For the on-menses version (i.e., 24-hour recall), Cronbach’s α was 0.93 at Time 1 and 0.95 at Time 2, respectively. For the off-menses version (i.e., recalling the last menstrual period), the scale was internally consistent with Cronbach’s α of 0.91. Test–retest reliability: For participants whose symptoms did not change in the last 24 hours (n = 32), the test–retest reliability was satisfactory (r = 0.79, p < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [649] "Internal Consistency: Across four samples, the Cronbach's alpha coefficients ranged from .45 to .90. Test-Retest Reliability: The results indicated a strong positive correlation between initial test scores and retest scores (M=52.78, SD=16.06; M = 51.71, SD = 15.20, respectively), r = 0.88, n = 100, p<0.01. The shared variance was 78%."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [650] "Internal Consistency: An acceptable Cronbach’s 𝛼 of 0.741 was achieved for the measure as a whole. Most of the subscales performed below an acceptable range. Coefficient values ranged between 𝛼 = 0.003 (Impact) and 𝛼 = 0.745 (Continuity). Test-Retest Reliability: The test–retest coefficient for the RSQ overall percent scores (n = 24) was r = 0.502 for 52.17 days with a significance of p = 0.01 (two-tailed). Split-Half Reliability: The split-half reliability for the 39 RSQ items yielded a Spearman–Brown coefficient of 0.686 with n = 82."                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [651] "Split-Half Reliability: This resulted in split-half correlations by the Spearman-Brown formula of r = .983 (n = 180, p < .01) for the first test administration and r = .982 (n = 179, p < .01) for the second test administration. Test-Retest Reliability: With the average test-retest delay was 3.2 days, the Pearson product-moment correlation which describes the relationship between each subject's test and retest rating of perceived capacity (RPC) is r = .847 (n = 179, p < .01). Males and females showed similar levels of test-retest reliability, with Pearson product-moment correlations of r = .849 (n = 126, p < .01) for males and r = .818 (n = 53, p < .05) for females."                                                                                                                                                                                                                                                                                                                                   
## [652] "Internal Consistency: The overall reliability analysis of the Lakota Women and Cervical Cancer Survey had a Cronbach’s 𝛼 of .743. The combined cultural practice items (n = 11) had a Cronbach’s 𝛼 of .832. The ceremony items (n = 5) had a reliability of .719, and the reliability of the language items (n = 4) was .846."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [653] "Internal Consistency: The Cronbach's alpha values for the clinical sample, healthy sample, and overall sample were .79, .75, and .76, respectively. Test-Retest Reliability: After a 2 week interval, test-retest reliability was rs = .55, p = .01, n = 36."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [654] "Internal Consistency: Findings showed a Cronbach’s alpha of 0.95 for internal consistency. Cronbach’s alpha was calculated for each of the three subscales (Speech, Spatial and Qualities) and all values were above the criterion of 0.7 for clinical acceptability (Speech; 0.93, Spatial; 0.91 and Qualities; 0.79). Split-Half Reliability: Findings showed a Gutmann split-half correlation of 0.93 with a coefficient alpha of 0.93 for part 1 (items 1 to 6) and 0.89 for part 2 (items 7 to 12). Test-Retest Reliability: Test-retest in the sub-sample of hearing-impaired individuals who were tested two times (n = 22) showed good agreement for SSQ12 overall scores between the first (M = 5.3, SD = 2.0) and second assessments (M = 5.0, SD = 2.4). There was a significant Spearman’s correlation between the two scores (rs = 0.66, p<0.001) and the intraclass correlation coefficient was 0.79 (95% CI 0.50–0.91; fair to excellent)."                                                                           
## [655] "Internal Consistency: Among sample 1, the 4-item RSES, the Cronbach’s α= 0.76. For the initial assessment, Cronbach’s α for the RSES-4 was 0.77. Cronbach’s α for the 4-item RSES 0.78. Test-Retest Reliability: With a follow-up of 10 weeks, the correlations between scores on the initial and follow-up assessments for the original Response to Stressful Experiences Scale (RSES; Johnson et al., 2011) and RSES-4 were 0.57 and 0.50, respectively (correlations significant at p < 0.01, n = 68"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [656] "Internal consistency: The reliability estimate for the 13-item total scale was .97 (n = 753), indicating strong reliability. The reliability estimates for the subscales were .98 for the five-item SIE, .96 for the five-item SAR, and .97 for the three-item SM. These values also indicated high internal consistency reliability evidence for scores obtained from these three subscales (α > .70)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [657] "Internal Consistency: PsiQ-NL-35: Internal consistency for the full scale was excellent (Cronbach’s 𝛼 = .944, ω = .945). Internal consistency for the modality subscales was acceptable to good, with Cronbach’s 𝛼 ranging from .756 (bodily sensation) to .865 (smell) and ω ranging from .757 (bodily sensation) to .865 (smell). PsiQ-NL-21: Internal consistency for the full scale was excellent, Cronbach’s 𝛼 = .913, ω = .914. Internal consistency for the modality subscales was moderate to acceptable, with Cronbach’s 𝛼 ranging from .691 (bodily sensation) to .790 (smell) and ω ranging from .693 (bodily sensation) to .802 (taste). Test-Retest Reliability: PsiQ-NL-35: The test-retest reliability of the full scale was good, r = .827. Test-retest reliability of the modality subscales was moderate to sufficient and ranged from r = .674 (sound) to r = .751 (smell). PsiQ-NL-21: Test-retest reliability (N = 414; 83%) for the full PsiQ-NL-21 was good, r = .819."                                       
## [658] "Inter-Rater Reliability: The ICC based on the first coding session (n = 5 raters) indicated good agreement between coders (ICC = 0.77) on adherence ratings. Additionally, an ICC was calculated using the portion of the therapy session with the highest number of coders present (n = 20), talk turns 50–92, which indicated strong agreement between coders on overall adherence ratings across items (ICC = 0.81)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [659] "Internal Consistency: Internal consistency (𝛼) was overall satisfactory at 0.82, though the consistencies of the Visual and Auditory Emotion Identification subscales were lower. Interrater Reliability: The Emotion Vocabulary subscale, which includes open questions, had a very high interrater reliability of 0.99 between independent researchers. The interrater reliability was 0.66 for Emotion Expression, 0.85 for Emotion Regulation, and 0.71 for Emotion Understanding. Test-Retest Reliability: The 7-week retest reliability was r = 0.40 and r = 0.46 in a small subsample of n = 13 for the Emotion Vocabulary and Emotion Identification (visual) subscales, respectively. The other subscales and the total score resulted in larger correlations, ranging from r = 0.59 Emotion Identification (auditive), r = 0.71 for Emotion Understanding, r = 0.86 for Emotion Identification (situational), r = 0.81 for Emotion Regulation to r = 0.88 (Emotion Understanding)."                                        
## [660] "Test-Retest Reliability: A pilot study was conducted (n = 30), in which test-retest reliability was estimated by contacting the participants twice and 2 weeks apart (average κ of items = 0.67)."
samplesizes <- records_wide$Validity %>% str_match_all(regex("\\bn ?= ?(\\d+)", ignore_case = TRUE)) %>% map(~ as.numeric(.[,2]))
samplesizes %>% unlist() %>% table()
## .
##    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15   16 
##    9   12    7    6    8    3    2    4    3   10    3    4    3    1    2    2 
##   17   18   19   20   21   22   23   24   25   26   27   28   30   31   32   33 
##    1    1    1    7    5    2    3    3    1    7    3    4    9    2    6    3 
##   34   35   36   37   38   39   40   41   42   43   44   45   47   48   49   50 
##    1    7    7    3    8   10    3    1    3    7   10    3    4    3    4    4 
##   51   52   53   54   56   57   58   59   60   61   62   63   64   66   67   68 
##    5    3    2    7    8    2    1    5    4    3    1    6    3    2    3    3 
##   69   70   71   72   73   75   76   77   78   79   80   81   82   83   84   85 
##    3    4    4    5    1    6    1    4    2    4    3    3    2    3    7    6 
##   86   87   88   89   90   91   92   93   94   95   96   97   98   99  100  101 
##    2    2    5    3    4    4    1    2    1    3    4    3    2    2    7    3 
##  102  103  104  105  107  109  110  111  112  113  115  116  117  118  119  120 
##    6    3    1    2    3    4    2    2    6    4    1    5    5    2    1    3 
##  121  123  124  125  130  131  132  134  135  137  139  140  141  142  143  145 
##    1    2    2    3    3    2    1    1    3    1    3    5    3    2    1    5 
##  146  147  148  149  150  151  152  153  154  156  157  159  160  161  163  165 
##    3    1    1    7   10    2    3    1    2    7    2    2    1    2    2    2 
##  168  171  174  177  178  179  180  182  184  185  186  188  190  191  192  193 
##    3    4    2    1    1    4    1    1    1    2    1    2    1    3    1    2 
##  194  195  197  198  200  201  203  204  205  206  207  209  211  212  213  214 
##    3    2    2    2    1    2    3    2    2    1    1    2    3    1    1    3 
##  216  217  219  220  221  223  225  227  228  229  230  232  233  235  237  240 
##    3    1    2    1    5    2    1    1    1    2    1    1    2    1    2    1 
##  241  243  244  245  246  248  249  250  251  252  254  256  257  260  261  263 
##    2    2    3    1    2    2    2    3    1    1    2   13    1    1    1    1 
##  264  266  267  268  269  273  274  275  276  277  281  282  283  291  293  294 
##    2    2    2    3    4    1    1    2    4    1    2    1    1    1    2    1 
##  295  300  302  303  310  312  313  314  315  316  318  320  325  328  329  331 
##    1    2    3    1    1    4    1    2    1    1    1    2    2    1    1    1 
##  335  336  337  339  341  344  346  349  351  352  360  361  362  366  367  368 
##    1    1    1    1    2    2    3    4    1    1    1    2    2    1    1    2 
##  370  372  375  378  380  386  387  388  390  395  400  408  410  418  421  423 
##    1    1    2    1    3    1    1    2    1    1    2    1    1    1    1    1 
##  425  427  428  435  442  444  445  447  458  461  470  477  478  481  483  491 
##    1    1    1    2    2    1    3    1    1    1    1    1    1    1    1    1 
##  496  497  499  506  507  513  520  528  532  534  543  546  551  556  567  574 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  600  625  635  646  650  652  659  661  666  667  678  689  697  701  710  712 
##    1    1    1    1    3    1    1    2    1    1    1    1    1    1    1    1 
##  714  724  740  747  750  768  787  794  807  813  823  857  868  871  883  889 
##    1    1    1    1    1    1    1    1    1    2    1    1    1    1    1    1 
##  890  893  896  901  903  905  913  914  940  969  970  988  995 1000 1026 1260 
##    1    2    1    1    1    1    1    1    1    1    1    1    1    2    1    1 
## 1573 1656 1816 1848 2070 2310 2458 2470 3082 3259 4620 6137 
##    1    1    1    1    1    1    1    1    1    1    1    1
samplesizes %>% unlist() %>% median()
## [1] 117
records_wide$Validity[- (samplesizes %>% map_dbl(~ .[1]) %>% is.na() %>% which())]
##   [1] "Concurrent Validity: Study 1 --correlations among the AARRSI and its subscales, other instruments, and participant age and generation indicated significant positive correlations AARRSI total and subscale scores and the MSS (Smedley et al., 1993) total (n = 88; .47), MSS-Social Climate Stresses (.53), MSS-Interracial Stresses (.48), and MSS-Racism and Discrimination Stresses (.50). Concurrent Validity: Study 2 -- significant positive correlations were observed between the AARRSI total and subscale scores and SRE's (Landrine & Klonoff, 1996) Recent Racist Events (.53), Lifetime Racist Events (.55) , and Appraised Racist Events scores (.51); PRS's (McNeilly et al., 1996) Job (.35), Public (.37) and Statement (.39) scores, and between AARRSI's Socio-Historical Racism and CMI's (Terrell & Terrell, 1981) Politics and Law score (.32). Discriminant Validity: correlations calculated between the AARRSI and AVS (Kim et al., 1999) yielded a lack of significant correlations (p = <.00064)."          
##   [2] "Regarding discriminant validity, all factor loadings were appreciable, ranging from .59 to .89. The CARE’s manual (Glutting, Sheslow, & Adams, 2002) presents studies that examined external validity. One study evaluated diagnostic validity. It used receiver operator characteristic curves calculated between students with ADHD (n=58) and nonclassified contemporaries (n=1,022). The receiver operator characteristic analyses were all statistically significant (ps<.001). Therefore, areas under the curve (AUCs) were interpreted. Values ranged from .71 to .82 for the SRI and from .77 to .94 for the PRI."                                                                                                                                                                                                                                                                                                                                                                                                               
##   [3] "Criterion-related validity: The correlation between the C-HIPS's total scores and the Glasgow Outcome Scale category ratings was -0.61 (p < 0.001, N = 77). The correlation between the C-HIPS's total scores and the Mayo Portland Adaptability Inventory-3's total scores was 0.70 (p < 0.001, N = 73)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [4] "To determine concurrent validity, the CPSD was administered to 65 children and their teachers. CPDS scores were compared with indication for psychosocial treatment based on an in-depth clinical assessment by a psychiatrist and psychologist. Construct validity was assessed by testing the measurement equivalence of the CPDS in a community sample (N = 2,240) in Burundi. The CPDS identifies indication for treatment with an accurateness of .81 (sensitivity of .84; specificity of .60)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [5] "The correlation between CSAT-CM and Client Satisfaction Questionnaire (CSQ-8) was r = .70 (n = 105) and the correlation between CSAT-CM and Home Care Satisfaction Measure: Case Management Service (HCSM-CM13) was r = .60 (n = 103)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [6] "Concurrent validity: In a third sample of college students (N = 506), concurrent validity was supported through moderate associations with 3 different stigma measures (i.e., public stigma toward counseling, r = .31; public stigma toward mental illness, r = .20; and self-stigma, r = .37)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [7] "Scores were intercorrelated and factor analyzed separately for the Jewish (N = 740) and the Arab (N = 750) samples. Factor patterns were similar in item composition, but differed in the percentage of variance accounted for by the factors. Specifically, Self-Praise, Life Satisfaction, and Work Outlook made up the leading cluster of factors in the Jewish sample; Self-Criticism, Religion, and Peer Relations were the analogous factors in the Arab sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [8] "Discriminant validity: The CEQ factors used for prediction demonstrated highly significant discriminative power, x2(4, N = 256) = 201. The discriminant function concurrently predicted abusers versus experimental users vs nonusers with 64%-88% accuracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [9] "Confirmatory factor analysis (N = 328) provided cross-validation of the 5-factor model as well as evidence for validity of the scale. The validity evidence was similar across racial groups and for males and females. Education/Advocacy, Internalization, Drug and Alcohol Use, and Detachment were positively associated with active coping, self-blame, substance use, and behavioral disengagement, respectively, providing further support for validity of the CDS. Incremental validity evidence was obtained by results showing that the CDS explained variance in outcome variables (i.e., depression, life satisfaction, self-esteem, and ethnic identity) that could not be explained by general coping strategies."                                                                                                                                                                                                                                                                                                         
##  [10] "Factorial Validity: The completely standardized parameter estimates for the sample (n=3,633) display an overall good model fit, Chi-squared(1439)=12,555.58, p<.0001, CFI-.964, RMSEA=.051, SRMR-.048."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [11] "For the model that included the final 10 items, in addition to reporting the chi-square statistic (and associated p value), the model fit was evaluated using an absolute fit index, the standardized root-mean-square residual (SRMSR; Bentler, 1995), and an incremental fit index, the comparative fit index (CFI; Bentler, 1990). Fit indices suggested an excellent fit, chi-squared (34, N = 245) = 76.84, p < .01; SRMSR = .04; CFI = .97. Item loadings for the two factors ranged from .60 to .91. The interfactor correlation was .58 (SE = 0.05), and met Anderson and Gerbing’s (1988) test for multifactorial discriminant validity."                                                                                                                                                                                                                                                                                                                                                                                       
##  [12] "Test Validity: The average correlation between achievement items and the achievement locus of control scale was r -.31 (N = 241), these same achievement items correlated, on average, r -.10 with the affiliation scale. Affiliation items correlated, on average, r = .31 with the affiliation locus of control scale, but correlated only r = .09 with the achievement scale. These data support the discriminative validity of the items selected for each scale. The MMCS has been compared with the Rotter (1966) I-E Scale and correlations have been found to be positive, significant, and of variable magnitudes, rs ranging from .23 to .62 with the achievement and .37 to .55 with the affiliation locus of control scales."                                                                                                                                                                                                                                                                                                
##  [13] "Dimensionality and measurement invariance of the short version (TDS-K) were examined in two offline surveys (N = 2,001 and 948) and two online surveys (N = 4,450 and 12,087). Multiple group confirmatory factor analyses supported the unidimensionality of the measure and showed that measurement invariance held within each of the administration methods (offline vs. online survey), but only partial invariance held across these methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [14] "Convergent/Divergent Validity: The IUS correlated most highly with the Penn State Worry Questionnaire (PSWQ; r = 0.60, p < 0.001); however, it was not significantly higher than the correlation between the IUS and the BDI-II and BAI. Results indicated significant partial correlations between the IUS and the PSWQ, when controlling for the Beck Anxiety Inventory (BAI; N = 276, r = 0.41, p < 0.001), controlling for the Beck Depression Inventory-II (BDI-II; N = 276, r = 0.38, p < 0.001), and controlling for both the BAI and BDI-II (N = 276, r = 0.30, p < 0.001). Criterion-related Validity: A Scheffe test for group comparisons indicated that participants who met the criteria for generalized anxiety disorder (GAD) by questionnaire (M = 70.51, SD = 12.56) scored significantly higher on the IUS than those who met only the somatic criteria (M = 57.12, SD = 17.83), the latter scoring significantly higher on the IUS than those who met none of the criteria for GAD (M = 46.61, SD = 15.84)."          
##  [15] "Convergent and discriminant validity were adequate. Construct validity was further demonstrated through factorial analyses of the combined samples (N = 246). Three separate factors emerged: cultural identity, language competence, and cultural competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [16] "Content validity: Patients and providers believed most items of the QLQ–C30 were appropriate and worded well. External validity: To examine the external validity of the QLQ–C30, the authors examined whether the questionnaire reflects the same domains of QOL in two different populations, Caucasians and Asian/Pacific Islanders. Results of a confirmatory factor analyses showed that the RMSEA was .044 and the X2/df ratio was 1.69, each indicating good model fit. The AIC was equal to 603.3. These results provided evidence for the viability of the QLQ–C30 structure across groups. In testing the equality of parameters, it was found that the constrained model was not significantly degraded, X2diff(42, N = 362) = 43.9, p = .39, suggesting that there was equality across groups."                                                                                                                                                                                                                              
##  [17] "Although the PSI was not designed to be a psychometric test, questions of reliability and validity nonetheless apply. Initial test-retest reliability checks on a small homogeneous population (N=20-25) yielded correlation coefficients of great than +.85 on each of the four scales. Larger studies with heterogeneous populations need to be conducted by independent researchers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [18] "Although the SSI was not designed to be a psychometric test, questions of reliability and validity nonetheless apply. Initial test-retest reliability checks on a small homogeneous population (N=20-25) yielded correlation coefficients of great than +.85 on each of the four scales. Larger studies with heterogeneous populations need to be conducted by independent researchers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [19] "Criterion Validity: Known-groups validity was demonstrated because the A-DES was able to distinguish dissociative-disordered adolescents from a “normal” sample and from a patient sample with a variety of diagnoses, with the mean of the “dissociative disorder” group significantly higher than those of the five other groups, although not higher for the “psychotic disorder” group. Also, adolescents were grouped into four general trauma groups: no known abuse (n = 47) , physical abuse alone, sexual abuse alone, and both physical and sexual abuse (n = 54 for these three). The A-DES means significantly differed by abuse status (they were highest for the physical and sexual abuse group). In addition, all four subscales were able to differentiate the normal from the dissociative disordered group."                                                                                                                                                                                                          
##  [20] "The Agoraphobic Cognitions Questionnaire (ACQ) and the Body Sensations Questionnaire (BSQ), two aspects of fear of fear, were as predicted, moderately correlated (r = .34, n = 95, Sample 1; r = .67, n = 50, Sample 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [21] "Dislike and Willpower were correlated (r = .43, n = 244, p < .001); believing weight is due to willpower and denigrating fat people go hand in hand. Fear of Fat was uncorrelated with Dislike (r = .01, ns). This suggests that self-relevant concerns about fatness are not a major aspect of disliking fat people. Fear of Fat was not correlated with Willpower (r = .01, n = 250, ns)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [22] "Construct concurrent validation, Free Choice Naming of the 26 PFs; N= 600, ages 5 to 83. Convergent validity with all parallel Positive Affect and Negative Affect Scales (PANAS-X, Watson & Clark,1991). Significant correlations with the DASS21 Depression, Anxiety, Stress Scales (Lovibond & Lovibond, 1995). Also tested with small groups of non-English speaking groups (Spanish, Ni Vanuatu, Australian Aboriginals)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [23] "The CAT significantly correlated with related constructs, including dissociation, depression, stressful life events, and impairment in interpersonal relationships. Validity is also attested to by research participants with multiple personality (n = 17) achieving extremely high scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [24] "In assessing the validity of the CWVI, a small population of children in family violence shelters (N = 28) was compared to a matched control group. Children exposed to family violence had significantly more inappropriate responses and attitudes to anger and less knowledge about safety skills. There were no significant differences on the responsibility for violence subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [25] "Factorial analysis; intercorrelations with OPQ32i (instrument measuring occupational personality traits; N=97); intercorrelations with ratings from 360° process (N=179); acceptance rating of instrument by applicants and intercorrelations with ratings from employment interview (N=140); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [26] "Factorial analysis; intercorrelations between views and instrument measuring corporate culture of an organisation (N=197); intercorrelations with questionnaire measuring occupational competencies (N=386); job satisfaction ratings (N=477); various studies on criterion-related validity from real-life hiring and selection projects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [27] "Intercorrelations with instruments measuring numerical (N=314) and verbal abilities (N=339) and English language proficiency (N=314); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [28] "Intercorrelations with tests measuring logical reasoning (N=1,138), the ability to discover rules (N=1,118), visual thinking (N=1,067), and calculating capacity (N=1,164); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [29] "Intercorrelations with a questionnaire measuring occupational competencies (N=103) and with tests measuring numerical (N=102) and verbal (N=91) abilities as well as the ability to concentrate (N=151); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [30] "Intercorrelations with tests measuring inductive logical reasoning (N=118), the ability to concentrate (N=121), basic numeracy (N=205), deductive logical reasoning (N=102), multi-tasking (N=214), short term memory (N=214); intercorrelations with ratings from 360° process (N=117); intercorrelations with assessment center data; various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [31] "Intercorrelations with tests measuring inductive logical reasoning (N=103), the ability to concentrate (N=113), basic numeracy (N=191), deductive logical reasoning (N=91), multi-tasking ability (N=198), short term memory (N=109); intercorrelations with ratings from 360° process (N=117); intercorrelations with assessment center data; various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [32] "Intercorrelations with tests measuring numerical (N=116) and verbal abilities (N=109) and the ability to concentrate (N=142); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [33] "Intercorrelations with tests measuring short term memory (N=901), calculating capacity (N=913), the ability to concentrate (N=883), logical thinking (N=889), English language proficiency (N=914), multi-tasking ability (N=823), visual thinking (N=893), understanding of instructions (N=890), hand-eye coordination (N=903); intercorrelations with questionnaire assessing multiple intelligences, vocational interests, learning styles, and learning behavior (N=893); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [34] "Intercorrelations with a questionnaire measuring occupational competencies (N=216) and with tests measuring numerical (N=214) and verbal reasoning (N=198), logical reasoning (N=223), the ability to concentrate (N=491), short term memory (N=362), deductive logical reasoning (N=243), basic numeracy (N=216); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [35] "Intercorrelations with a questionnaire measuring occupational competencies (N=107) and data from a 360° feedback process (N=81); intercorrelations with tests measuring numerical (N=97) and verbal abilities (N=93), logical reasoning (N=82), the ability to concentrate (N=101), short term memory (N=116), deductive logical reasoning (N=88); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [36] "Intercorrelations between subscales and self-ratings (N=26,010); various studies on criterion-related validity from real-life hiring and selection projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [37] "Content validity: The authors conducted a small (N= 56) study examining content validity in which children were asked to write out the meaning of each picture to investigate the “stimulus pull.” Two scorers (with interrater reliability of r = .84) then scored each scale as to whether the responses matched the scale dimension. Z values were calculated in order to determine hit rate; values ranged from Z = .30 to .72. Values from third graders (N = 26) were lower than seventh graders (N = 30), indicating that children’s social comprehension will increase with age."                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [38] "Convergent validity: The IDAF-4C compared positively to Corah’s (1969; Corah, Gale, & Illig, 1978) Dental Anxiety Scale (r = .84, p < .001) and a single-item measure of dental fear (r = .57, p < .001). Predictive validity: The IDAF-4C predicted future dental visiting and visit perceptions. People who had visited a dentist in the 4-month period between baseline and follow-up (n = 191, M = 1.55, SD = .82) had significantly lower IDAF-4C scores than did people who had not visited a dentist (n = 303, M = 1.91, SD = 1.05), F(1, 492) = 16.50, p < .001. Of those people who had visited a dentist at 4-month follow-up, there was a statistically significant correlation between baseline dental fear and the perception of the visit as negative (r = .37, p < .001)."                                                                                                                                                                                                                                                
##  [39] "Life Attitude Profile correlations to the following validity scales are as follows: Dean's Alientation Scale .02 (N=44), Reid-Ware Internal-External Locus of Control Scale -.31 (N=44), Lodzinski's Academic Goals Inventory -.04 (N=44), Shostrom's Personal Orientation Inventory .16 and .09 for Time Competence and Future Orientation, respectively (N=35), and Crowne-Marlow Social Desirability Scale .09 (N=42)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [40] "In a Wurtele et al. (1989) study, parents’ ratings (N = 42) of fear levels were not significantly related to children’s fear ratings. Parents tended to underestimate their children’s fears, and thus the validity of this section of the PPQ is questionable. In Wurtele (1990), results on the PPQ indicated no differences in parents’ ratings of behavior associated with their child’s program involvement from pre- to posttreatment, which again raises doubts about the usefulness of the PPQ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [41] "Convergent validity: In a separate validation investigation (Tarn, Chan, & Wong, 1994), the PSI was compared with other global measures of stress in a sample of Chinese mothers in Hong Kong (N = 248). Significant correlations with the General Health Questionnaire (Shek, 1987), the Langer Stress Scale (Langer, 1962), and the Global Assessment of Recent Stress (Linn, 1985) provide good evidence for convergent validity. Criterion-related validity: Criterion-related validity was demonstrated by comparisons of clinical status groups with control groups. Significantly different PSI scores were demonstrated between the groups. In recent study of parents (N = 216) of Head Start children, the short form of the PSI indicated a correlation between the total score with the parenting scale (Arnold et al., 1993)."                                                                                                                                                                                              
##  [42] "Concurrent Validity: All three subscales of the SRE correlated well with a variety of symptoms, and particularly with stress-related, somatic symptoms and with feelings of inadequacy and low self-esteem (measured by the Interpersonal Sensitivity subscale) as measured by the Hopkins Symptom Checklist. To assess the relationship between cigarette smoking and racist events, the authors conducted a MANOVA that compared the smokers and nonsmokers in the sample based on their scores on the SRE, with three dependent variables: racist events recent, lifetime, and appraisal. The MANOVA was significant (Hotelling's T2 = .089, F[3, 133] = 3.96, p = .01), which indicated that smokers (n = 24) and nonsmokers (n = 113) differed in their scores on the SRE."                                                                                                                                                                                                                                                         
##  [43] "In a study of 1,196 research participants divided by externally documented official case records into four groups, including a physical abuse group (n = 110), a neglect group (n = 520), sexual abuse group (n = 96), and a nonabused (n = 543) control group. Five out of six of the individual items on the SRCAP and the overall SRCAP score discriminated significantly among the groups, providing evidence of criterion-related validity. Criterion validity was also supported in that the SRCAP was found to be a significant predictor of self-reported violence, an outcome found in officially reported physical abuse cases."                                                                                                                                                                                                                                                                                                                                                                                               
##  [44] "For validity analysis, SCAN diagnoses were recoded into four dichotomous yes/no variables indicating harmful use/abuse or dependence according to ICD-10 or DSM-4. Almost all the respondents had a diagnosis of drug dependence according to ICD-10 (95%, n = 146) and according to DSM-4 (94%, n = 145). These diagnoses concerned one to six drug categories. A harmful use diagnosis for at least one drug according to ICD-10 was obtained for 16% (n = 24) of the respondents, while a diagnosis of substance abuse according to DSM-4 was obtained for 42% (n = 64) of the respondents."                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [45] "Construct validity was assessed by comparing TAQ scores to responses on a forced-choice question regarding parents' comfort with treatment. Parents answered the question \"Which of the two treatments described here would you feel more comfortable pursuing?\" by choosing one of three responses (BT [behavior therapy alone], MED [medication alone], or NT [no treatment]). Two independent samples t tests were performed. TAQ Medication Acceptability ratings were significantly higher for families that endorsed MED (n = 12; M = 37.08, SD = 5.26) than those that did not (n = 38; M = 21.71, SD = 10.13), t(36.79) = -6.87. Similarly, mean parent ratings of Behavior Therapy Acceptability on the TAQ were higher for those that endorsed BT (n = 39; M = 39.54, SD = 7.81) than for those that did not (n = 11; M = 33.45, SD = 6.47), t(48) = -2.36. Overall, these results suggest that ratings of treatment acceptability on the TAQ generally are consistent with parents' stated preferences."                    
##  [46] "Construct validity: The relationships between performance on BIP and performance on three other self-report personality tests (16PF, NEO FFI and EPI) are presented in the manual. Criterion related: Validity data has been collected against observer ratings, income (corrected for age), hierarchical position (corrected for age), subjective estimation of career success and job satisfaction. Social Validity: Systematic feedback on users experience of completing the BIP has been collected (N=1573). Correlations with Impression Management and Acquiescence are also presented in the manual. Equivalence with other language editions was ensured through the carrying out of focus groups, cognitive interviews etc in the course of the UK standardisation."                                                                                                                                                                                                                                                           
##  [47] "A facet analysis was conducted on each sub-scale separately in order to provide proof of the validity of its contents. The results indicated that the items in the six sub-scales are representative of their respective content domain and that each item has a satisfactory degree of relevance to the construct being measured. Normative information for the GMDS-ER is based on a national standardisation sample representative of children between their second and eighth year of age in the UK (England, Wales, Scotland and Northern Ireland) and Eire (Republic of Ireland). The sample (N=1026) was stratified according to geographic region and was proportionate to the population ratios obtained in 1997 for the UK and Eire by the Office for National Statistics (ONS) and the Central Statistics Office (CSO) for children between their second and eighth year in age..."                                                                                                                                           
##  [48] "Relationship between ‘Implicitly’ and an 84 item self-report questionnaire comprising 28 overtly prejudiced beliefs and behaviours, 28 statements from the modern racism research (where underlying prejudices are expressed in a way that avoids sanction) and 28 distracter items. 8 Factors emerged from the self-report questionnaire data. Factor 1 was ‘Overtly prejudiced beliefs and behaviour’. Multiple regression was used to discover which of a number of algorithms underlying Implicitly scores was most predictive of Factor 1. Bi-variate mean correlation between ‘Implicitly’ raw scores and Factor 1 raw scores was calculated to be .45 across two UK population samples (N=318 and N=747). Score on ‘Implicitly’ is independent of general speed (across tasks) or error proneness. Studies have shown no impact of IQ. (Gray et al 2003). Some age effects evident. Older test-takers (>55) showed more prejudicial attitudes against ethnic groups than younger test-takers (<25)..."                            
##  [49] "Convergent and Discriminant validity: NSPS total scores for Groups 1 and 2 demonstrated significantly higher zero-order correlations with measures of social anxiety (r = .63-.73) than with measures of theoretically distinct constructs such as OCD (r = .40-.47) (p-values < .01; n = 225 and 316)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [50] "Convergent validity: SHI scores were highly correlated with scores on the Diagnostic Interview for Borderlines (r = .76, N = 221). Also, scores on the Borderline Personality Disorder Scale of the Personality Diagnosis Questionnaire-Revised and the SHI were highly related (r = .73, p < .01 )."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [51] "Convergent Validity: In a sample of patients with major depressive disorder, CPFQ scores were significantly correlated with both measures of sleepiness and fatigue: the Epworth Sleepiness Scale (r = 0.32; n = 149; p < 0.001) and the Brief Fatigue Inventory (r = 0.64; n = 150; p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [52] "Discriminant Validity: Analyses revealed that Children's Social Desirability Scale (n=123, r=.08, p=.41) and race (n=2310, O2=.01, p=.10) were not correlated with AEBLS-S scores. A significant relationship was found between AEBLS-S scores and gender (n=2458, r=.21, p=.01). A weak, but significant negative correlation was found between AEBLS-S scores and substance abuse (r= -.26; p< .001), and a significant negative correlation was also found between AEBLS-S and dispositional leisure boredom (r= -.33; p< .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [53] "External validity: Responsibility Goal predicted perceived competition, indicating a positive and significant correlation (b = .43), while the Relationship Goal did not in a meaningful way. The indices obtained were: x² (117, N = 813) = 396.46, p = .00; x↓3/g.l. = 3.38; CFI = .93; NFI = .90; TLI = .92; RMSEA = .05; SRMR = .04, which indicates that the data conform to the proposed model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [54] "Predictive validity: The DAS-4 was effective in predicting couple dissolution. For women, the following results were obtained: Χ2(1, N = 135) = 22.19, p < .01, OR = .79, CI = .713, .884. As for men, the following results were obtained: Χ2(1, N = 135) = 22.65, p < .01, OR = .79, CI = .705, .876."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [55] "Construct validity: The correlation between the indecisiveness scale and the self-esteem scale was .41 (n = 156, p < .01), indicating that low feelings of self-esteem go together with indecisiveness. As expected, the correlation between career indecision and self-esteem is lower, namely .18 (n = 156, p < .05). The difference between the two correlations is significant, t (153) = 2.70, p < .01."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [56] "Predictive validity: A discriminant function analysis (DFA) correctly classified 33 out of 38 children with autism/PDD, and only misclassified 8 of the 1,196 nonautistic children (false positives), indicating that the M-CHAT is successful at indicating children who require further follow-up. Of the nonautistic children misclassified as autistic, 5 were children who received evaluations and received diagnoses other than autism/PDD, and 3 were children who received phone follow-up. The 5 children with autism/ PDD who were misclassified as nonautistic were children whose parents initially underreported symptoms, and the child’s early intervention provider or pediatrician flagged the checklist for further investigation (n = 3), or children with checklist scores not very far above the cutoff (n = 2). Based on the DFA classification, the M-CHAT has a sensitivity of .87, specificity of .99, positive predictive power of .80, and negative predictive power of .99."                                
##  [57] "Criterion validity: Validity assessments show good support for the WSWS. The WSWS subscales can discriminate appropriately between symptom types and also reveal the positive relationship between negative affect and craving. In addition, the WSWS significantly predicted smoking outcomes [X2(7, N = 163) = 15.19, p = .034]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [58] "Concurrent validity: The MSDS showed substantial correlations with two measures of therapeutic adequacy, supporting concurrent validity. The correlations between the typescript (n = 116), Set 1 (n = 85), and Set 2 (n = 85) of the MSDS and the Discrimination Rating Scale were .60, .50, and .61, respectively. Comparable correlations with the Affective Recognition Scale were .70, .50, and .51, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [59] "Convergent validity: Intercorrelations of doctoral practicum students' ratings of supervisors on the three SSI scales with the three composite variables from Stenack and Dye's (1982) teacher, counselor,, and consultant items (N = 90) showed moderate to high positive relationships (ps < .001), with one exception. The attractive scale correlated highly with the counselor and consultant items (rs ≥ .65) but to a lesser extent with the teacher items (r = .42). The interpersonally sensitive scale correlated highly with all three variables (rs ≥ .60). The task oriented scale correlated most strongly with the teacher variable (r = .61) and least with the counselor variable (r = .21). These results demonstrate convergent validity because of the strong relationships between the empirically derived SSI scales and a measure of supervisory role behavior."                                                                                                                                                  
##  [60] "Criterion validity: All 44 situations of the Taxonomy of Problematic Social Situations for Children successfully distinguished a socially rejected group of children from an average, adaptive group. A significant multivariate main effect of status, F(6, 56) = 34.80, p < .001, and significant univariate effects (all ps < .001) indicated that teachers consistently rated the situations as being more problematic for rejected than for adaptive children. The mean item scores across the 44 items were 3.18 for the rejected group and 1.70 for the adaptive group. A discriminant function analysis yielded a highly significant prediction of a child's social status from the six factor scores, Wilks's lambda = .26, X2(6, N = 84) = 90.59, p < .001."                                                                                                                                                                                                                                                                   
##  [61] "Construct validity: Results showed that the Pearson correlation between obsessive and harmonious passion was .28 (n = 312), thus underscoring that both subscales are relatively independent from each other. With respect to obsessive passion, there was a significant positive association with the amount of money gambled in general (partial r = .51, p < .001), being a heavy gambler (partial r = .49, p < .001), longevity of gambling (partial r = .19, p < .001), and the number of gambling games involved in (partial r = .14, p < .05). Harmonious passion was not significantly associated with any of those measures. Obsessive passion and harmonious passion were both positively associated with game frequency (partial r = .31, p < .001 and partial r = .17, p < .01 for obsessive and harmonious passion, respectively) and game as part of the self (partial r = .46, p < .001 and partial r = .15, p < .01 for obsessive and harmonious passion, respectively)."                                                
##  [62] "Divergent and Concurrent Validity: The study (N = 341) supports the validity of the 29-item set of indicators of the IOA, which discriminates abuse cases (84.4% of the time) from nonabuse cases (99.2% of the time)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [63] "Client Group Classification (Rehabilitation , Psychiatric, or Medical) at Time of Evaluation (N = 150); Correct Classification: 90.67% (Wilks’ Ω = 0.0011, p < .000) Hospitalization Status (Not Hospitalized, Rehabilitation, Died, Medical Psychiatric, or Unknown) 6 Months Post Evaluation; Correct Classification: 90.60% (Wilkes’ Ω = 0.12, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [64] "Convergent/Discriminant Validity: Regarding convergent and discriminant validity, the DIS showed stronger correlations with the DRES (r = .92) and Restraint Scale (r = .82; Herman & Polivy, 1980), than with the Negative Affect Scale from the Positive and Negative Affect Schedule (PANAS-X; r = .42; Watson & Clark, 1992) and Body Dissatisfaction Scale (r = .48; Stice & Shaw, 1994). Predictive Validity: A second pilot study (N = 59) found that the DIS predicted a behaviorally based measure of eating: fat-gram consumption (r = -.32)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [65] "Using a subsample of the Second Sheffield Psychotherapy Project (SPP2) data set, which comprised only project clients who completed psychotherapy treatment (N = 117; see Shapiro et al., 1994, for details), pre- and post-treatment scores on the full and short versions were compared. The pre-therapy scores for the full IIP and IIP-32 were 1.68 (SD = .45) and 1.62 (SD = .45) respectively, while at post-therapy assessment they were 1.23 (SD = .57) and 1.21 (SD = .56) respectively. Overall, these changes indicate effect sizes of 1.00 for the IIP-127 and 0.91 for the IIP-32. The changes at the level of the eight scales showed significant improvement (p < .001 on all tests) on all short-form scales as did the scales of the long version except, in both cases, for the scale T. Open (p < .2). The correlations between the full liP and the IIP-32 at pre- and post-treatment administrations were . 94 and . 96 respectively."                                                                              
##  [66] "Global PSQI scores differed significantly between subject groups (healthy subjects, n =52, depressed patients, and sleep-disorder patients). Validity of the PSQI was further confirmed by comparing PSQI estimates of sleep variables with those obtained by polysomnography."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [67] "Construct Validity: The internal-consistency estimates given above (weighted mean = .832) suggest that the items on the CPI-EMD scale are measuring a relatively coherent (though factorially complex) construct. Convergent Validity: The mean effect-size estimate for condition of 1.39 (and the corresponding condition versus CPI-EMD scale correlation of .57) indicates that this scale is indexing a behavioral variable—the tendency to distort personality item responses in an employment context. Next, the correlation between the CPI-EMD and CPI-Fake Good measures (with the Study 1 sample in the E condition) was .843 (n = 250). Finally, the correlation between CPI-EMD and CPI-Based Counterproductivity (CPI-Cp) scores (both from E-condition data)was –.587 (n = 250, p < .0001 directional; cf. the earlier EMD criterion vs. CPI-Cp scale r of –.204)."                                                                                                                                                       
##  [68] "Convergent Validity: Convergent validity of the DDI was supported by expected gender differences. In particular, women reported more of a tendency to disclose distress (M = 42.21, SD = 9.16, n = 156) than men (M = 36.33, SD = 8.98, n = 111), t(265) = 5.21, p < .001. In addition, the DDI correlated positively and strongly with measures of self-disclosure, social support, and extraversion; DDI scores were also positively (although more modestly) related to positive affect. Also as predicted, DDI scores were negatively related to measures of self-concealment and, to a lesser extent, to depressive symptoms. Contrary to expectations, the DDI failed to correlate with anxiety symptoms. Discriminant Validity: Discriminant validity of DDI scores was established in that the DDI correlated weakly with neuroticism and social desirability; the correlation between the DDI and negative affectivity was higher than expected but still weak in magnitude."                                                   
##  [69] "Discriminant Validity: Each RUSHS subscale and total scale was evaluated for its ability to discriminate between students with low (n = 82) and high (n = 273) stress (as defined above). The independent t tests indicated that compared to students with low stress, students with high stress reported statistically significantly greater frequency and severity of hassles on all of the scales associated with the RUSHS (range of p values = .01-.0001). In particular, highly stressed students reported a statistically significantly higher frequency and severity of hassles in the areas of Time Pressures, Financial Constraints, Friendships, Physical Appearance, and Total Hassles (p < .0001). The effect sizes for these statistically significant differences were medium to large according to Cohen’s (1988) criteria (average d = .84, SD = .47)."                                                                                                                                                                 
##  [70] "Construct validity: with S-GRIT (n=109), a similar test directed at graduates, managers & technical professionals - r = 0.67; GRIT 3 (previous version) with Alice Heim AH6 Test r = 0.80. Criterion-related validity: with line-manager ratings of decision making capability (n=19), r = 0.50, p<0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [71] "Construct validity: with GRIT (n=109), a similar test directed at senior managers, executives & senior technical professionals - r = 0.67; with 16PF Factor B, \"Reasoning\" (N=212) - r = 0.59; with SHL's ASO verbal (N=61), r=0.65 and ASO numerical, r = 0.48). Criterion-related validity: with annual performance review data, r = 0.32. More information available in manual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [72] "Construct validity: with 16PF Factor B, \"Reasoning\" (N=151) - r = 0.66; Criterion-related validity: with assessment centre ratings of Intellectual Capacity & Decision making - r = 0.21 (n=101); with assessment centre ratings of Planning & Organising - r = 0.23 (n=101); with development centre ratings of problem solving & decisiveness - r=0.32 (n=105)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [73] "Construct validity: Comparisons with 16PF (n = 54) Theoretical vs 16PF Factor F (liveliness) - r = -.55; Competitive & Individual vs 16PF Factor O (apprehension) - r = -0.25; Self-critical vs 16PF Factor O (apprehension) - r = 0.60; Task Focus vs 16PF Factor E (Dominance) - r = 0.38; Guarded vs 16PF Factor N (Privateness) - r = 0.62. Criterion-related validity: Correlations with assessment centre ratings (N=57) r = 0.27 up to 0.33 for all scales; Correlations with Sales performance (N = 22) - r = 0.44 for Self-critical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [74] "Construct validity: with Watson-Glaser Critical Reasoning Test (n=61) - r = 0.0.35; Criterion-related validity: with development centre ratings of communication (n = 84), r = 0.30, p<0.01; with company-rated performance measure of communication (n=39), r = 0.36, p<0.05; with sales ability (n=36) r = 0.35."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [75] "Criterion-related validity: Individual scales correlate with actual sales volume, r = up to 0.38; with Manager ratings of performance, r = up to 0.40 (n = 38). Global scales correlate with ratings of performance r = up to 0.43."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [76] "The brief CBI was internally validated against a measure similar to the original open-ended format using a sample of university students. Participants were to imagine being nominated for a creative undergraduate award and to list their five most creative accomplishments in support of this. Responses were typed and judged by 4–6 raters (alpha = .86 for the four judges in year 1; alpha = .91 for the six judges in year 4). With N = 400, the average “dossier” rating correlated r = .40, p < .001, with the brief CBI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [77] "Predictive validity of the CAQ was established against artist ratings of a creative product, a collage (r = .59, p < .0001, n = 39). Study 3 (n = 86), convergent validity was established with other measures of creative potential, including divergent thinking tests (r = .47, p < .0001), the Creative Personality Scale (Gough, 1979; r = .33, p = .004), Intellect (Goldberg, 1992; r = .51, p < .0001), and Openness to Experience (Costa & McCrae, 1992; r = .33, p = .002); discriminant validity was established between the CAQ and both IQ and self-serving bias. A three-factor solution identified Expressive, Scientific, and Performance factors of creative achievement. A two-factor solution identified an Arts factor and a Science factor."                                                                                                                                                                                                                                                                        
##  [78] "Convergent Validity: Internalization was correlated with an implicit measure of self-concepts and moral traits (r = .33, p < .001; N = 124), but the implicit measure was not correlated with Symbolization (r = .11, p < .20; N = 124). These results provide some evidence for convergent validity. Discriminant Validity: Both dimensions of moral identity showed weak or nonsignificant relationships to presumably unrelated constructs. The one exception is that the Symbolization dimension was modestly correlated to self-esteem. Predictive Validity: The results showed that both Internalization (M = 4.0, SD = 0.7, r = .39, p < .001) and Symbolization (M = 3.0, SD = 0.7, r = .28, p < .001) were significantly correlated with external judges’ ratings of the moral content of self-concept descriptions."                                                                                                                                                                                                           
##  [79] "Criterion Validity: The SES-T total score correlated r = .69 (n = 678) with the Self-Efficacy Teacher Report Scale total score, and r = .80 (n = 85) with the Self-Esteem Rating Scale for Children total score, indicating acceptable criterion-related validity. Factorial Validity: The one-factor extraction accounted for 52.4% of the variance among item responses and was the most parsimonious and interpretable result. Factor structure coefficients for the 28 items ranged from .05 to .90, with only Item 24 (“My student learns new things easily”) not meeting the .30 salience criterion. The joint examination of the goodness of fit statistics for the SES-T data in this case indicated a cautious acceptance of fit for the unidimensional model."                                                                                                                                                                                                                                                                 
##  [80] "External Validity: All four scales of the CM3 resulted in statistically significant, albeit modest, positive correlations with mastery goals, self-efficacy, and self-regulation at the p < .01 level (one-tailed). Predictive Validity: Strong relationships were found between scores on the Creative Problem Solving scale and performance on the Math subtest of the SAT9 (r = .33, p < .001), and between scores on the Cognitive Integrity scale and performance on the Reading subtest of the SAT9 (r = .43, p < .001). Correlations of similar magnitude were found between the CM3scales and GPAin Study 2, with the strongest relationship resulting between GPA and scores on the Mental Focus scale. Discriminant Validity: No relation was found between the Marlowe-Crowne and the scales of the CM3. The results were the following: Learning Orientation (r = –.03, n = 661), Creative Problem Solving (r = –.03, n = 652), Mental Focus (r = –.06, n = 574), and Cognitive Integrity (r = .00, n = 646)."               
##  [81] "Criterion Validity: Approach and problem-focused avoidance were both positively related to pain controllability (r = 0.57; r = 0.39, respectively) and coping effectiveness (r = 0.37, r = 0.37, respectively). Emotion-focused avoidance was negatively related to pain controllability (r = −0.30) and coping effectiveness (r = −0.52). Problem-focused avoidance was negatively related to pain intensity (r = −0.19) and distress (r = −0.33) and emotion-focused avoidance was positively related to pain intensity (r = 0.21) and distress (r = 0.57). Approach coping was not significantly related to pain intensity or distress. Among the high school students (n = 41–42), lower levels of problem-focused avoidance and higher levels of emotion-focused avoidance were related to higher levels of functional disability. Approach coping was not significantly related to functional disability. Higher levels of approach and problem-focused avoidance coping were related to higher tender point thresholds."          
##  [82] "Concurrent Validity: The empathy scale was built to predict Q-sort-derived empathy ratings. In the samples used in its development (N = 211), the average correlation between the scale and empathy ratings was .62; in an independent sample of medical school applicants (N = 70), this figure was .39."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [83] "Standardization: Clarity of preference against UK sample (n = 1260)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [84] "The development of the SSD was based on existing scales, DSM-IV, ICD-10, and judgments of independent experts on the items and subscales of the SSD. This basis contributes towards its content validity, since it suggests that the SSD measures what it was supposed to measure. Concurrent validity was confirmed by the Kruskal–Wallis test, which demonstrated a statistically highly signi\u008ecant variation in SSD and subscale scores across diagnostic groups (x2(4) = 57.83, p = < .01 for the total SSD score). Concurrent validity was also demonstrated in the comparison between those with and those without a dissociative disorder, for which the independent samples t-test was statistically highly significant (t(10.04) = -5.30; p < .001). Internal Criterion Validity: Among the item–subscale correlations, none of the Pearson coefficients was ≤ .4 (N = 130). The subscale–total correlations among the subgroups were all significant. Convergent and Discriminant Validity were also supported."          
##  [85] "Construct Validity: A small but statistically significant relationship was found between the number of community activities engaged in and empowerment (r = .15, N = 261, p = .02). A small but statistically significant inverse correlation was found between use of traditional mental health services and empowerment (r = -.14, N = 256, p = .02). In addition, positive correlations were found between empowerment and quality of life, social support, and self-esteem. Known-Groups Validity: The Empowerment Scale was administered to 56 hospitalized patients and 200 college students. The difference in the two groups' scores lent credence to the scale’s ability to discriminate among groups of respondents whose feelings of empowerment are different from those of participants in self-help programs."                                                                                                                                                                                                             
##  [86] "Convergent & Discriminant validity: The Anger Discomfort Scale (ADS) showed no significant relationship to SAT combined scores (n = 137, r = .06), or social desirability (n = 98, r = -.12). The ADS correlated positively with anger-out (n = 150, r = .20, p < .01), anger-in (n = 150, r = .32, p < .001), and general anger expression (n = 150, r = .34, p < .001), while correlating negatively with anger control (n = 150, r = -.16, p < .05). The ADS demonstrated a substantial positive relationship with trait anxiety (n = 75, r = .51, p < .001). The correlations between the ADS and familial emotional suppression (n = 75, r = .18) and discomfort with others' anger expression n = 75, r = .12) were both nonsignificant. Factorial validity: Four factors were extracted having eigenvalues of 4.35, 1.72, 1.38, and 1.28 respectively"                                                                                                                                                                            
##  [87] "Validity was proven by determining the correlation of the Physical Self-Maintenance Scale (PSMS; Lowenthal, 1964) and the IADL with the following measures: Physical Classification (PC; Waldman & Fryman, 1964), Mental Status Questionnaire (MSQ; Kahn et al., 1960), and the Behavior and Adjustment rating scales (BA; Waldman & Fryman, 1964, revised by Brody & Lawton). All correlations were significant at the .01 level except for the BA-IADL (N = 44) correlation, which just misses the .01 level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [88] "The Evaluation of Teaching Competencies is a unidimensional measure that correlated strongly with an instructor-related composite of the Students’ Evaluation of Educational Quality (SEEQ, r = .72), but not to a SEEQ composite related to instructor assigned work (r = .04, N = 195)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [89] "Construct Validity: The LGBTCI scores were correlated with total scores on the MSQ-SF (Weiss et al., 1977), resulting in a correlation of .58 (n = 84; p < .001). The LGBTCI scores correlated –.52 (n = 85; p < .001) with the LGB Workplace Discrimination Survey (Croteau et al., 1998). Correlations in this range indicate adequate evidence of construct validity. Correlations should be “moderately high, but not too high” (Anastasi, 1982, p. 145). These moderate correlations indicate that the construct measured (workplace climate) was related to but not synonymous with the construct of work satisfaction and with self-reports of workplace discrimination."                                                                                                                                                                                                                                                                                                                                                         
##  [90] "In study 1, confirmatory factor analysis results supported a unidimensional model for the Modern Homonegativity Scale -- Gay, S-B Chi-Square (52, N=180)=97.04, p<.001, *CFI=.95, RMSEA=.07, SRMR=.05. Given the excellent fit between the hypothesized model and the data, no parameter estimates were included in this model. CFA results also supported a unidimensional model for the MHS-Lesbian, S-B Chi-Square (53, N=182)=61.61, p<.05, *CFI=.98, RMSEA=.05, SRMR=.04. The proposed conceptual distinction between modern homonegativity and the old-fashioned homonegativity, as well as \"modern\" homophobia was confirmed. The excellent fit of the separate two-factor CFA models, one using MHS-G and ATG scale items and one using MHS-L and ATL scale items, reveals that the MHS and ATLG measure two, distinct forms of homonegativity. This distinction is a vital strand of evidence in support of the MHS' construct validity. These results were replicated in Study 2 with American participants."                
##  [91] "Validity: The rCSM showed good correlations with self-reported sleep–wake rhythm, midpoint of sleep, personality (conscientiousness). Correlations between the German version of the Morningness-Eveningness Questionnaire (MEQ; Griefahn et al., 2001) and the rCSM were found to be a bit lower (r= 0.846; p < 0.001, N= 79) compared to the correlation of the full scale with the MEQ (r = 0.89; see Randler 2008a) but it was considered acceptable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [92] "Construct Validity: Female students' BDI scores (M = 7, SD = 5) correlated significantly (r = .52, p < .0001) with their STSS scores (M = 78, SD = 15), the P&HSII group BDI scores (M = 12, SD = 8) correlated (r = .51, p < .0001) with their STSS scores (M = 82, SD = 19), and the battered women's BDI scores (M = 21, SD = 11) correlated significantly (r = .50, p < .0001) with their STSS scores (M = 100, SD = 26). The STSS varied significantly in the expected direction across the three female populations. Analysis of variance indicates significant differences among STSS means (students: n = 63, M = 78; P&HSII: n = 266, M = 82; battered women: n = 140, M = 100; F[2, 466] = 43.20, p < .0001) and among BDI means (students: n = 63, M = 7; P&HSII: n = 268, M = 12; battered women: n = 140, M = 21; F[2, 468] = 68.26, p < .0001)."                                                                                                                                                                           
##  [93] "None of the five situation factors was correlated as highly with each other (r = .30 to .55) as with total score (r = .65 to .84), indicating that factors were measuring distinct aspects of the global construct. Parental report of anger intensity (rated on a 10-point scale) was highly correlated with the rank ordering of punishment intensity (r = 234, p < .05) for a sample of 42 parents. Observations of mothers and their children in the waiting room for a small sample (n = 26) were conducted, and interactions were coded according to a system developed by the authors. Correlations between mothers’ IPPS scores and their observed behavior were calculated. High IPPS total scores were correlated with low warmth ratings (r = -.57, p < .01) , fewer nondirective attending statements ( r = -.46, p < .05), and more interferences with the child’s play (r = .44, p < .05)."                                                                                                                                
##  [94] "The female prediction equations failed to generalize to a male sample (N = 100), with only 1 of the 20 MIQ subscale prediction equations being validated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [95] "Evidence for the construct validity of the old hardiness test is summarized in Kobasa et al., 1985. Principal components factor analyses (varimax rotation) revealed three factors of commitment, challenge, and control in samples of bus drivers (N = 787) and Army officers (N = 111), confirming the relevance of a three-facet model of hardiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [96] "In cross-validation, factor coefficients based on one sample are tested against another sample in which both samples have been drawn from the same population. The second subsample in this study (n = 325) was used to replicate the findings for cross-validation purposes. A comparison indicated that correlations between factor pattern coefficients in the two subsamples were .68, .91, .82, and .85 for Factors I, II, III, and IV, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [97] "Factor analytic evidence from an initial sample (n = 361) of college chemistry students shows the Chemistry Laboratory Anxiety Instrument measures five constructs: working with chemicals, using equipment and procedures, collecting data, working with other students, and having adequate time. The modified scales also show moderate correlation (ranging from .23 to .71), and the five anxiety scale scores all show a negative correlation with the Relief scale that was inferred from the factor analysis results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [98] "Criterion Validity: Direct comparison of this questionnaire to a scale previously developed in the literature (BCHK) supported the utility of the new questionnaire for evaluation of knowledge after counseling. Compared to non-counseled groups (n = 45), women who had undergone genetic counseling (n = 28) scored significantly higher (P < 0.0001) on the BGKQ, but not on the other questionnaire, establishing the BGKQ’s criterion validity. Content Validity: The instrument’s content validity was high, as evidenced by high levels of independent interrater agreement (0.93) on items."                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [99] "Principal factor analysis of the Ways of Coping checklist data, calling for two factors and using a varimax rotation, also lent empirical support for the rationally derived scales: problem-focused coping and emotion-focused coping. Correlations between the P- and E-scales were .35 (N = 81), .52 (N = 63), and .44 (N = 83). The mean correla- tion was .44. Because both scales measure processes believed to be used together in nor- mal coping, a relationship between the two was expected. However, since the mean r2 was .19, there is enough variance not shared by the two scales to support their independent use"                                                                                                                                                                                                                                                                                                                                                                                                      
## [100] "The confirmatory factor analysis showed that the measurement model fits the data well, X2(27, N = 291) = 36.59, p = .10."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [101] "Predictive Validity: The difference in percent of suicides between \"high-risk\" subjects (estimated risk of suicide over 4.94%) and \"not-high-risk\" subjects (11.5% [N = 96] versus 2.1% [N = 40]) was statistically significant (p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [102] "The concurrent validity of the Modified Scale for Suicidal Ideation (MSSI) was assessed by examining the relationship between the MSSI Total Score and other measures of the severity of suicidal ideation. Correlation coefficients were calculated between the MSSI Total Score and the expert clinician's ratings for the entire Study 2 sample (n = 50; Question 1, r = 70; Question 2, r = .76; Question 3, r = .72; Question 4, r = .68) and for those patients (n = 30) with suicidal ideation on the MSSI (Question 1, r = .71; Question 2, r = .69; Question 3, r = .72; and Question 4, r = .65). The MSSI Total Score also correlated significantly with suicide items from the Beck Depression Inventory (BDI; r = .60) and the Modified Hamilton Rating Scale for Depression (MHDRS; r = .34). The construct validity of the MSSI was examined by correlating the MSSI with the BDI (r = .34) and Hopelessness Scale (r = .42)."                                                                                            
## [103] "To test the measurement invariance of the instrument, the authors further conducted multiple-group CFA using the third subsample (n = 5,177) from the US data and the sample from China. The results indicated that the hypothesized model of measurement invariance was good, χ² = 1.27, CFI = .97, RMSEA = .05, and SRMR = .03. Moreover, the χ² difference between this invariant model and the model in which parameters were set to be freely estimated across two groups was not significant, χ² = 14.61, df = 14, p > .05. These results suggested that the measurement model for the school relationship was invariant across countries."                                                                                                                                                                                                                                                                                                                                                                                        
## [104] "The correlations between scores for the three subscales were as follows: CD-General With Spirituality, r = .22 (p = .001, N = 207); CD-General and CD-Patient, r = .55 (p < .001, N = 159); Spirituality and CD-Patient, r = .28 (p < .001, N = 159). Considering the CD-General scale, the highest correlation with another measure was on the Fear of Death subscale of the Death Anxiety Profile—Revised (DAP-R; r = .75). The highest correlations for the Spirituality scale were with the DAP-R Approach-Acceptance subscale (r = –.78), the Systems of Belief Inventory (SBI-15R) Beliefs subscale (r = –.82), and the importance of spiritual beliefs item (r = –.72). With respect to the correlations between the combined Concern About Death (CAD) score and the other measures, the highest correlation is with the Fear of Death subscale (r = .77), and the lowest is with the Escape Acceptance subscale (r = –.18)."                                                                                                    
## [105] "Discriminant Validity: As a preliminary step, the authors wanted to ensure that individual perceptions of climate of authenticity were not redundant with team social support perceptions. A separate sample of hospital workers who did not meet our main study criteria (N = 211) received the climate of authenticity items (alpha = .78) and three team support items (alpha = .81; based on Marks, Mathieu, & Zaccaro, 2001). Confirmatory factor analyses supported that a two-factor model was a better fit than a one-factor model [∆X(2)(1) = 133.80, p < .01]. This initial evidence supports the internal consistency of the climate of authenticity items and that perceptions of climate of authenticity were discriminant from team support."                                                                                                                                                                                                                                                                              
## [106] "In study 1, all eight factor loadings were statistically significant (p = .001), and the average standardized factor loading was .83 (SD = .05). In study 2, a confirmatory factor analysis was conducted to test the validity of the measurement model for the multi-item scales. The hypothesized four-factor model separating core self-evaluations, popularity, OCB, and CWB was tested. Fit statistics for the four-factor measurement model were as follow: Chi-squared (623, N = 139) = 1,189.03, p = .001, CFI = .92, SRMR = .075. The 37 factor loadings all were statistically significant (p = .05), and standardized factor loadings for each variable averaged .57 for core self-evaluations, .84 for popularity, .78 for OCB, and .72 for CWB."                                                                                                                                                                                                                                                                            
## [107] "Convergent/Discriminant Validity: The results of a factor analysis showed that (a) the leadership role occupancy variable loaded with variables such as the number of professional associations the respondent held and (b) the measure did not load on factors that are supposed to measure personality traits or years of working. These results provide evidence for the convergent and discriminant validity of the leadership role occupancy measure. Construct Validity: Evidence is available for the construct validity of this leadership measure by examining its correlations with other individual items and variables. Leadership role correlated significantly with the number of professional associations led by the respondent (r = .21, p < .001, N = 388 owing to missing data) and with scales formed using similar biohistory items in which respondents reported their past leadership activities in high school (r = .31, p < .001) and in current community activities (r = .15, p < .01)."                      
## [108] "The correlation between the PPNS-IE and the Children's Nowicki-Strickland Internal-External Control Scale (CNS-IE) for 8-year-olds was significant (r = .78, n = 60, p< .001). A factor analysis found three factors. The PPNS-IE had positive and significant relations to higher achievement and less distancing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [109] "Construct Validity: A confirmatory factor analysis using LISREL 8 (Joreskog & Sorbom, 1996) was conducted on the relevant items of the WFLQ to seek evidence for construct validity. The goodness of fit of the five-factor model, as evidenced by a variety of indices, was not impressive, x2(199, N = 481) = 1,194.77, p < .001; goodness-of-fit index (GFI) = .81; adjusted goodness-of-fit index (AGFI) = .76; nonnormed fit index (NNFI) = .66; comparative fit index (CFI) = .71. However, when compared with a single-factor solution, the fit of the model was acceptable."                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [110] "Construct Validity: Supporting construct validity, Bowling and Hammond's (2008) meta-analyses showed that the only one of 18 hypothesized antecedents that did not yield the expected relationship with the MOAQ-JSS was role overload (p = .03, k = 12, N = 3259). As a whole, results regarding the hypothesized causes of job satisfaction were consistent with the nomological network. Additionally, the MOAQ-JSS yielded positive relationships with each of 22 hypothesized correlates of job satisfaction. The meta-analyses also showed that yielded expected relationships with 6 hypothesized consequences of job satisfaction. Finally, findings regarding the relatively strong relationships between the MOAQ-JSS and emotion-related variables (i.e., affective commitment, job tension, depression, emotional exhaustion, and frustration) provided support for the affective nature of the MOAQ-JSS. Overall, scores were consistent with previous normative data."                                                     
## [111] "The results suggest that the two-factor model adequately fit the data, root mean square residual (RMR) = .059, goodness of fit index (GFI) = .94. Further, the two-factor model also fit the data better than did a single-factor comparative model, ΔX2(5, N = 161) = 41.92, p < .005. Thus, the authors are confident in the validity of the internal structure of the Student Athlete Role Conflict Scale as whole and the Role Interference and Role Separation subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [112] "Confirmatory factor analysis was used to test the proposed six correlated latent factor model (interactional justice, distributive justice, procedural justice, outcome favorability, organizational attractiveness, and intentions to apply) with 22 observed variables. The fit produced by this model, however, was poor. Removing three items, none of which were part of the Interactional Justice Scale, improved the overall fit of the model to a reasonable level (Chi-square [137, N = 281] = 356.71, p < .001, TLI = .93, CFI = .94, RMSEA = .073). Standardized factor loadings for the Interactional Justice Scale Items ranged from .66 to 1.00."                                                                                                                                                                                                                                                                                                                                                                          
## [113] "Discriminant Validity: The authors investigated the discriminant validity among the three closely related constructs studied, including the intentions measure, by using confirmatory factor analysis procedures. A restrictive three-factor model (with the two factor pattern coefficients freed) yielded an acceptable fit to the data, χ2 (85, N = 302) = 139.04, p < .001; CFI = .976; RMSEA = .046. All items had statistically significant pattern coefficients on their designated factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [114] "Convergent Validity: The five-item measure of benefit perceptions correlated with the original two-item benefit perceptions measure at .87 (p < .01; n = 145)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [115] "The validity of the normative belief measure was assessed with confirmatory factor analysis (CFA). The CFA model included the five normative belief items with an acceptable fit, X2(5, N = 80) = 20.35, p < .01, and parameter estimates significant at p < .01. The goodness-of-fit index was .90, with a comparative fit index of .88. Further indicants of the scale’s favorable properties are the average variance extracted value of .47 and a composite reliability of .81 (Fornell & Larcker, 1981)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [116] "The factor structure of the 22 items marking the SoC and SwC subscales was examined and compared across Sample 2 (N = 2070) and Sample 3 (N = 988). A principal axis factor analysis was conducted. In both samples, an examination of the scree plot indicated the extraction of two factors accounting for 44.7 and 46.5% variance, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [117] "Initial validity evidence of this measure was evaluated in a pilot study (N= 1000) before inclusion in the final study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [118] "Concurrent Validity: A sub-sample’s (N = 33) resiliency was positively related to salivary IgA levels (an immune marker). Predictive Validity: Results from hierarchical regressions demonstrated that resiliency measured in Wave 1 was positively related to job satisfaction, work-life balance, and quality of life; and negatively related to physical/psychological symptoms and injuries at work in Wave 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [119] "Content/Factorial Validity: The content validity of the scale was determined from expert opinion and appraisal data collected from 92 teachers, stress researchers and practitioners. Data collected from two samples of special education teachers (n = 370; « = 37I) and one sample of regular education teachers (« = 433) were then subjected to factor analyses followed by varimax and oblique rotations. Six factors resulted for each of two measures: stress strength and stress frequency. Additional analyses indicated that each subscale has moderate-to-high correlations between the strength and frequency measures of each subscale, and a large degree of agreement for the content validity of each subscale, for each of six subscales: Personal/Professional Stressors; Professional Distress; Discipline and Motivation; Emotional Manifestations; Biobehavioural Manifestations; and Physiological-Fatigue Manifestations."                                                                                       
## [120] "Construct Validity: High procrastinators (N = 44); compared to low procrastinators (N = 45) indicated that they spent less time and less adequate time working on their projects (p < .01). High and low procrastinators did not differ on any other dimension. Considering the wide differences in method between the true-false personality inventory and the personal projects questionnaire, these results provided good support for the construct validity of the procrastinarion scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [121] "Convergent validity (Pearson) between parent ASSQ-GIRL and the full ASSQ scale was good (r = 0.85 n = 191; p < .001). The mean total scores of the ASSQ-GIRL differentiated between the ASD and ADHD groups of both girls and boys, but this was not the case with the Conners-10."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [122] "Structural Equation Modeling indicated significant relations between TASCQ scales and students’ needs, supporting the validity of TASCQ scores. The model fit was good (χ² (97, N = 697) = 371.824, p < .001; CFI = .942; NNFI = .928; GFI = .931; RMSEA = .064, 90% confidence interval [CI] = .057, .071; SRMR = .040). Specifically, teacher autonomy-supportive structure was related positively to students’ autonomy (γ = .39, p < .001) and involvement was related positively to students’ competence (γ = .44, p < .001) and relatedness (γ = .54, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [123] "Validity testing was based mainly on clinician ratings (r = 0.49, n = 69)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [124] "study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [125] "A study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [126] "study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [127] "study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [128] "A study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [129] "A study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [130] "A study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [131] "A study of the tests’ construct validity involving a sample of N=256 adult respondents and 270 children and young people provided empirical confirmation of the theoretical model on which the WAF test battery is based and was able to distinguish it from other models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [132] "The internal consistency of the test was calculated as Cronbach’s Alpha. The reliabilities of the two variables Alcohol risk and Dissimulation vary between r=0.73 and r=0.79 for the long form and between r=0.72 and r=.076 for the short form. The consistency of measurement of the individual variables is adequately high. The ATV can thus be regarded as a sufficiently precise diagnostic instrument. In both the long and the short form the variables Alcohol risk and Dissimulation correlate very strongly with each other; that is, in both forms the two variables measure the same trait (Alcohol risk: r=0.97; p=0.000; N=100/Honesty: r=0.99; p=0.000; N=98)."                                                                                                                                                                                                                                                                                                                                                         
## [133] "Factor Structure: Consistent with the original Spanish version, the Italian version showed a three-factor structure (Interpretation Anxiety, Examination Anxiety, and Fear for Asking for Help), and results indicated substantial equivalence of factor model parameters across countries. Validity: To evaluate the SAS validity, Pearson’s product–moment correlations relating SAS score and basic math abilities (PMP), math self-efficacy (SMP), statistics self-efficacy (CSSE), and statistics attitude (SATS) scores were calculated. The results attested that all the relationships were significant—PMP: r(N = 410) = −.19, p < .001; SPM: r(N = 421) = −.36, p < .001; CSSE: r(N = 336) = −.18, p < .01; SATS: r(N = 335) = −.46, p < .001."                                                                                                                                                                                                                                                                                
## [134] "Studies show correlations with Raven’s matrix tests APM (Raven, Raven & Court, 1998) and SPM (Raven, Raven & Court, 1979) of r=0.30 to r=0.41 (APM, N=237) and r=0.42 to r=0.52 (SPM, N= 256) for the item groups and r=0.52 and r=0.66 for the overall test score. Correlations with INKA (Heyde, 1995) are between r=0.36 and r=0.47, or r=0.54 for the test as a whole (N=320)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [135] "The major variables comprising the perception of efficacy in the domain under consideration – rock climbing – were identified inductively by semi-structured interviews with active recreational rock climbers (N = 5), climbing instructors (N = 2) and academic specialists in the areas of social cognitive theory (N = 2), risk taking (N = 1), and sport psychology (N = 2). The ten variables identified were congruent with self-efficacy theory (Bandura, 1997)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [136] "Two team-level confirmatory factor analyses using maximum likelihood estimation were performed: one on the monitoring and trust items of T1 and one for T2. The results of the analyses indicated an adequate fit and supported convergent validity for a two-factor model at both measurement moments: T1, X² (26, N = 67) = 61.34, p < .01, comparative fit index (CFI) = .96, standardized root-mean-square residual (SRMR) = .08; T2, X²(26, N = 67) = 74.67, p < .01, CFI = .95, SRMR = .076; all item-factor loadings were significant (p < .05). Analyses also indicated that the hypothesized two-factor models fitted the data significantly better than a one-factor model, thus providing evidence of discriminant validity."                                                                                                                                                                                                                                                                                                 
## [137] "Face Validity: Face validity was tested through a process of review first with an academic colleague experienced in the field of organizational learning and then with a focus group comprised of MBA students (N = 35). The measures were further refined in two pilot tests with employees of the host firm. Discriminant Validity: Confirmatory factor analysis (AMOS 5.0) was used to test the measurement model for construct and discriminant validity of support for creative thinking along with four other variables in the current study (transformational leadership, goal clarity, job satisfaction, and acquisition acceptance). The results indicated a good fit for the proposed five factor structure (χ2 = 298.9/df 125, RMSEA = .06, CFI = .95)."                                                                                                                                                                                                                                                                      
## [138] "The ComFor was tested on a sample of 623 children and adults from the Netherlands and Flanders with a developmental level between 12 and 60 months on the domain of daily living skills. The sample consisted of three subgroups: (1) a group of children and adults with autism and an intellectual disability (N=310), children and adults with an intellectual disability without autism (N=174), and a control group of typically developing children (N=139). Construct validity has been established by comparing results of the groups with and without autism, principal component analysis, computation of intercorrelations, and analysis of the course of the scores of the clinical subsamples. Convergent and divergent correlation patterns were also identified. Also see the test manual: Verpoorten, R., Noens, I., Berckelaer-Onnes, I. van (2008) ComFor; Forerunners in Communication. Manual. Leiden: PITS."                                                                                                        
## [139] "A factor analysis extracted three compliance factors (Influence of Others, Prevention, and Medication Affinity) and five noncompliance factors (Denial/ Dysphoria, Logistical Problems, Rejection of Label, Family Influence, and Negative Therapeutic Alliance). The 1-month post discharge global ROME compliance and noncompliance scores were correlated with 1-month Drug Attitude Inventory and Neuroleptic Dysphoria Scale summary scores (n = 33). All summary scores correlated strongly with each other in the expected direction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [140] "The Drug Attitude Inventory, was compared to the only other scale in common use. This instrument developed was by Van Putten and May (1978). At 24 hours the product-moment correlation between the scales was r = 0.76 (p < 0.0001, n = 52) and at 48 hours, r = 0.74 (p < 0.001, n = 49). The rate of concordance between the scales in classifying the sample into dysphoric re- sponders with negative subjective feelings and nondysphoric responders was excellent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [141] "Convergent/Discriminant Validity: Interfactor correlations ranged from .64 to .87, suggesting a clear underlying unifying construct. However, none of the confidence intervals around the factor correlations contained 1.0, supporting the discriminant validity of the separate dimensions of the instrument. The authors constrained the highest correlation to 1.0 and tested the fit of this model against the unconstrained model. As with the trait measure, the constraint led to a significant loss in fit, delta X2(1, N = 204) = 19.98, p < .00001, again supporting the discriminant validity of the model."                                                                                                                                                                                                                                                                                                                                                                                                                 
## [142] "Convergent/Divergent Validity: Good convergent validity was demonstrated by the moderate to large correlations between the SPRS and measures of social anxiety (SPAI r = -0.65, p < 0.001) and shyness (SRS r = -0.55, p < 0.001). Participants with poorer performance scores reported being more shy and more socially phobic than those with better performance. Within the phobic subsamples, good divergent validity was evinced by the small correlation of the SPRS with the Beck Anxiety Inventory score (r = -0.25, p < 0.09; n = 47). Criterion Validity: A one-way ANOVA with the total score as the dependent variable revealed significant group differences among the socially phobic, anxious control, and normal control groups, F(2,73) = 16.31, p < 0.001."                                                                                                                                                                                                                                                            
## [143] "Construct Validity: Analysis of the pilot data suggested a four-factor structure: Traditional Management, Traditional Teaching, Constructivist Teaching, and Constructivist Parent. A validation study included preservice teachers (n = 896). The results did not confirm the four-factor structure; further analysis suggested a three-factor structure, eliminating the Constructivist Parent factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [144] "The S-LANSS scale correctly identified 75% of pain types when self-completed and 80% when used in interview format. Sensitivity for self-completed S-LANSS scores ranged from 74% to 78%, depending on the cutoff score. There were significant associations between NPS items and total score with S-LANSS score. In a postal survey, completed questionnaires were returned by 57% of patients (n = 174). Internal consistency and convergent validity of the survey S-LANSS scores were confirmed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [145] "Validity: Predictive/criterion; r = -0.23, p = 0.024, N = 99."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [146] "In order to assess the scale’s validity, the Polish version of FAS was correlated with other known anxiety questionnaires in separate studies. The correlation coefficients were: with Cattell’s Overt-Covert Anxiety Scale r = 0.48 (N = 88), with Spielberger’s STAI r = 0.61 (N = 83), with Taylor’s MAS r = 0.64 (N = 102), with Beck’s Hopelessness Scale r = 0.41 (N = 60), and with Eysenck’s Neuroticism Scale r = 0.60 (N = 135). These results indicate that the FA is related to the anxiety sphere of personality and that besides the common variance with other sorts of anxiety it has its own specificity; this I believe being the aspect of personal future perspective."                                                                                                                                                                                                                                                                                                                                             
## [147] "When the number of dissatisfactions in the first 22 items of the general satisfaction test is correlated with the number of dissatisfactions checked in the second 22 items it was found that the correlation is .75 corrected by the Spearman-Brown prophecy formula (N = 168)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [148] "Convergent Validity: The ABUSI total scores were positively correlated with the total scores of the Sheehan Disability Scale, Impairment Total (SDS-I), Self-Monitoring Suicide Ideation Scale (SMSI), Behavior and Symptom Identification Scale, Self-Harm subscale (BASIS-SH), and the frequency of self-injury, and negatively correlated with the Pediatric Quality of Life Enjoyment and Satisfaction Questionnaire (PQ-LES). Predictive Validity: Higher ABUSI total scores at admission significantly increased the odds of re-admission (n = 349, χ2 = 7.32, P<0.01, Odds Ratio [OR] = 1.06, 95% Confidence Interval [CI]=1.02–1.11). Higher ABUSI total scores at admission decreased the odds of clinically significant improvement on the PQ-LES at discharge (n=251, χ2=3.98, P<0.05, OR=0.97, CI=0.94–0.99)."                                                                                                                                                                                                               
## [149] "Construct Validity: P Scale invariance across sexes and its relations with self-esteem, life satisfaction, optimism, positive negative affect, depression, and the Big Five provided further evidence of the internal and construct validity of the new measure in a large community sample (N = 3,589). Measurement invariance and construct validity of P Scale were further supported across samples in different countries and cultures, including Italy (N = 689), the United States (N = 1,187), Japan (N = 281), and Spain (N = 302)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [150] "Results supported five factors that were designated as labeling, negative attribution, separation, status loss, and controllability. Using these factors, a second study (N = 263) demonstrated support for the goodness of fit of the proposed 5-dimensional stigma model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [151] "Factor Structure/Construct Validity: Factor-analytic data support the validity of the THQ. Data were collected on a large number of subjects at posttreatment (n= 294) and at follow-up (n= 241), and results were similar at these two time points. At both, the first three factors loaded clearly on three major components of pain management programs: exercise, psychological-educational interventions, and medical interventions and visits. The finding that correlations were higher between more similar types of treatments, or when one treatment was a component of another, supports the validity of the THQ. Divergent Validity: Divergent validity was demonstrated by the lack of significant correlations among more dissimilar items, such as between injections (which played only an ancillary role at both centers) and ratings of either the whole program or psychological and educational interventions."                                                                                                      
## [152] "Exploratory factor analysis (n = 112) showed that all 14 items fit well into a four-factor model explaining 67.2% of total variance, which is in line with the original design of the revised checklist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [153] "Convergent Validity: The scale demonstrated convergent validity, as it was moderately correlated with a measure of general weight concern (The Revised Restraint Scale; Herman & Polivy, 1984; r = .49, N = 100, p < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [154] "Content Validity: Content validity of the instrument was established via an expert review panel (n=6). Factor Structure: Exploratory principal components analysis (PCA) using Varimax rotation was conducted on the final data to verify construct validity of the instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [155] "The hypothesis that dissatisfaction with one's self concept would be related to a negative view of human nature was confirmed (r = .65, N = 100). As expected, there are significant negative correlations (r = -.42 to -.55) between the substantive dimensions of the PHN Scale and political cynicism. This indicates that those who are cynical about politicians tend to see human nature as untrustworthy, selfish, conforming, and lacking in will power. Likewise, there are negative correlations between these subscales and Machiavellianism, ranging from -.38 to -.67. The correlations between PHN Scales and Machiavellianism indicate that the Machiavellian type does possess a cynical, negative view of human nature, as revealed by the PHN Scale. Correlations between the \"Faith-in-People\" Scale and the substantive elements of human nature are positive, ranging from .39 to .75. This is to be expected, as both scales attempt to measure the goodness, worthiness, and improvability of human nature."    
## [156] "The correlation between the revised scale and the original version was r - .98 in a sample of undergraduates (N = 295)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [157] "In a large sample of women (n =483) at 6-8 weeks postpartum, scores on the questionnaire were highly correlated with scores on the Edinburgh Postnatal Depression Scale (EPDS) and the Revised Clinical Interview Schedule (CIS-R). Cluster analysis demonstrated that, among depressed women with similar symptom scores on the CIS-R, the MAQ discriminated a group with low MAQ scores and a group with high MAQ scores. Face validity: The initial list of items was derived from two sources: (1) clinical experience of working with women suffering from postnatal depression, and (2) available research evidence. Concurrent validity: Scores on the Maternal Attitudes Questionnaire and on the Edinburgh Postnatal Depression Scale showed a high degree of correlation (r=0.60, p<0.001). There was a significant correlation between Revised Clinical Interview Schedule score and total score on the MAQ (Pearson's r=0.50, p<0.001). The MAQ distinguished those with and without RDC major or minor depression."         
## [158] "Scores on the ATWBS were correlated with scores on the Attitude Towards Ex-mental Patients Scale (ATEMPS) to estimate the convergent validity of the ATWBS. A product moment correlation coefficient of 0.30 (p < .05, N =117) was obtained, and this serves as the validity coefficient of the ATWBS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [159] "Child welfare professionals (N = 130) rated two versions of a hypothetical case using the ROME to determine its discriminative validity. Results suggested that raters could discriminate between two similar but distinct hypothetical cases significantly (McGee et al., 1990). Finally, percentage agreement (N = 2) was calculated for each maltreatment/age subscale for each case and ranged from 64.8% (psychological maltreatment) to 100% (sexual abuse)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [160] "Test validity: Although the mean rating for validity of the MI inventory in describing preferences was a high 75.58, data indicate a substantial range of variability in assessments (SD = 10.50, range 40-90, n = 56)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [161] "Convergent validity: the first version of the questionnaire was given to the staff and was later compared with answers from the same staff about the same children (n = 50) given at personal interviews. The items then were reconstructed and reformulated in accordance with experiences from this comparison. The second version (n = 49) was also compared in the same way with personal interviews of the observers. In this comparison the correlations of single items between questionnaire and interview were between .6 and 1.0 with one exception, \"Avoids appearing naked in front of company\" (.5)."                                                                                                                                                                                                                                                                                                                                                                                                                     
## [162] "Known-Groups Validity: A known-group difference test was used to assess the validity of the measure of the intention to support a strike. The first subset of the sample came from a state-managed utility company (n = 16) whose employees were known for actively supporting the strikes, and the second came from a private bank (n = 34) whose employees did not join such national strikes. A higher intention to support antiprivatization strikes was found in the utility company than in the bank, hence lending support to the validity of the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [163] "Construct Validity: The correlations of the revised scale with other schizotypy scales for males (n = 320) and females (n = 507), respectively, were Perceptual Aberration (Chapman, Chapman, & Raulin, 1978), .11 and .18; Magical Ideation (Eckblad & Chapman, 1983), .04 and .19; Physical Anhedonia, .25 and .24; and Impulsive Nonconformity, .14 and .21. These values indicate that the revised scale is largely independent of the earlier scale, providing support for construct validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [164] "Factor Structure: Factor analysis of the first sample (N = 91) yielded a 5-factor solution (limit setting, monitoring, discipline, control and concern) and accounted for 65% of the variance. Confirmatory factor analyses on a second sample of Latina mothers recruited into a childhood obesity prevention study (N = 714) showed that a 26- item 5-factor solution (limit setting, monitoring, discipline, control and reinforcement) provided the best fit for the data. Predictive Validity: Parenting strategies characterized as controlling were associated with a lower BMI among children. Construct Validity: Consistent with our hypothesis and demonstrating good construct validity, positive correlations were observed between the PEAS subscales and subscales on the Child-Feeding Questionnaire."                                                                                                                                                                                                                   
## [165] "Content Validity: The questionnaire was assessed for content validity and clarity by iterative discussions among a small group of research coordinators (n = 2), epileptologists (n = 3), and neurology residents (n = 3) who did not participate in the survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [166] "Sensitivity: The range of means indicated that the measure was able to differentiate the teams according to their performance. Construct Validity: The correlation between the measure and the overall ratings given by subject- matter experts (and the standardized beta coefficient) was .79 (n = 48, p < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [167] "Content Validity: Confirmed through interviews with patients from general practice, by feedback from GPs, and expert researchers in the field. Concurrent Validity: Supported by strong correlations with the Reynolds empathy measure (r = 0.85, n = 10, P < 0.001) and the Barrett-Lennard empathy subscale (r = 0.84, n = 10, P < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [168] "Construct Validity: A pilot study (n = 168) was conducted to assess the construct validity of the two satisfaction with life scales. Satisfaction with work life was correlated more strongly with overall job satisfaction (r = .73) than with marital satisfaction (r = .15). Nonwork life satisfaction was correlated more strongly with marital satisfaction (r = .53) than with overall job satisfaction (r = .33), providing evidence that the two scales differentiated between the work and nonwork life domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [169] "Content Validity: The development of the Restless Legs Syndrome-Next Day Impact (RLS-NDI) questionnaire included concept elicitation interviews with RLS patients in the United States (n = 20); grounded theory data collection and analysis methods; and review by clinical and measurement experts to generate items, responses, and instructions. Cognitive interviews (n = 15) were conducted to ensure understanding of the RLS-NDI, concept comprehensiveness, and identification of any necessary item revisions. Impacts on next day functioning attributed to disturbed sleep due to RLS symptoms included activities of daily living (i.e., work, household chores), cognitive functioning (i.e., concentration, forgetfulness, mental tiredness, alertness), emotional functioning (i.e., irritability, depressed mood), physical functioning (i.e., physical tiredness, active leisure activities), energy, daytime sleepiness, and social functioning (i.e., relationships, social activities/situations)."                
## [170] "Factor Structure and Construct Validity: A five-factor solution was specified: ‘adherence with health regimens’ (alpha=.86), ‘impact of care and treatment’ (alpha=.83), ‘support’ (alpha=.81), ‘motivation’ (alpha=.78), and ‘sense of normality’ (alpha=.78). The five-factor solution verified the structure of the theoretical model behind the questionnaire. Content Validity: Adolescents with diabetes (N=10) and clinical practitioners (N=5) evaluated the content validity of the instrument as good. Criterion Validity: To confirm the criterion validity, the GHbA1c values and the information about adherence collected with the questionnaire (n=91, n=346) were compared. According to the chi-square test, a significant positive connection was found between them."                                                                                                                                                                                                                                                 
## [171] "Cross-validation analyses provide strong support for the validity and reliability of the CQS across samples, time and countries (Singapore and the USA). In addition, results in three substantive studies across different cultural, educational and work settings (N = 794) demonstrate a systematic pattern of relationships between dimensions of CQ and specific intercultural effectiveness outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [172] "Convergent Validity: All of the RBI scales except The Sexes Are Different were significantly positively correlated with the IBT, which measures irrational beliefs about self. The rs for the RBI scales with the IBT (in the order of the above paragraph) were .31, .21, .14, .28, and .11, respectively (N = 200; p < .05 for the first four scales). Construct Validity: For the combined sample of clinical and nonclinical couples, scores on all five RBI scales were significantly negatively correlated with MAS scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [173] "Content Validity: Measures were developed using the 'act frequency approach' of Buss and Craik (1983) whereby registered nurses (n = 38) were asked to nominate empowering and disempowering acts relevant to interactions between staff and older patients. The resulting lists of 98 acts for each disposition were hypothetically judged by older hospitalized people (n = 20) as to the extent they would be either 'control giving' (empowering acts) or 'control taking' (disempowering acts) if personally experienced. The twenty highest scoring acts in each category were incorporated into the Patient Empowerment Scale. The ward scoring lowest on the 40-item PES (i.e. the least empowering) was the elderly care rehabilitation ward. Moreover, this ward showed an inverse correlation between participant age and exposure to empowering care."                                                                                                                                                                       
## [174] "Concurrent Validity: Concurrent validity tests showed that there was a positive correlation between the CSAS-C and heart rate in the preoperative period (r=.49, n=112, p<.01) and in the postoperative period (r=.32, n=112, p<.01). A medium to small positive correlation between the CSAS-C and mean arterial blood pressure was detected in the preoperative period (r=.40, n=112, p<.01) and in the postoperative period (r=.25, n=112, p<.01). Children’s state anxiety in the pre- and postoperative periods was positively correlated with mean arterial blood pressure and heart rate."                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [175] "Construct validity: Construct validity of the PASECI was satisfactory, with positive relationships between self-efficacy for managing atopic dermatitis and general perceived self-efficacy (r = 0.30, n = 120, p = 0.001); self-efficacy for managing atopic dermatitis and self-reported task performance (r = 0.766, n = 120, p < 0.001); and self-efficacy for managing atopic dermatitis and outcome expectations (r = 0.486, n = 120, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [176] "Content Validity: In accordance with recommendations of De Vellis (2003), together with the pre-pilot survey maximised the chance that any items used in the later stages of scale development demonstrate appropriate content validity. Construct Validity: The significant relationships between the LCN and the theoretically related NEP, INS, and CNS provide evidence of the new LCN’s convergent validity, and thus its construct validity. Discriminant Validity: Consistent with these previous findings, the. LCN had no relationship with openness to change values r = -.02 N = 249 p < .697 in this present field study, and only a non-significant negative relationship with conservatism values r = -.11 N = 249 p < .077. These results provide support for the discriminant validity of the new LCN and add to the evidence of its construct validity. Criterion-related Validity: Results provided consistent evidence for criterion-related validity."                                                               
## [177] "Convergent Validity: Convergent validity was confirmed through correlations between the mini-SPIN-R and the Liebowitz Social Anxiety Scale anxiety subscale, avoidance subscale, and total score. Divergent Validity: The mini-SPIN-R had a significant, small correlation with the MADRS (r = 0.21, n = 532, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [178] "Factor Structure: The factor structure of the scale was examined and a confirmatory factor analysis was also performed on a second sample (N = 276). Six factors were obtained: mood enhancing (Enhance), mood worsening (Worsen), concealing emotions from others (Conceal), use of inauthentic displays (Inauthentic), poor emotional skills (Poor skills), and use of diversion to enhance another’s mood (Divert)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [179] "Concurrent Validity: The scores of the scale demonstrated some evidence validity against a parallel parent-completed PICS for the PRD items (N = 27, r = .47, 95% CI [0.11, 0.72])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [180] "The measure's validity was supported through correlations obtained with other study variables. Factor Structure: In the total sample (n=400, 290 and 211 at surveys 1, 2 and 3) only one factor was significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [181] "Two sample t test, chi-square, logistic regression, and ROC curve analyses were performed. Fallers (6.35 ± 1.7, n = 195) and nonfallers (5.70 ± 1.9, n = 2,052) had significantly different (p = .011) MAHC-10 scores. The MAHC-10 cutoff score of 4 demonstrated 96.9% sensitivity and 13.3% specificity; however, ROC curve analyses revealed a cutoff score of 6 maximized combined sensitivity and specificity. The MAHC-10 is valid for fall risk screening in the home health setting; however, a cutoff score of 6 may more accurately predict fall risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [182] "Criterion Validity: The correlation (rho) between the NPDS and the Barthel Index for all groups was -0.87; R2 =0.76 (n =154). Per patient group rho varied from -0.70 (R2 = 0.49) to -0.93 (R2 =0.86). The overall correlation between the NPDS and Care Dependency Scale was larger than the criterion of rho =0.60 (r =-0.74; R2 =0.55) but was B<0.60 in the rheumatoid arthritis and tuberculosis group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [183] "Convergent and Discriminant Validity: CD-RISC scores were positively correlated with Ego-Resiliency Scale. Pearson r=0.69, P<0.001), on the other hand, negatively correlated with negative affect scores (N=246. Pearson r=0.44, P<0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [184] "Concurrent validity: Concurrent validity was examined by correlating the SCI-PG with the SOGS (r = 0.78; n = 72; P≤0.001). The SCI-PG exhibited a fair but significant correlation with gambling severity as assessed by the Yale–Brown Obsessive–Compulsive Scale Modified for PG (PG-YBOCS; Hollander et al., 2000) (r = 0.375; n = 72; P= 0.02). Discriminant validity: Discriminant validity was assessed against the Hamilton Rating Scale for Depression (HAM-D) (Hamilton, 1960) and Hamilton Rating Scale for Anxiety (HAM-A) (Hamilton, 1959) using correlation coefficients. Measures hypothesized not to be highly correlated with gambling severity displayed discriminant validity with the SCI-PG: HAM-A (r = 0.23; n = 72; P= 0.17) and HAM-D (r = 0.19; n = 72; P= 0.28). Sensitivity/Specificity/Predictive value: The interview demonstrated high sensitivity (0.882), specificity (1.00), positive predictive value (1.00), and negative predictive value (0.666)."                                                   
## [185] "Construct Validity: A cut-score of 8 best discriminated those with anxiety disorders from those without, successfully classifying 78% of the sample with 69% sensitivity and 74% specificity. Results from a larger sample (n = 171) showed a single factor structure and excellent convergent and divergent validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [186] "Convergent Validity: Of the 127 participants, 33.1% (n = 42) met the criteria for a DSM-IV-TR PTSD diagnosis using the LEAD procedure and 30.7% (n = 39) met the criteria for a DSM-IV-TR PTSD diagnosis using the PTSD-IVR. The results for agreement between the LEAD procedure and the PTSD-IVR were calculated. The AUC value was .91, suggesting strong evidence of convergence. Additionally, Cohen’s κ value was .84, indicating excellent agreement between the LEAD procedure and the PTSD-IVR."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [187] "Convergent and Divergent Validity: Supporting the convergent and divergent validity of the RSSIQ, most scales were positively associated with reasons for living, but were not significantly associated with suicide risk (with the exception of Fear of Discovery and Stigma, which was positively associated with suicide risk). Predictive Validity: Consistent with our conceptualizations of vulnerability-related reasons as conferring greater risk for chronic non-suicidal self-injury (NSSI), individuals who self-injured (n = 56) during the follow-up period endorsed greater Fear of Discovery and Stigma. Incremental Validity: Hierarchical logistic regression revealed that the two higher-order RSSIQ scales together significantly predicted engagement in NSSI at T2, beyond T1 NSSI frequency, emotion dysregulation, depression symptoms and interpersonal problems."                                                                                                                                             
## [188] "Content Validity: Content validity was established for the survey by using experts (n = 5) in the field of educational technology. Additionally, the survey was distributed to preservice teachers (n = 40) in a technology course to check for understanding. Most questions were retained (n = 45) and five were revised as suggested by the experts and students to better communicate the questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [189] "Face and Content Validity: The initial item pool was reviewed by a focus group (n = 4) of medical students to assess face and content validity for the intended respondent group. Convergent Validity: Convergent validity was confirmed using the Mental Disorder Understanding Scale. Divergent Validity: The divergent validity of the MICA scale (version 2.0) was confirmed in relation to the Complementary and Alternative Medicine Health Belief Questionnaire. Construct Validity: The construct validity of the measure was established through the results of a factor analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [190] "The means (mean level of all items) between subjects (n = 256) varied heavily (min = 2.77, max = 5.86). A two-way mixed-effect ANOVA showed that the between people variation was about 11% of the all-item mean variation. This focuses on the fact that response set and/or general self-esteem is strongly present in these measurements. The between measures (p = 70) (within people) variation is also notable (min = 2.25, max = 5.50)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [191] "Construct Validity: The construct validity was tested using the data from the study subjects (N = 36) (Kline, 1993; Streiner & Norman, 1992)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [192] "External Validity: Expert score--R = 0.44 (n = 227, P = 0.005, Spearman); Eyes Hands Feet (EHF) score (subjects with leprosy only)--R = 0.39 (n = 724, P < 0.001, Spearman); Self-assessment--(n = 496, P < 0.001, Kruskal–Wallis test)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [193] "Content Validity: To ensure that the PETS had good content validity, the items were developed based on pilot interviews. By using recipient accounts, the researchers could design a measure that accurately reflects the nature of positive transplant changes. Concurrent Validity: The PETS concurred with responses to the open-ended item. A Mann–Whitney U-test revealed a significant difference in PETS scores of individuals who reported negative effects of transplantation (Md = 49, n = 37) and those who reported positive effects of transplantation (Md = 52, n = 243), U = 3450, z = −2.28, p = .022, r = .13. Discriminant Validity: To establish the instrument’s discriminant validity, it was tested against measures of transplant worry and guilt. PETS scores were not significantly related to transplant worry or guilt, however, higher scores were significantly correlated with better adherence, more disclosure and more responsibility."                                                                 
## [194] "For preliminary validity, the global score obtained on the FTD-patient scale was significantly correlated with positive FTD Comprehensive Assessment of Symptoms and History (CASH) (Andreasen et al., 1992). (Pearson= 0.298; P=0.004 [two-tailed]; N=90) but did not correlate with poverty of speech (Pearson=0.038; P=0.723 [two-tailed]; N=90). The global score obtained on the FTD-patient scale was significantly correlated with the kind of accommodation in which patients were living (Spearman's Rho=0.291; P=0.006 [two-tailed]; N=89), i.e. patients reporting more FTD lived in less independent types of accommodation."                                                                                                                                                                                                                                                                                                                                                                                                
## [195] "Criterion-Related Validity: The DMI-10 returned a moderate validity coefficient (0.52, P < 0.001, n = 160) with psychiatrist-rated depression severity. Also, a kappa value of 0.43 (P < .001) in predicting the psychiatrist’s judgment of clinically significant depression. Convergent Validity: Total DMI-10 scores correlated strongly (P < 0.01) with the total Beck Depression Inventory for Primary Care (BDI-PC; Beck et al., 1997; r = 0.80) and the seven-item depression subscale (HDS) of the Hospital Anxiety Depression Scale (HADS; Zigmond & Snaith, 1983; r = 0.70) scores. Sensitivity: When the psychiatrist’s judgment was used as the criterion, the sensitivity for the DMI-10 was 100.0%. Specificity: In comparison to the DMI-18 and BDI-PC (72.4 and 71.3%, respectively), specificity for the DMI-10 was slightly inferior at 66.7%."                                                                                                                                                                        
## [196] "Content Validity: The first (N = 282 adults) and second (N = 458 adults) pilot testing phases used Rasch analysis that showed the items were capturing a range of balance traits and that the items fit intuitively with the model of life balance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [197] "Convergent Validity: The total 18-Item Depression in the Medically Ill Screening Measure (DMI-18) score correlated strongly (Spearman correlations) with total Beck Depression Inventory for Primary Care (BDI-PC; Beck et al., 1997) scores (0.78, P < 0.01, n = 203) and total Hospital and Anxiety Depression Scale (HADS; Zigmond & Snaith, 1983) scores (0.72, P < 0.01, n = 97). These analyses support the convergent validity of the DMI-18. Discriminant validity: This measure discriminated between depressed and non-depressed medically ill patients. Criterion-related Validity: Evidence of criterion-related validity was found by examining the capacity of the measure's derived cut-off point to predict the psychiatrist’s judgment of clinically significant depression."                                                                                                                                                                                                                                           
## [198] "Convergent Validity: The total score of the Depression in the Medically Ill Screening Measure correlated strongly with total Beck Depression Inventory for Primary Care scores (r = 0.80, p < 0.01, n = 35) and with total Hospital Anxiety and Depression Scale scores (r = 0.72, p < 0.01, n = 32), for the relevant subsets. Criterion-related Validity: The Depression in the Medically Ill Screening Measure demonstrated evidence of criterion-related validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [199] "Predictability: The EDAM total score was developed to predict one's risk of having an eating disorder. Logistic regression was conducted to assess if it could significantly predict an eating disorder in males. The omnibus test of model coefficients resulted in χ2 = 36.026, df = 1, N = 78, p < .001. The model was significant at predicting an eating disorder correctly at an overall percentage of 82.1% of the men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [200] "Convergent validity: The Rasch test scores had a correlation of r = .55 (p < .01, n = 368) with the Woodcock Language Proficiency Battery-Revised (WLPB-R; Woodcock, 1991) Picture Vocabulary scores, r = .57 (p < .01, n = 367) with the WLPB-R Passage Comprehension, and r = .61 (p < .01, n = 368) with the WLPB-R Letter-Word Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [201] "Adult participants (n = 146) in the Polish arm of the ongoing Prospective Urban and Rural Epidemiological (PURE) study completed FFQs on two occasions, as well as four 24-h dietary recalls (DRs) during a 12-month period. Correlation coefficients (r) and de-attenuated correlation coefficients between dietary recalls and both FFQs were calculated for selected macro- and micronutrients. Agreement between the two methods was evaluated by classification into quartiles and the Bland–Altman method. For urban participants, FFQ2 generally underestimated energy, protein and fat compared to the FFQ1 and mean of DRs. In rural areas, compared to DRs, both FFQs overestimated energy and macronutrients. For both urban and rural settings, de-attenuated correlation exceeded 0.4 for almost all nutrients and the exact agreement in quartile categorisation was >66%."                                                                                                                                                
## [202] "Content Validity: A panel of five experts engaged in a brainstorming session to generate many potentially suitable items. The panel then engaged in an iterative process of shortlisting items and discussing precise wording, finally reaching consensus on the use of a single question. Concurrent Validity: Comparison of PHQ-9 and SMS responses at 3 months demonstrated a moderate to high degree of agreement (Kendall's tau-b = 0.57, p < 0.0001, n = 220). Score Distribution: Text responses contained the full range of scores from 1 to 9 and tended to be normally distributed (using all valid texts: n = 6137, mean = 5.0, SD = 2.18, Median = 5.0, Interquartile Range: 3.0-7.0)."                                                                                                                                                                                                                                                                                                                                      
## [203] "The comparison of the equality of the covariance matrices for these two age groups of children on the CCSC was not significant. Box's M=76.53, chi squared (55)=71.86, ns. The comparison of the covariance matrices for girls (n=118) and boys (n=64) using Box's M test was 92.33, chi squared (55)=86.29, p=.004. Comparing the findings of the most restrictive model in which all error terms, factor correlations, and factor loadings were constrained to be equal across the two groups to the findings of the least restrictive model (i.e., no constraints) resulted in a chi-square difference test of delta chi squared (25)=34.48, p<.10, suggesting that these two groups were invariant in terms of the underlying measurement and factor structure. Thus, there was not enough evidence to show significant differences between the factor structures for boys and girls in their response to this measure."                                                                                                             
## [204] "Convergent Validity: The CETSCALE was correlated with an open-ended measure taken two years prior to the CETSCALE administration (\"Please describe your views of whether it is right and appropriate for American consumers to purchase products that are manufactured in foreign countries\"). Two coders were in high agreement (93% concurrence) in classifying responses as either \"ethnocentric\" or \"nonethnocentric.\" The correlation between the two measures (r = .54, n = 388, p < .001) supports the CETSCALE's convergent validity. Discriminant Validity: All correlations between the CETSCALE and its related constructs (patriotism, politicoeconomic conservatism, and dogmatism) were high and statistically significant. Nomological Validity: The overall pattern of results provided strong support for the nomological validity of the consumer ethnocentrism concept and its measurement via the CETSCALE."                                                                                                   
## [205] "Concurrent Validity: Pearson product-moment coefficients were calculated for the scores of the Schizotypy Traits Questionnaire and the Borderline Traits Scale and scores of the Launay-Slade Hallucination Scale--Revised; Persian Version. All correlations were significant statistically. The correlation coefficient for the Schizotypy Traits Questionnaire (Jackson & Claridge, 1991) with the Persian form of .61 (N=300, p<.001) was higher than that for the Borderline Traits Scale (Jackson & Claridge, 1991; r = .49, N=300, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [206] "Discriminant Validity: A sample of undergraduates (N = 87) got only two-thirds of the facts correct, compared to 80% correct among graduate students (N = 44) in human development, and 90% correct among faculty (N = 11) in human development. These differences supported the validity of the quiz."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [207] "Construct Validity: The SEQ-SP scores were significantly negatively correlated with total scores on the Childhood Anxiety Sensitivity Index (CASI; Silverman et al., 1991) (Pearson's r = –.38, N = 43, p < .05, two-tailed), displaying a medium effect size of 14.4%. The SEQ-SP scores were also significantly positively correlated with the initial Behavioral Avoidance Test (BAT; Lang & Lazovik, 1963) scores (Pearson's r = .402, N = 43, p < .01, two-tailed) and follow up session scores (Pearson's r = .65, N = 43, p < .01, two-tailed), displaying a large effect size of 14.4% and 41.6% respectively."                                                                                                                                                                                                                                                                                                                                                                                                                  
## [208] "Content Validity: The majority of the items were developed from a comprehensive review of the literature on racial/ethnic health disparities. Another four items were recommended by an expert reviewer. A review by published authorities in racial/ethnic health disparities or survey research helped to ensure the content validity of the instrument. A pilot test with undergraduate students (n = 23) found the survey had good acceptability and readability level (SMOG = 11th grade). Construct Validity: The items created for the a priori Individual responsibility and Social determinants subscales of the AREHD scale were two distinct subscales (e.g., two dimensions). Criterion (Predictive) Validity: The social determinants of racial/ethnic health disparities scores were significantly associated with increased funding support for selected social safety net programs."                                                                                                                                     
## [209] "Content Validity: The 14 practice-related techniques in the CVAD; TTQ were based on the personal clinical experiences of members of the research team, anecdotal feedback from nurses who attended CVAD classes taught by researchers, the book Policies and Procedures for Infusion Nursing (Infusion Nurses Society, 2011), and recommendations or descriptions in the literature. No changes were made to the items based on pilot study results in a convenience sample (N = 26)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [210] "Discriminant Validity: The SPUNS short form was able to discriminate between support persons of survivors who had (n = 147), and those who had not received treatment in the past month (n = 969)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [211] "Construct validity: The authors used both first-order and hierarchical confirmatory factor analysis to evaluate the EPS’s convergent and discriminant validity in relation to the other perfectionism subscales. Criterion validity: The EPS showed good criterion validity in relation to psychosocial outcome variables. In particular, EPS total score correlated positively with depression, anxiety, and stress, and negatively with life satisfaction and perceived social support. Incremental validity: The authors used first-order latent-variable regression analysis to determine whether the EPS predicted psychosocial adjustment outcomes over and above the Child-Adolescent Perfectionism Scale and the Perfectionistic Self-Presentation Scale. The latent-variable regression model fit the data well, SB-ML chi squared(462, N = 1,270) = 1,975.60, RMSE = .053, SRM = .047, CF = .98, NNFI = .98."                                                                                                                  
## [212] "The correlation between the ECBI IS and the SDQ Total difficulties scores was 0.68 (N = 442, p < 0.001). The correlation between the ECBI and the SDQ emotional problems scale was 0.38 (N = 442, p < 0.001). The correlations between the total IS scores of the 36 and the 22-item versions was 0.97. The correlations were also high between the 36-item IS total scores and the subscales of the 22-item version (ODBTA = 0.90, InattB = 0.75 and CPB = 0.73."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [213] "In the development sample (n = 257), the observed C-ACT score ranged from 6 to 27. No floor or ceiling effects were observed. Multitrait analysis showed that the item convergent validity of the C-ACT score was good (Pearson item-scale correlation corrected for overlap; range, 0.41-0.68). The concurrent correlations between the C-ACT score and the Pediatric Asthma Quality of Life Questionnaire (PAQLQ; Juniper, et al., 1996) and Pediatric Asthma Caregiver’s Quality of Life Questionnaire (PACQLQ; Juniper, et al., 1996) domains were moderate to strong (0.47 and 0.68, respectively). The results of the construct validity analyses were similar in the subgroups of children 4 to 8 years of age and in children 9 to 11 years of age (data not shown)."                                                                                                                                                                                                                                                            
## [214] "Convergent validity was assessed by correlating the total scores of the HEWSE scale with three related measures: the Eating Self-Efficacy Scale (ESES; Glynn & Ruderman, 1986), the Self-Efficacy Scale (Sherer et al., 1982), and the Eating Disorder Diagnostic Scale (EDDS; Stice, Telch, & Rizvi, 2000). Results revealed a moderate, negative correlation (r = −.37, p < .01) between the ESES and the HEWSE scale suggesting that an individual with low healthy eating self-efficacy will be more likely to overeat in various situations. A moderate positive correlation (r = .32, p < .01) was found between the HEWSE scale and the general SE scale. In the EDDS, correlation between BMI and total scores for the HEWSE scale was negative (N=125, r= −.23, p < .01)."                                                                                                                                                                                                                                                      
## [215] "Boys were grouped according to whether their p(aversive) and p(aggression|aversive) z scores were lower than 0 or 0 and greater. The groups were low aversive-low response (n = 71), low aversive-high response (n = 28), high aversive-low response (n = 32), and high aversive-high response (n = 84). The sample sizes reflect the fact that p(aversive) and p(aggression|aversive) were correlated (r = .59)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [216] "Validity: Bivariate correlations were computed between the AFSEQ and self-report inventories. AFSEQ total scores were significantly, positively correlated with scores on the Scale for Suicide Ideation (SSI; Beck et al. 1979) (r = .28, p = .03, n = 63), Beck Depression Inventory-II (BDI-II; Beck et al., 1966) (r = .31, p = .01, n = 64), and the Inventory of Cognitive Distortions (ICD; Yurica, 2002) (r = .52, p<.0001, n = 60). When BDI-II scores (without item nine assessing suicidal thoughts) were included in a multiple regression model, AFSEQ total scores were no longer significantly related to SSI scores [β = .20, t(60) = 1.60, p = .12]."                                                                                                                                                                                                                                                                                                                                                                   
## [217] "For the concurrent validity, application of analysis of variance yielded a test statistic [F(2,68) = 50.28] significant well beyond the .001 level. The distribution departed from normal (W= .90, p < .05) but differences between the samples with respect to variability were not significant [Levene's Test: (F(2, 68) = 2.84, p > .05]. Application of the Kruskal-Wallis analysis of variance confirmed that there was a significant effect [H(2, N=71) = 37.66; p <.001). Application of Tukey's (HSD) test showed that the mean of the Anxious group was significantly higher than that of either the Neither group (p <.001) or the Student group (p <.001). For the convergent validity, a correlation of .88 was obtained between the BAI scores and the anxiety rating scale scores."                                                                                                                                                                                                                                        
## [218] "Concurrent validity: Application of analysis of variance yielded a test statistic [F(2,76) = 94.06] significant well beyond the .001 level. The distribution departed from normal and there were significant differences between the samples with respect to variability [Levene's Test: F(2, 76) = 8.46, p < .001]. However, application of the Kruskal-Wallis analysis of variance confirmed that there was a significant effect [H(2, N=79) = 51.07; p <.001)]. Application of Tukey's (HSD) showed that the mean of the Depressed group was significantly higher than that of both the Neither group (p <.001) and the Student group (p <.001). These findings therefore indicate that, in accordance with prediction, the XBDI-II scores of the Depressed group were significantly higher than those of the Neither and Student groups. Convergent validity: A correlation of .91 was obtained between BDI-II scores and depression rating scale scores."                                                                           
## [219] "To ensure the validity of the questionnaire, it was sent to a group of eight referees, including university faculty members, early childhood professionals, and consultants from the National Council for Family Affairs in Jordan. Taking their comments into consideration, changes in the wording of a few items were made. The instrument was also field-tested with a number of randomly selected fathers (N = 25) and the changes were incorporated into the developed instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [220] "For construct validity, forced choice task: participants agreed, t(34)=16.43, p < .001, d=4.92 [3.94, 5.90], when they disagreed, t(33)= −5.60, p<.001, d=–1.37 [–1.92, 0.83]. The results of the other task: Participants who endorse inherence-based explanations (M=7.40, SD=1.08) than who endorse extrinsic explanations (M = 5.23, SD = 1.65), t(34) = 6.70, p < .001, d=1.56 [1.00, 2.11]. This difference held up for each of the 15 items, ts(34) > 2.86, ps≤.007. For discriminant validity, the models of the Haslam scale and the Inherence Heuristic Scale were compared: change in chi square(change in df = 1, N=230) = 8.08, p=.005. The default model (SRMR = .05, CFI = .95, RMSEA = .053) demonstrated better fit than the constrained model (SRMR = .07, CFI = .94, RMSEA = .055). The two correlation coefficients were z = 2.28, p = .025 (using Lee & Preacher’s, 2013, test for dependent correlations; see also Steiger, 1980) for the Inherence Heuristic Scale and a common essentialism scale."              
## [221] "Construct Validity: For convergent validity, a robust statistically significant positive correlation between the total scores of the two measures (r = .422, p < .001, n = 667), as well as between each of the PBQ-SR items and PDEQ total score was observed. For discriminant validity, the PBQ-SR did not correlate with PANAS-P total score at all (r = .008, p = .846, n = 661). In the sample without prior deployment, PBQ-SR even showed a slight negative discriminant correlation to the PANAS-P, similarly to the PDEQ, confirming that the two scales are both equally unrelated to a conceptually different measure such the PANAS-P Scale. Concurrent Validity: Concurrent validity was measured by exploring the relation of the PBQ-SR total score to several scales assessing general anxiety, depression, negative affect, lower general health and posttraumatic symptoms after deployment and their changes over time, showing significant correlations."                                                           
## [222] "For convergent validity, the correlation between the SRS-A and PARS scores was(n =14, 12 ASD, 2 non-ASD, r =0.62, p = .019). The correlation between the SRS-A and the ADOS module 4 scores was (37 ASD, r =0.34, p = .037). The correlation between the SRS-A and AQ-J scores (n =76, men 52.6%; 33 ASD, 43 non-ASD; mean age ± SD [range], 35.5 ± 11.4 [20–59] years) was significant but weak (r =0.25, p = .030). For divergent validity, for the available IQ data (n =44), the SRS-A score did not significantly correlate with IQ (r = −0.09, ns). For discriminative validity, the ASD group scored significantly higher than the non- ASD group (p < .001, d =1.07)."                                                                                                                                                                                                                                                                                                                                                           
## [223] "Convergent and discriminant construct validity: Pearson’s correlations between this scale and measures of body image and QOL were computed. All the World Health Organization Quality of Life – bref (WHOQOL; (WHOQOL Group, 1998a) domains were analysed, as well as the specific facet of body image, included in the psychological domain. The discriminant validity of the BIS was further assessed by comparing the BIS scores of patients who underwent mastectomy (n = 95) and those who underwent breast- conserving surgery (BCS) (n = 51). Support for the convergent validity of the scale was demonstrated by associations with a large effect size (>.50) between the BIS and the body shame subscale, the Derriford Appearance Scale 24 (DAS24; Carr et al., 2005) and the body image facet of WHOQOL. The discriminant validity of the BIS was further assessed by comparing the BIS scores of patients who underwent mastectomy (n = 95) and those who underwent BCS (n = 51)."                                          
## [224] "Then, confirmatory factor analysis (CFA) was performed on another half of the data (n = 666) to confirm the goodness of fit of the previously identified one-factor model. The results of CFA showed a good model fit: χ2 = 18.00, df = 5, p b .003, CFI = .98, TLI = .93, RMSEA = .06, SRMR = .03. Each item has acceptable factor loadings on the model (.57, .41, .67, .57, .70) and all of the factor loadings were significant (p < .001). Thus, the one-factor model was confirmed by the CFA. Furthermore, the MWQ was inversely correlated with the Mindful Attention and Awareness Scale (MAAS; Brown & Ryan, 2003) (r=−.31, p b .001), which indicated that the criterion-related validity of the Mind-Wandering Questionnaire--Chinese Version was adequate."                                                                                                                                                                                                                                                                 
## [225] "Convergent validity: The global fit indices supported the measure's convergent validity (χ2 = 1,045.7; df = 487; RMSEA = 0.06 ; SRMR = 0.07; GFI = 0.88; AGFI = 0.84; NFI = 0.90; NNFI = 0.93; CFI = 0.94; n = 360 P-Value = 0.00000). Discriminant validity: As the square root of the average variance extracted of each construct was greater than the correlations between the variables, all constructs demonstrated discriminant validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [226] "Predictive Validity: The results of the confirmatory factor analysis confirmed that the model fit (χ2 [461, N = 995] = 1925.88, p < .001, IFI = .98, CFI = .98, GFI = .79, RMSEA = .084) was excellent between the proposed model and the observed data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [227] "The correlations between the Global Social Responsibility scale and related behavioral measures were in expected directions and significant. The correlation with a self-report log of hours of volunteering to peace and ecology was .38. The correlation with a self-report measure of financial contributions, a log of percent of financial contributions, was .39. The correlation with a rating of social activism was .52 for the mixed group only (n = 148) and .69 for the total sample (N = 219)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [228] "Content/Construct Validity: Content and construct validity were established through the work of an expert panel. Known-Groups Validity: A Kruskall-Wallis W test indicated that the three groups (students with known acquired brain injuries, students with special education needs, and typical students) differed significantly [X2 (2, N = 186) = 89.50, P < .001]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [229] "Construct validity was supported by a significant correlation between years since HIV diagnosis and greater HIV treatment knowledge among HIV-positive patients (n= 130, r= 0.21, p<0.05) and among the combined sample of HIV-positive and HIVHCV co-infected patients (n =152, r =0.23, p<0.01). Criterion (concurrent) validity of the HIV Treatment Knowledge Scale was demonstrated by its significant and positive correlation with the Brief HIV Knowledge Questionnaire (Carey & Schroder, 2002) in all samples combined (n =346, r= 0.73, p<0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [230] "For the O-inquiry, the face validity was reviewed by two science educators and the readability of wording was revised and confirmed by two experienced elementary school teachers. Two pilot tests were conducted to assess reliability, difficulty index, and discrimination index of the instrument. After the first pilot test (N = 83), the items with high difficulty index values (i.e., too easy) were revised. Consequently, the second pilot test (N = 75) results revealed that the difficulty indices ranged from .21 to .54. In addition, the discrimination indices ranged from .29 to .71. Based on Ebel's (1979) criteria, 6 out of the 7 items' discrimination indices fall in the range of either good or excellent (i.e., .36-.71), but only one item belongs to the criteria of acceptable. Following pilot testing of the M-inquiry, 4 items with either low discrimination index or inappropriate difficult index (i.e., too high or too low index values) were revised accordingly."                               
## [231] "The Delphi panel member’s written comments, recommendations and item relevance ratings established PCECAT v. 4 content validity for all 3 domains. Face validity was established when none of the item statements in these 3 domains were considered to be irrelevant by a substantial proportion (≥ 33.3%) of the Delphi panel members and 15 aged-care senior nurses and managers. Convergent validity was established for Domain 3 (Physical Layout and Design) when these item scores vs. Environmental Audit Tool (EAT; Fleming, 2011) scores were compared for 35 randomly selected aged-care homes (n = 35/131 = 26.7%). Correlations were run between the Domain 3 scores for these 35 homes and the EAT scores (total and 10 subscale scores). Domain 3 scores had statistically significant positive correlations with the total EAT score (r = 0.46, p = .005) and 4 of the subscale scores (Safety r = .35, p < .05; Stimulus Reduction r = .68, Wandering r = .44, and Familiarity r = .46, each p < .01)."                 
## [232] "To examine construct validity, a subset of women (n = 145) who were bilingual were asked to complete both the English and Korean tests 1 week apart. Results of the Korean and English BULIT-R were significantly correlated (r = .94, p = .0001). The results of the Korean BULIT-R with the results of the Bulimia subscale of the Korean EDI-2 showed the two tests shared a significant correlation (r = .78,p = .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [233] "Convergent and discriminant validity: The factorial structure in Polish adult participants (n = 857) was very similar to the one previously found in other samples; AMAS scores correlated moderately in expected directions with state and trait anxiety, self-assessed math achievement and skill as well temperamental traits of emotional reactivity, briskness, endurance, and perseverance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [234] "Construct validity: The highest correlation was found between fantasy and CA, r = 0.461, p < 0.001 (n = 267), and correlations between diversion and social interaction were also significant: r = .255, p < 0.001 (n = 269), and r = 0.228, p < 0.001 (n = 269), respectively. Significant correlations were also found with the other motivations: arousal, r = 0.408 (n = 267); challenge, r = 0.352 (n = 266); and competition, r = 0.226 (n = 268), each at p < 0.001. The correlation between CA and enjoyment for role-playing video game (RPG) players was significant (r = 0.228, p = 0.001, n = 194), as was the correlation with playing time, calculated as total minutes per month spent playing (r = 0.169, p = 0.009, n = 193). A significant correlation between CA and game addiction using Tejeiro and Moran’s game addiction scale (2002) with r = 0.358, p < 0.001 for all respondents (n = 256) and r = 0.372, p 0.001 for RPG gamers (n = 185)."                                                                   
## [235] "Discriminant validity of factors was tested using previously used indices as a measure of overall fit. Results indicated that the model fit the data well χ2(305, n= 313)=982.77, p<0.05; χ2/df=3.2, RMSEA=0.081 (1-RMSEA=0.92), NFI=0.92, CFI=0.95, RMR=0.05, GFI=0.80. Convergent validity was tested by correlating the PIQ subscales’ mean scores with the LISI total scores. Results indicated that a moderate amount of shared variance was observed (0.29–0.61) between PIQ and LISI measured constructs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [236] "Cognitive interviews (n = 80) with caregivers of varied socioeconomic strata informed revisions that demonstrated face and content validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [237] "The sensitivity of the Y-OQ-12 was 0.84, with a specificity of 0.82. Concurrent validity was evaluated based on the Pediatric Symptom Checklist (PSC; Jellinek & Murphy, 1990) and the Diagnostic Interview Schedule for Children-Present State (DISC-PS; Schaffer et al., 2000). A phi coefficient was used to assess the association between caseness determined by the Y-OQ-12 and caseness determined by the PSC. The total scores of the Y-OQ-12 and the PSC were highly correlated (r = 0.86; p < 0.001), as were their case classification (0.63; p < 0.001), with only one case classified as negative on the Y-OQ-12 and positive on the PSC. The point-biserial correlation showed a moderate yet significant correlation between the Y-OQ- 12 and the DISC-PS (r = 0.44, p = 0.001, n = 56), with a lower non-significant correlation evident between the PSC and the DISC-PS (r = 0.38, p < 0.05, n = 56)."                                                                                                                  
## [238] "There were significant positive correlations between nightmare frequency and NEQ Physical Effect (n=312, r=0.21), Negative Emotion (0.26), Meaning Interpretation (0.27) and Horrible Stimulation (0.26) factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [239] "There was a moderate positive relationship between perceived organizational autonomy and the measure of perceived participation of the public relations department in organizational decision making (r=0.34, n=116). This relationship was significant at the p<0.001 level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [240] "Content Validity: Content validity was determined using think-aloud interviewing and probing with a focus group (N = 8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [241] "Predictive Validity: scale predicted nonsexual violent, any violent, and general recidivism significantly better than Static-99R (Hanson & Thornton, 2000) or Static-2002R total scores in an aggregated sample of 3,536 adult male sex offenders. Convergent Validity: The scale was found to be highly correlated with other risk assessment tools for general recidivism and the PCL-R. Discriminant Validity: The general criminality factor was not significantly correlated with any of the variables that it was not expected to be correlated with, though there was a small negative correlation with sexual deviancy, r = −.25, n = 275."                                                                                                                                                                                                                                                                                                                                                                                      
## [242] "The preliminary instrument was sent to a panel of experts (n=5) for content validity. The panel consisted of two university professors and F-1 event marketers in Shanghai. The panel was asked to evaluate the relevance, clarity, and representativeness of the items. The panel agreed to retain all 31 items that were purported to measure service quality attributes related to F-1 events in Shanghai."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [243] "Content Validity: Content validity was built through cognitive interviews conducted with child protection education advisors and a key member of a principal professional association (n = 4). Construct Validity: The authors noted that the scale displayed construct validity in preliminary testing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [244] "The Rational scale and the Experiential scale were not significantly correlated, indicating independency (r=.16, p<.10, n=2,245). The slight positive relation (p<.10) between the Rational and Experiential main scales can be attributed solely to the relation of the Imagination subscale with the Rational scale (r=.18, p<.01), suggesting that the Imagination subscale may include a slightly rational component, supporting evidence of discriminant validity. Gender-corrected correlations indicated that the experiential subscales were moderately interrelated (rs5.31–.39, ps .001), indicating that they measure semi-independent components of a more general thinking style. Significant relations of an experiential thinking style with interpersonal relationships and of a rational thinking style with adjustment were also found."                                                                                                                                                                               
## [245] "Content validity for the ACSA was established through the adoption of items from validated instruments. Criterion-related validity was measured by assessing validity coefficients between the ACSA, the intensity of amphetamine use, and the severity of amphetamine dependence. The ACSA discriminated between \"low-dose\" and \"high-dose\" users, indicating discriminant validity. In inpatients (n = 63), ACSA scores declined significantly over time, while higher scores in inpatient treatment dropouts indicated predictive validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [246] "Face Validity: Face validity of the initial set of items was determined by an independent group of active selfie posters (n = 10). Items that were irrelevant or too similar to other items were removed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [247] "Content Validity: A small pilot study (n = 7) was conducted to maximize the content-related validity of the instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [248] "Convergent Validity: The overall score on the SAQOL-39NL correlated with HRQL after stroke. A moderate correlation was found (Pearson’s r = 0.45, p < 0.005). Internal Validity: Inter-correlations between domains were low-moderate (0.12–0.36). Inter-correlations between overall and domain scores were good and varied from 0.58 to 0.73. Construct Validity: The SAQOL-39NL was acceptable (no missing data; no floor or ceiling effects) to people with chronic aphasia (n = 47)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [249] "Results of factor analyses supported the construct validity. To evaluate the concurrent validity of STSS-G scores, a structural equation model was estimated on a subset of the original sample whereby latent variables representing existing measures of stereotype threat and science identity were regressed on the latent social identity and identity threat variables. Results indicated that the model fit the data well, chi squared(413, N = 315) = 715.32, p = .000, CFI = .967, RMSEA = .048 (90% CI: .042, .054), TLI = .963, WRMR = .941. The differential validity of the STSS-G was also supported, given that STSS-G was found to classify individuals into five latent subgroups that distinguished them in terms of their vulnerabilities and affective responses to threatening stereotypes."                                                                                                                                                                                                                        
## [250] "The Privacy Concern scale correlates significantly with General Caution (r = .333, n = 435, p < .0005) but not strongly with the Technical Protection factor (r = .094, n = 425, p = .053). These intercorrelations show each scale measures their respective construct, thus supporting validity. Results also showed positive and significant correlations of Privacy Concern, General Caution, and Technical Protection with the Westin Privacy segmentation (Harris and Associates, Inc. & Westin, 1998) and Internet Users Information Privacy Concerns (IUIPC; Malhotra et al., 2004), supporting construct validity."                                                                                                                                                                                                                                                                                                                                                                                                             
## [251] "The Panic Disorder Severity Scale total score was correlated significantly with the Anxiety Disorders Interview Schedule, Revised (ADIS-R; Di Nardo & Barlow, 1988) clinical severity rating of panic disorder (r= 0.55, N=145, p<0.001). The sensitivity to change of the Panic Disorder Severity Scale was analyzed by using a time-by-group analysis of variance. Both of the main effects and the interaction effect were statistically significant (group: F=11.08, df= 1, 87, p<0.001; time: F=57.15, df=1, 87, p<0.001; interaction: F=41.36, df=1, 87, p<0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [252] "The measures of people’s ability ranged from 6.76 to −6.56 logits. In only two (3%) of the 60 assessments were the goodness-of-fit statistics above the acceptable values. Furthermore, the AHA was found to discriminate effectively between children with different levels of assisting hand function, as shown by the separation value for persons of 6.16 demonstrating the number of ability levels it is possible to distinguish in this test. Age was not correlated with assisting hand performance ability in a group of children with unilateral impairments (Pearson’s r=0.13) but in a group with non-disabled children (which was, however, very small, n=8) an age relationship seemed to exist (Spearman’s r=0.7, p=0.05). The difficulty of the test items appeared to match the ability of the persons well and was found to be appropriate for the targeted group of people."                                                                                                                                            
## [253] "CFA was performed to test the validity of the Group Process Scale using LISREL 8.8. The analysis revealed a good fit for the model, chi-squared(84, N = 125) = 119.88, p < .01; Root Mean Square Error of Approximation = 0.06; Non-Normed Fit Index = 0.95; Comparative Fit Index = 0.96."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [254] "S-MARE scores pre- and post- relaxation instruction were significantly correlated with the Emotional Relaxation Scale (Tokuda, 2011; r = .446) and with State Anxiety (r = −.531). There was also a significant correlation between the amplitude of the high frequency component of heart rate variability during relaxation instruction and physiological tension scores on the S-MARE (r = .456-.474, N = 24)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [255] "Convergent and Discriminant Validity: As for convergent and discriminant validity, the two CI scales were correlated with attitudes toward animals and uncorrelated with social desirability, conscientiousness, extraversion, and neuroticism (N = 701). Predictive Validity: Also, Carnistic Defense predicted meat consumption, while Carnistic Domination was a significant predictor of having slaughtered an animal (N = 478)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [256] "SSIS-RS-C scale domains and subscale scores of the typically developing and developmental disabilities groups were significantly different. Only one subscale, Assertion, showed no significant difference between the two groups. The scores for the Hong Kong sample (n = 567) derived from the use of the SSIS-RS-C were compared to the normative sample scores from the American version of the SSIS-RS. It was found that there were statistically significant differences on five out of the seven SSIS-RS-C Social Skill subscales for children aged 5–12 years and on four out of the seven SSIS-RS-C Social Skills subscales for the adolescent group (aged 13–18 years). Also, there were statistically significant differences between the American and Hong Kong samples on all of the SSIS-RS-C Problem Behavior scale scores."                                                                                                                                                                                            
## [257] "Child molesters’ responses (n = 35) were not significantly different from nonsex offenders (n = 21) on an implicit measure of sexual interest in children (Sexual Attraction to Children Implicit Association Test [SAC-IAT] d = 0.44, 95% CI [−0.11, 0.99])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [258] "The content validity of the draft tool was reviewed by an expert panel (n = 5) comprising experienced RN1/A nurses working across acute hospital settings, RN5 (learning disability nurses) and nurse educators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [259] "The IS was not significantly correlated with the Taylor Manifest Anxiety Scale (MAS; Taylor, 1953) (r = -.075; N = 240) and r between the IS and a measure of mental ability was -.019. The IS did show significant relationships with lack of objectivity and emotional instability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [260] "Convergent Validity: Significant correlations (0.22 to 0.74) were found with convergent measures among general (n = 871) and psychiatric samples (n = 38). Sensitivity, Specificity, and Predictive Validity: The cutoff score of 41 produced good sensitivity in this psychiatric inpatient sample (88% of actual attempters were identified as suicide attempters) and moderate specificity (47% of non-attempters were identified as such). The positive and negative predictive values were .43 and .88, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [261] "Study 2 (n = 178) yielded significant associations between the scale and young drivers’ perception of their parents as involved, encouraging autonomy, and providing warmth; Study 3 (n = 117) revealed significant associations between the scale and youngsters’ reported proneness to take risks while driving, as well as significant associations between the factors and various dimensions of family functioning; and Study 4 (n = 156) found associations between the FCRSS factors and both driving styles (risky, angry, anxious, careful) and family cohesion and adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [262] "Validity was confirmed in a pilot study with a small sample (n=8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [263] "Construct validity: The mean weighted ADDQoL score correlated significantly with the number of reported complications (Spearman r = –0.2141, n = 141 and p < 0.005) indicating greater negative impact of diabetes on QoL in people with more reported complications. Similar relationships were observed when ADDQoL scores were correlated with the variable ‘actual complications’, where the few reports of complications not recognized as complications of diabetes were rescored as other illnesses and the few reports of other illnesses known to be complications of diabetes were rescored as complications (r = –0.2289, n = 140 and p < 0.003). Perceptions of hypoglycaemia were also significantly associated with impaired QoL (r = –0.3237, n = 90 and p < 0.001)."                                                                                                                                                                                                                                                     
## [264] "Sensitivity, Specificity and Predictive Validity: Results in a second sample (n = 325) indicated that each test form presented overall satisfactory classification accuracy in identifying at-risk readers with a criterion of 0.80 to set the sensitivity levels. The specificity rates were very low, ranging between 0.397 and 0.577 in grades 2 to 4. However, in grade 1, the specificity rate nearly reached the recommended value of 0.80."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [265] "Convergent validity: Convergent validity was determined by comparing the CBTS-CYP against the CTS-R. In one study (n = 12 raters) Pearson correlation coefficients between the CBTS-CYP process and CTS-R general scores (r = .98, p < .001), CBTS-CYP method and CTS-R specific scores (r = .91, p < .0001) and total scores (r = .98, p < .0001) were very high. Similarly, in the second study (n = 48 session recordings) correlations between process and general scores (r = .79, p < .0001), method and specific skills (r = .91, p < .0001) and total scores (r = .93, p < .0001) were again very high, suggesting that the two measures are highly correlated. Discriminative ability: Using the total score and single item pass-fail criteria, the CBTS-CYP compared well with the CTS-R in discriminative ability. Analysis of changes in competence of 18 trainees as they progressed through training showed that competence increased by approximately eight points on both the CTS-R and CBTS-CYP."                      
## [266] "Convergent Validity: Using Cohen's (1988) guidelines, Openness to CIH correlated with the CAMBI total scale (r = .534 p < .000, n = 171); Intentional practices also correlated with the CAMBI total scale (r = .549, p < .000, n = 171); and the total scale had a large significant correlation with the CAMBI (r = .584, p < .000, n = 171). Discriminant Validity: Discriminant validity was examined by assessing the relationship between interprofessionalism and the CIHAP total scale (r = .203, p = .006, n = 179), the Openness to CIH subscale (r = .208, p = .005, n = 179), and the Intentional practices subscale (r = .224, p = .003, n = 179)."                                                                                                                                                                                                                                                                                                                                                                         
## [267] "A significant correlation with a national GP knowledge test (r = 0.33) showed the instrument to be a valid instrument. The instrument proved feasible with coverage of 24% (N = 3082) of reasons for encounter presented to GP trainees."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [268] "To investigate the criterion validity of the PhoPhiKat-9, the authors utilized the RTSqr in the Validation Sample 1. applied the cut-off equivalent for the short form (no gelotophobia ≤ 2.67, n = 203; gelotophobia >2.67, n = 43 individuals) for gelotophobia and computed two repeated measures ANOVAs (for the ridicule and teasing scenarios), with gelotophobia group (no gelotophobia vs. gelotophobia) as factor, the eight emotion ratings as repeated measures, and the intensity of emotion as dependent variable. For the ridicule scenarios, results showed that both main effects for type of emotion and gelotophobia group were significant."                                                                                                                                                                                                                                                                                                                                                                          
## [269] "Convergent Validity: Convergent validity of the MOHAB was tested using observations (N = 27, all Dutch). The floor structure and baby equipment observed matched parental reports in most cases indicating satisfactory validity of these reports. The eight milestones included in both the MOHAB and the AIMS (e.g., sit without support) were compared. Overall percentage of agreement was 95%, indicating that parental reports were valid. Rolling from prone to supine was the only milestone with a lower percentage of agreement (74%). Face Validity: Face validity was evaluated by eight experts (three Dutch, four Israeli and one American) who were researchers in the field of parental beliefs and/or motor development or clinicians in the field of early motor development. All experts identified the constructs measured and found the selection of items to be sufficiently comprehensive and complete, indicating good face validity."                                                                           
## [270] "Convergent Validity: Participants classified as secure (n = 21) scored significantly different than other participants on Availability (p = .031), the 8 participants classified as preoccupied had significantly different scores on the AAQ scale of Angry Distress (p = .011), and participants classified as dismissing (n = 35) scored significantly different on the scale Goal-Corrected Partnership (p = .010)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [271] "Construct Validity: Compared to the non-alcohol cue session, the Shortened-DAQ total score was significantly greater both in the alcohol cue session (21.8 vs 16.8; t(116)=−8.6; p < 0.001) as well as the Alcohol priming session (20.8 vs 16.1; t(96)= −5.6; p < 0.001). Convergent/Divergent Validity: The Pearson correlations between Shortened-DAQ total score and VAS craving item were significant both in the Non-alcohol cue session (r = 0.759; p < 0.001), the Alcohol cue session (r = 0.792; p < 0.001) and in the priming session (r= 0.771; p < 0.001). In a subset of patients (n=56; Khemiri et al., 2015) Pearson correlations between Shortened-DAQ and VAS craving were highly significant. Furthermore, the Shortened-DAQ correlated to a lesser degree with VAS Anxiety and VAS arousal indicating acceptable divergent validity, even though the correlation with VAS anxiety was also statistically significant."                                                                                               
## [272] "The MSCQ demonstrated a significant correlation with an established rating scale for automotive seating comfort; the overall comfort rating in MSCQ and discomfort rating for the automotive seating comfort measure for five motorcycles was r = −0.765 (p < .05, n = 15), which is statistically significant. The ratings of overall comfort from the MSCQ were compared with the dimensions of the motorcycle related to ergonomics showed that there was a significant correlation between the dimensions seat width (p < .01) and comfort as well as seat to foot peg (Y – vertical distance) (p < .05) and comfort, indicating that these are important parameters in motorcycle design for comfort."                                                                                                                                                                                                                                                                                                                              
## [273] "Construct validity: Analyses of variance of the scores from three groups were statistically significantly different, with mean group scores in the predicted direction: college students lowest, general psychiatric patients higher, and phobics highest. A Scheffé test showed phobics to be significantly higher than the other two groups in these samples. Concurrent validity: College students' annihilation scale scores were correlated with their responses to the Spielberger State-Trait Anxiety Inventory. This comparison (n = 205) yielded a product-moment r of .69 with trait anxiety and .56 with state anxiety. A more recent study reported a Pearson r of .63 between the Hurvich Experience Inventory and the Taylor Manifest Anxiety Scale, with n of 218 (Jantzen, 1992)."                                                                                                                                                                                                                                       
## [274] "The metric for each scale was established by fixing the coefficient for one indicator to 1.00 for each factor. Other than these fixed loadings, each item evidenced highly significant t-values, suggesting convergent validity. Results indicated none of the confidence intervals surrounding the factor correlations contain “1.00;” therefore, discriminant validity is suggested. Nomological validity: The higher order dimensions of aesthetic appeal, customer “return on investment,” playfulness and service excellence were specified as predictors of retail preference and patronage intent in this test of nomological validity. The structural model predicting Internet preference and patronage intent from dimensions of value produced results that indicate that this model fits the data well [x² = 477.86 (df.=267); p = .000; RMSEA = 0.061; CFI = 0.93; n = 213]. Among Internet shoppers, customer return on investment was significant in predicting Internet shopping preference."                            
## [275] "The ESQOL's criterion validity was examined in reference to the Pediatric Quality of Life Inventory (PedsQL) generic core scale (Varni et al., 1999). Pearson’s correlation coefficient for the total scale (n = 49) was .43 (p < .002). Content validity was assessed via content validity index scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [276] "Kruskal-Wallis comparison across the different groups with pair-wise comparisons was highly significant: χ² of 87.7 (N = 204, df = 5, p < 0.0001) . Spearman rank-order correlations were calculated between each item and item-corrected score totals and were all significant at p < 0.001 except for item 17. There was a significant negative correlation between CDC score and age (Spearman’s rho = 0.32; p = 0.002; n = 88) among non-clinical subjects. The same relationship was not valid for DID and DDNOS groups. The scores of non-dissociative diagnostic groups as a whole had a mild negative but non-significant correlation (Spearman’s rho = 0.22; p = 0.054; n = 79). There was no significant correlation between CDC scores and socioeconomic status, age and education of parents, and number of siblings. There were no significant gender differences in CDC scores in the participants overall and in any subgroup."                                                                                           
## [277] "Correlations between the three factors of the Czech version of NAQ-R and the SUPSO scales (P – pohoda, A – činorodost, O - impulzivnost, N - napětí, D - deprese, U - úzkost, S - sklíčenost) and were all significant (Significance α <0,05; N = 710)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [278] "The correlations between the CCHN LSI and other indicators of stress were published within a broader description of the stress indicators used by CCHN (Dunkel Schetter et al., 2013), and provides preliminary evidence of convergent validity. In the full CCHN T2 sample (N=1656), the composite LSI score was significantly correlated with perceived stress at the earlier T1 assessment one month after birth (r=.28, CI=0.23, 0.33) and concurrently as measured at T2 six months after birth (r=.37, CI=0.33, 0.41). To assess the CCHN LSI's concurrent validity, correlations were calculated between overall domain scores and measures of depressive symptoms, post-traumatic stress symptoms, GAD diagnosis, and allostatic load. All domain ratings were significantly associated with all 3 indicators of mental health, with the exception of co-parenting with a new partner, which was completed by only a small minority of participants. Correlation coefficients ranged from .09 to .36."                           
## [279] "Content Validity: Content experts were in agreement that the overall HOME-Rx instrument was valid for measuring older adult medication management (S-CVI = .95). Older adult participants (n = 5) unanimously reported that the HOME-Rx was relevant, acceptable, and easy to understand. Face Validity: The authors of the assessment determined that the HOME--Rx had high face validity to capture the complex construct of medication management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [280] "Convergent validity of each KCCQ domain was documented by comparison with available criterion standards (r = 0.46 to 0.74; p < 0.001 for all). Among those with stable CHF who remained stable by predefined criteria (n = 39), minimal changes in KCCQ domains were detected over three months of observation (mean change = 0.8 to 4.0 points, p = NS for all). In contrast, large changes in score were observed among patients whose decompensated CHF improved three months later (n = 39; mean change = 15.4 to 40.4 points, p < 0.01 for all). The sensitivity of the KCCQ was substantially greater than that of the Minnesota Living with Heart Failure and the SF-36 questionnaires."                                                                                                                                                                                                                                                                                                                                          
## [281] "When imposing the data structure obtained from the first 3 samples (n = 233, n = 139, n = 94) on the new data (n = 1000) by confirmatory factor analysis, it was found that at least minimum cultural comparability exists for all scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [282] "Correlations with the Student Adaptation to College Questionnaire (SACQ; Baker & Siryk, 1989) indicated good convergent validity for the CAQ. Results indicated positive correlations between the Academic/Educational subscale scores, r = .65, (n = 51, p < .001); the Social/ Relational subscale scores, r = .67 (n = 51, p < .001); and the Emotional/Psychological subscale scores, r = .69 (n = 51, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [283] "Convergent Validity: Dysfunctional posttraumatic cognitions correlated significantly with posttraumatic stress symptoms (PTSS; r = .62), depression (r = .71), and anxiety (r = .67). Discriminant Validity: Both the total and sub-scale scores were able to discriminate between participants with PTSD (n = 107) and those without PTSD (n = 116)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [284] "Construct validity was studied by means of analysis of the correlations between the scale dimensions and with other, theoretically related, constructs. This was calculated with the sample of employees (N=352). As expected, bullying and its dimensions were positively correlated with health problems and perceived stress. The highest correlations were reached with emotional exhaustion, lack of energy, and physical discomfort, and the highest correlation of all was between perceived stress and the global bullying score (r=.62, p<.01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [285] "Concurrent validity: The association between GSES and HADS-A (Zigmond & Snaith, 1983) was non-significant (r = 0.19, P > 0.1, NS). Discriminant validity: The ability of GSES to discriminate insomnia patients (n = 89) from good sleepers (n = 102) was investigated. The GSES readily discriminated the groups (t = -15.27, d.f. = 189, P < 0.0001). Given the significant association between GSES and age, to be conservative discriminant validity between groups was considered using analysis of covariance (ANCOVA), with age as covariate. GSES still readily discriminated the groups, with age partialled out [F(1,182) = 228.52, P < 0.0001]. Specificity and sensitivity: A cut-off score of 2 correctly identified 93.3% of insomnia patients and 87.3% of good sleepers. Using 3 as the cutoff, 82.2% of insomnia patients and 92.2% of good sleepers were correctly identified. Positive predictive and likelihood ratios were high, suggesting GSES predicts the presence of insomnia well."                           
## [286] "The correlation between PHASE-20 ( Hedström, Lidström, & Hulter Åsberg, 2009) and PHASE-Proxy (n = 30) was rs = 0.65 (p < 0.01), indicating criterion validity as the two scales appear to measure the same construct."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [287] "PDI scores of a sample of former inpatients (n = 37) were significantly higher that former outpatients (n = 36) who responded to a follow-up questionnaire. These findings support the validity of the PDI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [288] "The survey was assessed for clarity and content validity by an expert panel (n = 8) including RTs, ROMPs and researchers (Imle & Atwood, 1988; Monterosso, Kristjanson, & Dadd, 2006). Items not meeting the minimum criterion for agreement (disagreement of more than one expert) were adapted or deleted according to feedback received and in consultation with panel members (Lynn, 1986)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [289] "Supporting the taxonomy’s validity, the dimensional ratings were consistently associated with social distance and yielded clusters for uniting stigmatized statuses that shared dimensional features. Correlations (r) with the Social Distance Scale (Link et al., 1987) ranged between -.09 and .87 across the 6 dimensions. The authors conducted a sensitivity analysis using ANCOVA to test stigma cluster membership as a correlate of health, controlling for whether each participants’ primary stigma was health- (n=423) or non–health related (n=556). Results indicated those with health-related stigmas reported greater health impairments than those without health-related stigmas (F=12.94, p<.001). However, the omnibus test of cluster membership on health was significant (F=5.49, p<.001), indicating that stigma cluster membership still significantly accounted for participant health factor scores when controlling for the health-related nature of the stigma."                                           
## [290] "Statistically significant correlations were found between the ESES and Generalised Self Efficacy Scale (GSE; Jerusalem & Schwarzer, 1992) (Spearman RHO = .316; p < .05; n = 53, 2-sided), supporting construct validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [291] "The correlation between the parental Vineland Adaptive Behavior Scales, Second Edition (VABS; Sparrow et al. 2006) and child developmental AFEQ subtotal at baseline was r = − 0.478 (p < .001, n = 143), at endpoint was r = − 0.575 (p < .001, n = 134), and at follow-up was r = − 0.710 (p < .001, n = 102), indicating a moderate to strong association between the two measures at each of the three time-points and supporting external criterion validity. A further test of the convergent validity of the AFEQ was the analysis of the association of the AFEQ parent domain and well-established measures of adult mental health—the General Health Questionnaire (GHQ-12; Goldberg 1992)—and wellbeing—the Warwick-Edinburgh Mental Wellbeing Scale (WEMWBS; Tennant et al. 2007), collected during the follow-up phase. A significant correlation with these measures suggested that the newly developed domain was tapping a construct that is linked to parental mental health and wellbeing."                            
## [292] "Face Validity: To ensure face validity, the questionnaire was based on a comprehensive review of literature and survey items from other studies with school personnel regarding violence prevention in schools (Dake et al. 2004; Khubchandani et al. 2013; Price et al. 2016; Vagi et al. 2013). Content Validity: To establish content validity, the instrument was mailed for review to a panel of published experts (n=9) in the areas of school health, pediatrics, and survey research as well as school personnel (n=3). After the expert review, changes were made to the instrument (wording changes and deleting or adding items) to ensure that valid measures regarding perceptions and practices of high school principals regarding TDV were included."                                                                                                                                                                                                                                                                    
## [293] "Strong and statistically significant positive relationships were found between the EIS and the measure of general ecological behavior across eight subsamples (median r=.71). Bivariate correlations were calculated between the EIS' first principal component and the secondary components of the general ecological behavior and New Ecological Paradigm scales (Dunlap et al., 2000) across eight subsamples (n=28). No significant relationships were found in any of the eight subsamples, offering support for the discriminant validity of the EIS. Data suggest that Model 1 (AIC=25.3; BIC=46.4) fits= the data better and in a more parsimonious way than Model 2 (AIC=226.4; BIC=247.5) and Model 3 (AIC=175.2; BIC=196.3). The authors found moderately large direct effects leading from ecological worldview (β=.44) and self-transcendent values (β=.37) to ecological identity, which together explained a good deal of the common variance in ecological identity (R²=.49)."                                           
## [294] "A CFA model was conducted to examine construct validity of the DTS. A 2-factor structure supported the hypotheses that distress tolerance can be distinguished from symptoms of distress. The 1-factor model was a poor fit to the data χ² (35, N = 650) = 563.49, p<.001, CFI = .77, RMSEA = .152, WRMR = .094. In contrast, the hypothesized 2-factor model fit the data well, χ² (34, N = 650) = 106.72, p<.001, CFI = .97, RMSEA = .057, SRMR = .037. The authors also conducted a SEM, testing the validity of the DTS. The final model fit well, χ² (74, N = 650) = 240.18, p<.001, CFI = .95, RMSEA = .059, SRMR = .039. There was a significant indirect positive effect of neuroticism on current symptoms via distress tolerance B = 0.19 95% CI [0.14, 0.25]. Conversely, there was a significant indirect inverse effect of extraversion on current symptoms via distress tolerance B = -0.04 95% CI [-0.07, -0.02]."                                                                                                        
## [295] "The scale content validity was confirmed by, first, submitting them to the scrutiny of experts and incorporating their suggestions into the scale and, second, through frequency analysis of the scale items. The item score mode was 5.26 in a normal, negatively skewed distribution, supporting construct validity. Pearson correlations between the total mean scores on the CCS-19 and the Spiritual Coping Scale-30 (SCS-30; Corry et al., 2013) were computed for the sample as a whole and for different sub-samples. For the whole sample, the correlation was moderate and positive (r = .378, n = 534, p < .01). The correlation between CCS-19 and SCS-30 was significant for females and for age group 1 (18–30 years) only. The correlation between CCS-19 and SCS-30 was strongest within the Kuwaiti subsample (r = .698, n = 274, p < .01) and within the Muslim sub-sample (r = .698, n = 275, p < .01)."                                                                                                              
## [296] "Convergent Validity: The CPTCI exhibited significant correlations in all the measured values at the level of p < .001 with two scales for measuring post-traumatic stress symptoms: the Children’s Revised Impact of Event Scale (CRIES; Smith et al., 2003) and Trauma Symptom Checklist for Children (TSCC; Briere, 1996). Discriminant Validity: For the CPTCI, the high PTSD-risk group (n = 152) and the low PTSD-risk group (n = 85) showed significant differences in various CPTCI scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [297] "Content validity was assessed by the four authors who separately examined the set of items for coverage of the most important aspects of the clinical supervision process. The initial pool of 22 items was scrutinized to identify the possible dimensions they would be assessing and if the most important aspects of each dimension was sufficiently covered. The same process was repeated after item reduction. The proportion of staff with a definitely positive perception of the programme (score≥14) was 41.7% (n=20); the proportion of individuals who expressed dissatisfaction (overall score=0) was 22.9% (n=11). The overall perception score was positively correlated with the value of the general opinion single question about the program (Spearman’s rho=0.79, p<0.001) giving evidence for convergent validity of the CSEQ."                                                                                                                                                                                    
## [298] "Construct validity: The Coping Strategies Scales correlated significantly with the Western scales of coping strategies (OSI-2; Williams & Cooper, 1996) in the hypothesized directions, with Chinese active positive coping correlated significantly with OSI-control coping (r = 0.68, p < 0.001), Chinese social support correlated with OSI-support coping (r = 0.35, p < 0.001), and Chinese hobbies/relaxation with OSI-support coping (r = 0.51, p < 0.001). Supporting criterion validity of the Chinese coping scales, a series of correlational analyses revealed that active positive coping correlated positively with job satisfaction, whereas passive adaptive behavior correlated positively with physical and behavioral symptoms in the full sample (N = 380)."                                                                                                                                                                                                                                                         
## [299] "Convergent validity of the APS was determined with College Adjustment Test (Hasan & Kazmi, 2014) (r=.46, p<.01). Discriminant validity of the APS was established with Psychological Resilience Scale (Jawahir & Kazmi, 2013) (r=-.21, p<.01). Content validity of the APS was established through experts’ (campus counsellors and senior educationists) ratings (N=10)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [300] "Concurrent validity: In a clinical sample, the DOT was significantly correlated (r = .92) with WAIS-III Block Design scores and was successfully substituted in place of Block Design raw scores without significant change in Performance IQ or Full Scale IQ. Discriminant validity: As expected, there was no correlation between the DOT and the Beck Depression Inventory (Beck & Steer, 1993) (r = .03, ns, n = 32), or the state (r = -.02, ns, n = 30) or trait (r = .15, ns, n = 30) components of the Spielberger State-Trait Anxiety Inventory (Spielberger, Gorsuch, & Lushene, 1970)."                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [301] "The concurrent validity of the QuiLL (v27 assessment) with the Spitzer Quality of Life Index (Spitzer et al., 1981) was also good as there was a strong positive correlation between the two instruments (r = 0.61, n = 63, p < 0.001). For discriminant validity, the comparison between samples in contact with services in London and Essex, and the population survey, showed that subjective well-being was higher in all life domains in the community sample, and the only ones that failed to reach significance were safety, family and living arrangements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [302] "Convergent validity was tested by constraining the correlations on all 11 factors to 1. The resulting fit, χ²(H25, AT = 395) = 4477.4, p < .01, TLI = .89, RMSEA = .11, SRMR could not be successfully fitted, indicating a poor fit, and a χ² difference test (p < .001) confirms that the 49 items result from 11 unique dimensions. The factor correlations were constrained at 1, which resulted in χ²(1377,N= 395) = 5750.4, p<.01, TLI = .88, RMSEA=.11, SRMR could not be computed because of missing data. The difference χ² showed the superiority of the former model over the latter at p < .001 thus supporting the divergent validity."                                                                                                                                                                                                                                                                                                                                                                                     
## [303] "All factor loadings as well as structural regressions from the estimated third-order CFA model were all statistically significant with t values ranging from a low of 8.64 to a high of 24.50. These results provide direct evidence of convergent validity of the SBME measure. The variance extracted for each factor was greater than the generally accepted value of .50, supporting the discriminant validity of the SBME measure. A regression analysis found that the SBME index significantly and positively influenced the composite score computed from the mean score of the mall patronage construct. This regression coefficient was .430 (p<.001, N=408) for the calibration sample, .568 (p<.001, N=497) for the validation sample, and .510 for the core sample (p<.001, N=905). Such results give evidence of the predictive validity of the SBME measure."                                                                                                                                                             
## [304] "There was no effect of age (as categorized into 4 groups based on interquartile range) on HEHIQ scores. Neither were there any significant gender differences in HEHIQ scores. As predicted, people reporting a chronic illness (n=264) had lower scores on all subscales than others (n=104), and this was significant for all subscales except relationships. Positive correlations between scores on the HEHIQ and on the World Health Organisation Quality of Life BREF (WHOQOL BREF; Skevington, Lofty, & O'Connell, 2004) and the World Health Organisation Quality of Life Spirituality, Religion and Personal Beliefs (WHOQOL SRPB; WHOQOL SRPB Group, 2006) were mostly medium to large in size and statistically significant. This suggests that the HEHIQ measures similar but not identical constructs to those measured by the BREF and the SRPB."                                                                                                                                                                          
## [305] "When only individuals who successfully malingered MR (FSIQ < 71) were included, sensitivity of 0.88 and specificity of 1.00 were obtained. In support of concurrent validity, the SBRMI-NV was significantly correlated with the TOMM Trial 2 (Tombaugh, 1996) (n = 54; r = .40; p < .001), RDS (Greiffenstein et al., 1994) (n = 54; r = .57; p < .001), WMT IR (Green et al., 1996) (n = 54; r = .42; p < .01), and WMT DR (Green et al., 1996) (n = 54; r = .37; p < .01) for the analog MR malingerer group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [306] "Content validity was established by an expert panel. Criterion validity coefficients ranged from 0.19-0.38. In the acute geriatric units, higher levels of ‘management commitment to patient safety’ and lower levels of ‘error fatalism’ were associated with a reduced incidence of medical errors. In the comparison group (N = 268), only the variable ‘active learning from mistakes’ was relevant for safety performance. These results supported convergent and criterion validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [307] "Ratings from the CPSR specialists at the study site indicated strong agreement regarding the acceptability of the 35 proposed CPSR treatment adherence and differentiation criteria on the PCAC-R. The Intraclass Correlation Coefficient (ICC) using a two-way random effects model for the 23 raters was .82, F(31.0, 682) = 102.25, P<.001. A Kruskal–Wallis test indicated parent-report CTAM scores differed significantly between children receiving psychotherapy, low-adherence CPSR, and high-adherence CPSR, χ²(2) = 12.55, P = .002. Follow-up Mann–Whitney U tests indicated children receiving CPSR scored significantly higher on the CTAM (M = 135.09, SD = 11.18) than children receiving outpatient psychotherapy (n = 20, M = 116.45, SD = 16.58), z = -3.16, P = .002. Similarly, children receiving CPSR from workers with reputations for high-adherence scored significantly higher than children receiving CPSR from specialists with reputations for low adherence."                                             
## [308] "Construct Validity: The EFS correlated significantly with the Geriatrician’s Clinical Impression of Frailty (GCIF; Rolfson et al., 2001), age and medication count but not with sex. In the construct validation sub-samples, the correlation with the Barthel Index (Mahoney & Barthel, 1965) was statistically significant (r = –0.58, P = 0.006, n = 21), but the correlation with the Mini-Mental State Examination (MMSE; Folstein, Folstein, & McHugh, 1975) was not (r = –0.05, P = 0.801, n = 30)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [309] "Face validity and item refinement were made by interviews with a subsample of PHC professionals (n = 9). Construct validity was supported by factor analysis results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [310] "Sensitivity and Specificity: This instrument was 19.1% (95% CI [12.7,25.5]) more sensitive than the original PSS in identifying panic-like anxiety in this sample ( x2(1, N = 351) = 23.89 p < .001) while maintaining a similar specificity ( x2(1, N = 659) = 0.754, p = .385; 0.4%, 95% CI [ -3.6, 4.5]). Discriminant Validity: The discriminant validity of the Revised-PSS proved stable over the course of a 10-fold cross-validation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [311] "To promote content and face validity, expert opinions of four transgender activists (one of whom is also an academic) were solicited to get their feedback on content, and three cognitive interviews were conducted. Supporting construct validity, there was a significant difference in the scores for transgender individuals (n = 277, M = 3.702, SD = .672) compared with cisgender individuals (n = 635, M = 2.990, SD = .820); t(634.313) = 13.723, p ≤ .001. There was also a statistically significant difference between different sexual orientations and mean scores on the TIBS."                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [312] "Construct Validity: Eight factors from six dimensions reported bivariate correlation coefficients ranging from .26 to .66, with 92.9% (N = 26) of the coefficients ranging from .3 to .7. All bivariate correlations were statistically significant at .01 level. While the correlation matrix between factors did not provide empirical evidence to the validity of the measurement, it indicated overall consistency across the factors and suggested that the factors were able to discriminate between different types of parental needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [313] "Face and Content Validity: Two rounds of interviews (n = 12) tested the adapted modules. Overall, all items in the final versions were well understood by patients and were reported to be relevant. The instructions were clear to all respondents and there were no missing responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [314] "Perceived personal control (total score) after counseling correlated .43 (n = 161 , p < .001) with counselors’ estimations of controllability provided."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [315] "Concurrent validity: The scale correlated .40, indicating a moderate correlation with \"behavioral\" altruism. Convergent validity: The scale showed acceptable convergent validities in the sense that scores correlated moderately with those on Bryant's Empathy Scale (1982) (N =53, r = .40), Rotter's I-E scale, internally scored (1966) (N = 33, r = .62), Berkowitz & Lutterman's Social Responsibility Scale (1968) (N = 48, r = .59), Rosenberg's Self-esteem scale (1965) (N=38, r =.66), and Schulze's Dogmatism Scale (1962) (N = 30, r = .08). Discriminant validity: Discriminant validity is shown by a relatively low heterotrait-homomethod coefficient (.45)."                                                                                                                                                                                                                                                                                                                                                       
## [316] "In Drake et al., (1990), case manager ratings showed a sensitivity of 94.7 (n=18) and a specificity of 100.0 (n=56)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [317] "Content Validity: Survey items were reviewed for content validity by the second author, whose area of expertise is bilingual education and policy studies. The tool was piloted with a small group (n = 10) of undergraduate students who, similar to our participants, had not yet taken our Language and Literacy for a Diverse Society class. One question was removed from the tool following the pilot study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [318] "Test Sensitivity and Specificity: The test reached a sensitivity and specificity of 100 percent (healthy elderly controls vs. patients with Alzheimer's disease: n = 125, U = 0, p < 0.001; patients with depressive disorder vs. patients with Alzheimer's disease: n = 140, U = 0, p < 0.001; healthy elderly controls vs. patients with depressive disorder: n = 89, U = 485.5, p < 0.001). External Validity: The pattern of correlations with independent measures provided support for this instrument's validity. Validation measures included general and dementia-specific mental status indicators and a depression scale."                                                                                                                                                                                                                                                                                                                                                                                                    
## [319] "Concurrent Validity: To assess the concurrent validity, the authors computed the correlations between the subscales of the Vocational Interests Scale with subscales of the Self-Directed Search (Form R—4th Edition; SDS; Holland, 1994). Due to the sample size (n = 970), most correlations were significant. If the new scale has high construct validity, similar dimensions in the new scale and types in SDS would show as least moderate correlations. Results showed that the correlations of six pairs, including Realistic (equals Operational in the Chinese Vocational Interests Scale), Investigative, Artistic, Social, Enterprising, and Conventional did present moderate correlations, which were higher than others, as expected."                                                                                                                                                                                                                                                                                    
## [320] "Content Validity: PG-YBOCS showed good content validity in severity and change highly correlated with South Oaks Gambling Screen (SOGS; Lesieur & Blume, 1987). Convergent Validity: Convergent validity, using Pearson's correlation between the Total PG-YBOCS change score and the SOGS, was significant (r= .895, n = 337, p = .000). Discriminant Validity: Measures hypothesized not to be highly correlated with gambling displayed discriminant validity with the PG-YBOCS: Hamilton Anxiety Rating Scale (HARS; Hamilton, 1959) (r= -005; n=188; p=.974) and Hamilton Depression Rating Scale (HAM-D; Hamilton, 1960) (r= .084, n = 188, p =.608). The absence of correlation, in this way, confirms that PG-YBOCS' construct is independent from HARS and HAM-D constructs."                                                                                                                                                                                                                                                   
## [321] "Test Validity: A positive relationship was found between total brain volume and educational attainment (r = .12). Test Specificity: Results found statistically significant, yet much smaller in magnitude, associations of total brain volume (TBV) with numeric memory (r = .11, 95% CI = [.08, .14] including genetic controls, N = 7,722) and visual memory (r = –.05, 95% CI = [–.07, –.03] including genetic controls, N = 13,292) and no significant relationship with the reaction time task (r = –.02, 95% CI = [–.04, .00] including genetic controls, N = 13,292)."                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [322] "Discriminative Validity: In the younger group (n = 31), the median score was 50, whereas it was 32 in the older group (n = 38), and this difference was statistically significant (p = 0.003). Convergent Validity: A positive and moderate correlation was found between the Danish Penn State Worry Questionnaire (PSWQ; Hvenegaard et al., 2015) and the FCRI total scores (r = 0.49, p < 0.001). Responsiveness: The mean difference in total FCRI scores (4.9, 95% CI: 1.6, 8.2) between pre-scan and post-scan was statistically significant (p = 0.005)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [323] "Test validity: Total ACCT score for participants with dementia or schizophrenia was moderately correlated with the total Modified Mini-Mental State Exam (3MS; Teng & Chui, 1987) score (r = .47; p < .01). The ACCT was not significantly correlated with total Brief Symptom Inventory (BSI; Derogatis, 1993) score (r = .25; NS) nor any BSI subscales. As a second indicator of validity, dichotomous ratings of capacity by the ACCT versus primary care provider ratings, for 27 subjects with either dementia or schizophrenia, agreed 74% of the time (kappa = .44; p < .01; n = 27). Finally, as a third indicator of validity, patients with dementia or schizophrenia performed lower than a healthy comparison group."                                                                                                                                                                                                                                                                                                       
## [324] "Convergent Validity: Scores on the Fan Identity Scale were significantly correlated (r = .589, p < .001, n = 201) with Tsay-Vogel and Sanders’ (2017) Fandom Scale, and the Appreciation subscale was positively correlated with the eudaimonic motivation measure (r = .454, p < .001, n = 201)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [325] "Content validity: Content validity was confirmed by an expert panel. Construct validity: The higher the level of self-identified socially responsible consumer behavior, the more socially responsible consumption reported on the SRPD, supporting construct validity. Convergent validity: All AVEs were above .50, supporting convergent validity. Discriminant validity: The 3-factor model outperformed the 2-factor model (x² difference (2, n=194)=361.69,p<.01) and the null model (x² difference (2, n=194)=361.69, p<.01), indicating discriminant validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [326] "Sensitivity/Specificity: A threshold score of FCQ-T-r greater than or equal to 50 allowed discriminate patients with addiction to the diet of patients without addiction to the diet (chi-square = (1, n = 372) = 1107.92; p <0.001), with a sensitivity of 87.2%; a specificity of 75.2%, a positive predictive value of 51.4% and a value of negative predictive of 95.1%."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [327] "Convergent and Discriminant Validity: The CS-LEAD was tested with a hybrid model using latent analysis in structural equation modeling, yielding indices that demonstrated good fit to the data: chi-square (66, N =154) = 93.07, p < .001, root mean square error of approximation = .07; 90% CI [.05, .09], CFI = .95, TLI = .94, SRMR = .04). The results demonstrated that the association between leadership in advocacy and advocacy outcome expectations was moderately strong and significant, .33, p < .01. As expected, the link between leadership in advocacy and academic self-efficacy was weak and not statistically, significant, .10, p < .05. Also, the association between advocacy outcome expectations and academic self-efficacy was strong and significant, .61, p < .05, which is notable, given domain differences. Taken together, these results provided initial evidence of convergent and discriminant validity in the CS-LEAD, suggesting that it taps the single factor domain as intended."              
## [328] "Concurrent Validity: Kruskal-Wallis H test results showed significant differences among the four groups (i.e., mild symptom group, n = 435; moderate symptom group, n = 163; severe symptom group, n = 93; extreme symptom group, n = 16): number of days, chi-square (3) = 285.58, p < .05; amount of money, chi-square (3) = 288.68, p < .05. Correlation analyses results showed that the GSAS-J score was significantly and well-correlated with the South Oaks Gambling Screen – Modified Japanese version (SOGS-J; Saito, 1996) score (r = .57), the Japanese version of the Gambling Related Cognitions Scale (GRCS-J; Yokomitsu et al., 2015) score (r = .71), and the Japanese version of the Gambling Urge Scale (GUS-J; Tanaka et al., 2017) score (r = .72)."                                                                                                                                                                                                                                                                
## [329] "Convergent Validity: The mini- STABS had a near-perfect correlation with the 21-item STABS (r = 0.97; p < 0.001), and with each of the two STABS factors: Social Comparison (r = 0.98; p < 0.001) and Social Ineptness (r = 0.90; p < 0.001). The mini-STABS also had significant and very high correlations with the Liebowitz Social Anxiety Scale (LSAS; Liebowitz 1987) total score (r = 0.81; p < 0.001). Divergent Validity: The mini-STABS had a significant correlation with the BDI (r = 0.55, n = 361, p < 0.001), but this correlation was significantly smaller than the correlation with the LSAS (z = 7.00, df = 358, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                         
## [330] "Convergent Validity: Correlations of the criterion measures with the F-indicator were moderately positive (German version of the Tuckman Procrastination Scale [TPS-d: Stöber, 1995]: r = .38, p = .002; German version of the Academic Procrastination State Inventory [APSI-d: Helmke & Schrader, 2000]: r = .45, p < .001). Mann-Whitney test results (U = 556.0, p = .03) indicated that the frequency of observed procrastination (F-indicator) was higher for participants with a high tendency to procrastinate (TPS-d score ≥ Mdn = 47.0, n = 39) than for participants with a low tendency to procrastinate (TPS-d score < Mdn = 47.0, n = 38). In addition, a Mann-Whitney test (U = 565.5, p = .04) indicated that the frequency of observed procrastination (F-indicator) was higher for participants with a high APSI-d score (> Mdn = 1.67, n = 38) than for participants with a low APSI-d score (≤ Mdn = 1.67, n = 39)."                                                                                                 
## [331] "Convergent Validity: RCSS score for those who had difficult adjustment at home was higher (M = 160.69, SD = 22.46, n = 70) than for those who have easy adjustment at home (M = 151.37, SD = 25.75, n = 67), t(135) = 2.26, p < .02 after return from abroad. Further, Cohen’s effect size value for this difference was .38. Content Validity: Feedback from subject experts was taken before and after having the result of factor analysis to ensure content validity since some items were dropped."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [332] "Discriminant Validity: Results showed that patients with a low WQ score (n = 49, 32%) were more often women (p = 0.013) and less educated (p = 0.004), reported more cognitive complaints (d = 0.69), more emotional problems (d = 0.38 and 0.52), and lower HRQoL (d = 0.40 and 0.45) and, last but not least, performed worse on the navigation ability tasks (d = 0.23–0.80). Patients scored lower than controls on 21/22 WQ items, predominantly with small to medium effect sizes (d = 0.20–0.51)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [333] "External validity: Modest negative correlations were found at age 6.5 between the dyadic prosocial behaviors of the twins and their dyadic conflict scores (mothers’ reports: r = .11, N = 445 pairs, p = .024; fathers’ reports: r = .14, N = 349, p = .007) and dyadic rivalry scores as reported by fathers (r = .18, N = 349, p = 0.001). Dyadic prosocial behaviors did not correlate significantly with mother-reported rivalry (r = .06, N = 445, p = .178) as well as with both parents’ reports on dyadic closeness (mother: r = .04, N = 445, p = .402; father: r = .06, N = 349, p = .306)."                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [334] "Construct validity: Results of the factor analysis lend support to the construct validity of the measure. Convergent and Divergent validity: Trait-anxiety and self-efficacy scores were used for divergent and convergent validity considerations. The total score of the COSE-TR was significantly correlated with those of the STAI-T (Spielberger, 1983) and GSE (Schwarzer & Jerusalem, 1995) scores. As expected for convergent validity, the COSE-TR scores were positively correlated with GSE scores (n = 269, r = .59, p < .001) and, as expected for divergent validity, the COSE-TR scores were negatively correlated with the STAI-T scores (n = 269, r =. -50, p < .001)."                                                                                                                                                                                                                                                                                                                                                 
## [335] "Convergent validity: In support of convergent validity, there were significant correlations between the SBI-15 and religious intrinsic orientation (r=0.84) and core spiritual experiences (r=0.82). Divergent validity: As for divergent validity, the correlations between the initial SBI-54 and the Brief Symptom Inventory (Derogatis, 1983) and Medical Outcome Study (Stewart et al., 1988) were close to zero. Discriminant validity: Tests of discriminant validity revealed a significant difference between the religious (n=69) and lay (n=228) groups for both the first administration of the SBI-15, [t(295)=11.23, p=0.000, twotailed] and the retest (religious group=28; lay group=57), [t(83)=4.95, p=0.0001, two-tailed]. The effect of regression to the mean is the most likely explanation for the observed changes."                                                                                                                                                                                             
## [336] "Face and Content Validity: The draft questionnaire was reviewed by an “Expert Reference Group” (n = 6), all of whom have experience in undertaking child health research, to assure the face and content validity of the instrument and to ensure that it adequately addressed the aims and objectives of the research. Changes to the content and presentation were made accordingly. Prior to distribution, five children’s nurses, within the sample group, were asked to complete the questionnaire and comment on clarity, content and burden of completion. Support for the validity of the questionnaire was confirmed, and minor amendments were submitted for approval prior to the main study."                                                                                                                                                                                                                                                                                                                                
## [337] "Convergent Validity: The correlation of the GAS-ID with the Anxiety sub-scale of the Hospital Anxiety and Depression Scale (HADS-A; Zigmond & Snaith 1983) was r = 0.61 (95% CI: 0.47–0.72), P < 0.01 (n = 96), which is considered moderate (Hinkle et al. 2002). Criterion Validity: Specificity rates remain lower than 50% with different cut-off scores. Correlation with the HADS-A was r = 0.61 (95% CI: 0.47–0.72); sensitivity was 83.9%(95% CI: 72.2–91.2) and specificity was 51.8%(95% CI: 43.6–59.9) using a cut-off score of 17."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [338] "Content and Face Validity: The AKVDC instrument’s content and face validity were tested by an independent panel of multiprofessional healthcare staff (N = 9) composed of uro-/gynaecological nurses, pelvic floor physiotherapists, sex counsellors and gynaecologists. They commented on the structure, phrasing, clarity, comprehensibility, relevance and assessment scale of the instrument. Based on their work experience with vulvodynia patients, the instrument was modified as appropriate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [339] "Convergent validity: Convergent validity between EIAE and Schutte Scale (Schutte et al., 1998) scores were moderate (rs=.64, p<.001). However, when participants were separated by age, the convergent validity of those aged ≥26 years (n=10) was high (rs=.83, p<.002) compared with participants aged ≤25 years (n=26) (rs=.58, p<.002)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [340] "Construct Validity: The DAPR subscales demonstrated significant correlations in the expected directions and magnitude with the other outcome measures, supporting construct validity. Concurrent Validity: Using a subsample (n = 546), each subscale of the DAPR was found to be significantly associated with related questionnaires in the expected directions, providing evidence for concurrent validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [341] "Criterion Validity: The food task results showed a significant correlation between food neophobia scores and participants’ willingness to try novel foods (r=−0.54, p < 0.01, N=221). There was also a significant correlation between food neophobia scores and the proportion of the novel foods among the selected foods (r=−0.29, p < 0.01, N=221)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [342] "Convergent Validity: The overall AAUSES scale and subscales were positively and significantly correlated with perceived health competence and generalized self-efficacy. The correlations were significant, but most were weak or moderate. Discriminant Validity: The chance and powerful others locus of control scales were negatively correlated with the overall scale score, MATPR and ATOA. Criterion-Related Validity: The AAUSES was positively correlated with antibiotic resistance concern (r =0.237, p < .001), and those who had heard of antibiotic resistance (yes: n = 252, no: n = 37) had significantly higher AAUSES scores than those who had not (Mann Whitney U = 2635.5, p < .001)."                                                                                                                                                                                                                                                                                                                             
## [343] "Face validity: Face validity of NEI-VFQ 25 had a mean (SD) of 7.8 (1.7) (n = 84). Test validity: The NEI-VFQ was significantly correlated to visual acuity and Patient Acceptable Symptom Status (PASS 5; Heiberg et al., 2008) as well as EuroQoL Health Questionnaire 3 Level version (EQ-5D-3 L; EuroQol G, 1990) at baseline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [344] "Construct validity: Using Spearman’s rank correlation coefficient, a moderate correlation was found between the FROM scores and the WHOQOL-BREF scores (n = 119, r = -0.55, p<0.001). The two domains also showed a moderate correlation with the WHOQOL-BREF score (Emotional r = -0.43, p<0.001; Personal and Social Life r = -0.52, p<0.001). The correlation was negative due to the different scoring directions of the questionnaires. The impact of illness on family members of patients was therefore correlated to their overall QoL. The GHS correlated negatively with the total FROM score using Spearman’s rank correlation coefficient (r = -0.51, p<0.001). The two domains also showed a moderate correlation with overall health (Emotional r = -0.48, p<0.001; Personal and Social Life r = -0.45, p<0.001)."                                                                                                                                                                                                         
## [345] "Concurrent Validity: The GIS was compared to scores of the South Oaks Gambling Screen (SOGS; Lesieur & Blume, 1987). Results showed the GIS favorably correlating with the SOGS: (r = 0.57, n = 115, P < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [346] "Construct Validity: There was a moderate positive correlation between the DASH and Nepali version of the Shoulder Pain and Disability Index (SPADI-NP) pain items r = 0.63, P < 0.001 n = 156 and a high positive correlation between the disability items; r = 0.81, P < 0.001, n = 132. The mean change of the DASH-NP scores demonstrated ‘moderate’ negative correlation with GROC-NP scores (r = − 0.40, p < 0.001). Test Responsiveness: The main analysis comparing the stable group with all improved groups demonstrated an AUC of 0.69 (95% CI: 0.57– 0.81, p < 0.001) and MIC of 11.2 percentage points indicating that DASH-NP has acceptable responsiveness characteristics and is sensitive to detect meaningful change."                                                                                                                                                                                                                                                                                                  
## [347] "Face and Content Validity: Using Aiken’s V coefficient and its cut-off value to determine validity content, consensus was found (V>0.67, n=32, p<0.05) for all items answered by participants in pilot study and for almost all subjects in the experts’ study (V>0.69, n=12, p<0.05)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [348] "Construct Validity: Pearson's correlation coefficient analysis revealed a significant, positive association between the two subscales (r = .96 and sig/2 tailed = .003). High Cronbach's alpha and acceptable inter-item correlation suggests the subscales represent two distinct dimensions (Polit & Beck, 2017). Content Validity: With a CVI score of 0.92 (n = 23) for subscale 1 and 0.89 (n = 23) for subscale 2, both fall within a range of being more than acceptable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [349] "Concurrent Validity: With respect to concurrent validity, results indicated significant correlation between NWR task and BVN 5–11 (Bisiacchi et al., 2005) test: rs = 0.772, p < 0.001 for disyllabic and rs = 0.832, p < 0.001 for trisyllabic items. Construct Validity: Considering the whole sample, Wilcoxon Signed-Rank test confirmed a statistically significant difference between a higher performance in disyllabic items and a lower performance in trisyllabic items (Z = −5.212, p < 0.001). The Kruskal-Wallis test showed that there was a statistically significant difference between the NWR scores performed by children of eight different age groups, both for disyllabic section (chi-square (7, n = 375) = 63.39, p < 0.001) and for trisyllabic section (chi-square (7, n = 375) = 146.95, p < 0.001)."                                                                                                                                                                                                         
## [350] "Discriminative validity: When social workers (n = 156) were compared to psychologists and counsellors (n = 61) on the PUNU (Busiol & Wu, 2018) and the CHKCC, both groups showed the same order among subscales; however, social workers (M = 3.64, SD = .70) scored significantly higher on the CHKCC than psychologists and counsellors (M = 3.19, SD = .80), t = -4.0, p < .001 (Cohen’s d = .60, 95% CI [0.30, 0.90]). Furthermore, concerning the CHKCC, whereas for social workers the confidence interval lies completely above the theoretical mid-point (from a low of 3.52, to a high of 3.75), meaning that the great majority of them thinks that psychoanalysis is in conflict with Hong Kong Chinese values and clients’ expectations, for psychologists and counsellors it lies below (from a low of 2.98, to a high of 3.40), showing that they have an opposite opinion."                                                                                                                                               
## [351] "Construct Convergent and Discriminant validity: The standardized factor loadings were all above .50, and the AVEs and CRs were above the required thresholds. These findings provide support for convergent validity (Hair et al., 2010). The AVEs of each construct were higher than the shared variance with the other constructs, providing support for discriminant validity (Hair et al., 2010). Moreover, in comparison to two alternative models, Model 2 and Model 3, the proposed model (χ2(242, n = 197) = 413.580, p < .001, χ2/df = 1.709, CFI = .92, IFI = .93, RMSEA = .06) had the best fit to the data, providing further support for discriminant validity."                                                                                                                                                                                                                                                                                                                                                            
## [352] "Convergent Validity: The correlation coefficients between the overall scale, its three subscales, and the total score of the C-SAPS (Wang et al., 2019) in the whole sample (n = 2,086) were 0.615 (P < 0.01, total score), 0.691 (P < 0.01, PD), 0.410 (P < 0.01, DU), and 0.251 (P < 0.01, PU). Other than the PU subscale and anxiety, the C-PMPUQ-SV and its subscales were significantly positively correlated with the three types of emotional symptoms (all Ps < 0.01). Construct Validity: Most correlations between the CPMPUQ-SV and the DASS-21 (Lovibond & Lovibond, 1995) were significant."                                                                                                                                                                                                                                                                                                                                                                                                                               
## [353] "Construct Validity: The Pearson correlation coefficient between total score Passion Scale and Grit-S scale was 0.39 for adults (mean age=21.23, SD=3.45, n=107)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [354] "Construct Validity: The MJWQ was significantly and positively associated with job satisfaction (r = .686; p < .0001; n = 378). Content Validity: Content validity was supported based on expert item feedback and the removal of items from consideration due to redundancy or nonfit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [355] "Criterion Validity: The correlation between the PRAS and the State–Trait Anxiety Inventory (STAI; Spielberger et al., 1983) was moderate, r = .45, N = 142, p < .001. Similarly, the PRAS was significantly correlated with the Edinburgh Postnatal Depression Scale (EPDS; Cox, Holden, & Sagovsky, 1987) (r = .52, N = 141, p < .001). Convergent/Discriminant Validity: The PRAS total scale demonstrated convergent validity with measures of anxiety, r = .45, p < .001, and depression, r = .52, p < .001, while also representing a distinct construct and discriminant validity from less-related constructs. Predictive Validity: PRAS mean scores significantly predicted STAI caseness at 1-month postpartum, β = 1.46, Wald = 7.13, OR = 4.30, 95% confidence interval (CI) [1.47, 12.54], p = .008, while statistically controlling for STAI mean scores at baseline (OR = 1.10, 95% CI [1.05, 1.16], p < .001)."                                                                                                           
## [356] "Discriminant Validity: The Area under the curve (AUC) scores for the two CY-BOCS subscales ranged from 0.88 (Compulsions) to 0.92 (Obsessions). The CY-BOCS total score showed an AUC=.921 (SE=.012; p<.001; lower limit 95% CI =.895, upper limit 95% CI =.943; n=528), which indicates outstanding discriminatory power. Sensitivity and Specificity: Sensitivity and specificity values ranged from 98.5 to 100 and from 70.7 to 79.31, respectively. Predictive Validity: Positive predictive values ranged from 9.5 to 11.4. Convergent and Divergent Validity: The divergent and convergent validities of the CY-BOCS total and subscales were good. Associations of the total and subscale scores of the Persian version of the CY-BOCS with other psychological variables were as expected."                                                                                                                                                                                                                                     
## [357] "Test Validity: The instrument and its 3 self-control requirements scales showed that in Sample 1 (n = 341) significantly positive correlations with all stress indicators were demonstrated as expected. This means that with increasing self-control requirements, there is an increase in burnout experience, anxiety, depressive symptoms and musculoskeletal complaints. Similar results were shown for the sample 2 data (n = 72), with all 3 self-control requirements having significant positive correlations with both dimensions of burnout. However, musculoskeletal complaints only reflected a significant influence in the Resisting distractions scale."                                                                                                                                                                                                                                                                                                                                                                  
## [358] "Convergent Validity: Psychometric analyses conducted on Sample 1 (N = 177) indicated that the SAPS scores demonstrated convergent validity with the scores from several other self-reported measures of student well-being and mental health problems. Incremental Validity: Psychometric analyses conducted on Sample 2 (N = 219) demonstrated that SAPS scores had incremental validity, when used in conjunction with scores from a self-report internalizing problems screener, used for identifying students with greater levels of mental health risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [359] "Construct Validity: The score for the ‘mood factor’ (apathy, depression/dysphoria) in NPI (Cummings et al., 1994) predicted the overall QOL score as determined from both the patients’ and the caregivers’ responses for subjects with mild (MMSE ≥ 21, n = 88) and moderate (MMSE < 21, n = 52) AD. Concurrent Validity: There was a substantive and significant agreement of the total score determined from the patients’ and the caregivers’ responses (r = 0.60, p < 0.01). Except for the items relating to physical health and money, there was moderate agreement between the patients’ and caregivers’ responses for each item."                                                                                                                                                                                                                                                                                                                                                                                               
## [360] "Convergent Validity: The mVAT was moderately correlated with the Mini Mental State Examination (MMSE; Folstein, Folstein, & McHugh, 1975) (Rho = 0.51, p < 0.001, n = 54), the Rowland Universal Dementia Assessment Scale (RUDAS; Storey et al., 2004) (Rho = 0.61, p < 0.001, n = 39), and the Cross-Cultural Dementia Screening (CCD; Goudsmit et al., 2017) objects test part A (Rho =0.58, p < 0.001, n = 71) and part B (Rho = 0.63, p < 0.001, n = 70). The VAT showed similarly moderate correlations with these cognitive screening measures. Discriminative Validity: The area under the curve (AUC) was 0.95 for the mVAT (n = 36) and 0.88 for the VAT (n = 30). In discriminating patients with dementia from the entire sample (including healthy controls), the AUC for the first trial of the mVAT was 0.85 ( n = 87); the AUC for the first trial of the VAT was 0.77 (n = 80). Separate analysis of only the Turkish participants revealed similar results."                                                           
## [361] "Convergent Validity: The D-DACS primary indices of awareness were assessed by correlations with the D-DACS global indices of awareness and self-report measures of conceptually related processes. Results showed moderate positive correlations between the primary and global indices of awareness (made prior to coding the primary indices), indicating that the D-DACS primary indices of awareness demonstrate a good level of convergent validity with the more subjective, index of awareness as measured by the D-DACS. But, there were no significant correlations between the D-DACS primary indices of awareness and any of the self-report scales or subscales. Predictive validity: No significant positive correlations were found between the primary indices of awareness and changes in the PHQ-9 (Kroenke et al., 2001) and the GAD-7 scores (Spitzer et al., 2006) between sessions 1 and 2 for a subset of the sample who returned for a second session (n = 35)."                                                  
## [362] "Convergent Validity: VAS (Herr et al., 2004), NRS (Chibnall & Tait, 2001) and VRS mean scores for communicative acute pain patients (n = 78) were 5.5 ± 2.7, 6.0 ± 2.4 and 3.8 ± 1.3, respectively. For non-acute pain and acute pain patients, the respective Spearman correlation coefficients between the Algoplus score and VAS, NRS or VDS scores were: 0.81 (n = 44), 0.88 (n = 57) and 0.78 (n = 86), and all these correlations were highly significant (P < 0.0001). Discriminant Validity: The total Algoplus score was significantly higher for acute pain than non-acute pain patients and those significant differences persisted for communicative and ICV patients. Test Sensitivity/Specificity: For patients with acute pain conditions, a score P2 out of 5 on the Algoplus scale was retained as the threshold for the presence of acute pain in elderly ICV inpatients, with 87% sensitivity and 80% specificity. Face Validity: Scores were obtained in <60 s for 80% of the raters and in <120 s for 95% of them." 
## [363] "Concurrent Validity: All subscales were significantly correlated via bivariate correlations with the Coaching Behavior Scale for Sport (CBS-S; Côté et al., 1999) scores. Discriminant Validity: Discriminant function analysis indicated that athletes’ reports on CPS-F discriminated between athletes’ performance levels, Wilks’s Λ = .94, χ2(6, n = 428) = 26.77, p < .001. Predictive Validity: All factors were significantly correlated with athlete awareness of mental strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [364] "Concurrent Validity: All subscales were significantly correlated via bivariate correlations with the Coaching Behavior Scale for Sport (CBS-S; Côté et al., 1999) scores. Discriminant Validity: Athletes’ reports on CPS-NS discriminated between athlete performance levels, Wilks’s Λ = .96, χ2(4, n = 418) = 16.96, p < .001. Predictive Validity: All factors were significantly correlated with athlete awareness of mental strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [365] "Face Validity: As the VAMS items were discussed, explored, and chosen by professional ice hockey players and the first author, face validity was demonstrated. Predictive Validity: Pearson's correlation coefficients showed the VAMS to be negatively associated with the performance measures Assist (r = −0.30, n= 59, p = 0.02) and Team Points (TP) (r = −0.29, n= 59, p= 0.028). However, the mindfulness subscale significantly correlated with Assist (r = −0.38, n= 59, p = 0.003), and TP (r= −0.35, n= 59, p = 0.007). Concurrent Validity: The VAMS showed significant correlation with the Swedish Acceptance and Avoidance Questionnaire (SAAQ; Lundgren & Parling, 2017), and with measures of emotional distress (i.e., depression, anxiety, and stress), demonstrating concurrent validity. Construct Validity: The VAMS demonstrated good construct validity, due to significantly correlating with the SAAQ (acceptance and action)."                                                                                
## [366] "Construct Validity: An independent sample of U.S. female college students (n = 184) completed a test battery including the IOET and measures of eating attitudes and disturbances, positive and negative affectivity, and general optimism. Results showed the IOET positively associating with the scores on measures of eating disturbances (e.g., bulimic symptoms) and negative affectivity; the IOET was negatively associated with scores on a measure of general optimism. Incremental Validity: The IOET was found to add incremental validity to the prediction of eating disturbances, even after accounting for general optimism and affectivity."                                                                                                                                                                                                                                                                                                                                                                            
## [367] "Discriminant Validity: Evidence was found in support of the questionnaire’s discriminant validity, as the scale measures a phenomenon other than that measured by the scales to which it is compared (AUDIT and OQ-45.2). The correlation between the ICE-A and the Alcohol Use Disorders Identification Test (AUDIT; Babor et al., 2001) was positive, low magnitude, and statistically significant (r = .26, p = .033, n = 66). However, the correlation with the Outcome Questionnaire (OQ-45.2; Lambert et al., 1996) was also positive but its magnitude was very low and statistically nonsignificant (r = .13, p = .305, n = 62)."                                                                                                                                                                                                                                                                                                                                                                                                
## [368] "Criterion Validity: The LFDSS assessed a sample of older African Americans (n = 69), with results showing the LFDSS risk score was significantly related to both the Mini Mental State Examination (MMSE; Folstein,1975) (r = –.26; p< .05) and the money management subscale of the Independent Living Scale (ILS), a performance-based measure of executional skills and financial knowledge (r = –.20; p < .05). The LFDSS risk score was increased for those with poorer cognition, poorer financial executional skills, and lower financial knowledge. These initial results demonstrated positive criterion-related validity for the LFDSS."                                                                                                                                                                                                                                                                                                                                                                                       
## [369] "Concurrent Validity: Total scores, nausea scores, and vomiting scores were correlated with Criteria for Nausea and Vomiting from the National Cancer Institute (NCI-NV; Berg, 1997; Kirkwood et al., 1994; Tenenbaum, 1994) from Day 1 to Day 3 (r = 0.58–0.89, P < 0.05, n = 20) except for nausea score on Day 1 (r = 0.34, P = 0.07). That is, children’s subjective experiences of nausea are more difficult than vomiting to be observed by the parents. There were significantly moderate to strong associations between parents and children in measuring these symptoms from Day 1 to Day 3 (total scores: r = 0.85–0.93; nausea scores: r = 0.67–0.93; and vomiting scores: r = 0.91–0.99, all P < 0.01). Therefore, parents’ observation of their children’s symptoms was strongly associated with their child’s self-report of symptoms. Face Validity: For face validity, this instrument was translated from English to Chinese and then translated back from Chinese to English by a group of doctoral nursing students."  
## [370] "Convergent Validity: Convergent validity showed a strong, positive correlation between the depressive symptoms subscale and HADS (Zigmond & Snaith, 1983) (r = 0.61, n = 444, p < 0.01). Divergent Validity: There was a negative correlation between the CSPro-BC sexual subscale and HADS (r = − 0.49, n = 312, p < 0.01), and a negative relationship was observed between the sexual subscale and fatigue (BFI; Mendoza et al., 1999) (r = − 0.31, n = 312, p < 0.01). These results did indicate divergent validity of the subscales investigated. Content Validity: The expert panel yielded an I-CVI of 0.81–0.90, indicating a high level of content validity for each single item. The SCVI for the full scale was 0.87, indicating that the overall scale had a high degree of relevance and comprehensibility and was appropriately culturally adapted."                                                                                                                                                                      
## [371] "Convergent and Divergent validity: Severity scores of the AVHRS-Q were strongly correlated to the severity scores of the AVHRS (Bartels-Velthuis et al., 2012;, Jenner & van de Willige, 2002) (r = 0.90, p < 0.01). The AVHRS-Q and AVHRS did not differ in the identification of mild and severe voice-hearers [chi-squared (1, N = 32) = 15.71]. AVHRS-Q severity scores had moderate correlations with psychological distress (r = 0.43, p < 0.01, r = 0.50, p < 0.05) and quality of life (r = − 0.22, p < 0.01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [372] "Convergent validity: There was a moderate correlation (N = 79 observations; correlation coefficient = 0.525; p < .01) between the bedside nurses LOF and the Activity Measure for Post-Acute Care (AM-PAC) 6-Clicks (Geelen, Valkenet, & Veenhof, 2018; Jette et al., 2014) score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [373] "Face Validity: The items themselves, drawn from extensive assessment interviews with chronic hallucinators (Chadwick & Birchwood, 1994), established good face validity. Construct Validity: Factor analysis was used to determine construct validity. Criterion-related Validity: From a sample (n = 40) assessed via semi-structured interview, results found the malevolence scale to have a highly significant difference with the other criterion groups, with people known to believe their voices to be malevolent scoring very much higher on the malevolence scale of the BAVQ than those known to believe their voices either 'benevolent' or 'neither'; these latter two groups did not differ on this scale. Moreover, comparing the criterion groups using the benevolence scale yielded a highly significant finding, with the 'benevolent' group scoring very much higher than the 'malevolent' and 'neither' group, who did not differ from one another."                                                                
## [374] "Construct Validity: The QYCC was assessed for construct validity by examining how it correlated with theoretically connected measures: the short version of the Gay Affirmative Practice scale (GAP-S; Gandy & Crisp, 2015), which measures beliefs and behaviors of gay-affirmative practice, and the Transphobia Scale (Nagoshi et al., 2008), which measures attitudes about issues of gender fluidity and transgender identity. Pearson’s correlations showed values of r = 0.645 (p < .001; n = 113) for the GAP-S and r = − 0.703 (p < .001; n = 99) for the Transphobia Scale. Good construct validity was seen between these measures and the QYCC."                                                                                                                                                                                                                                                                                                                                                                             
## [375] "Concurrent Criterion Validity: RPQ total scores at six months post TBI of patients (self-)reporting severe (M = 20.7; SD = 18.3; N = 30) or moderate (M = 20.2; SD = 13.9; N = 112) disabilities according to their total scores on the GOSE scale, differed significantly to those that showed good recovery at this point in time (M = 8.3; SD = 10.6; N = 248) (F(2, 387) = 42.7; p <.001). RPQ total scores at six months post TBI further were found to differentiate between initial mTBI (M = 11.6; SD = 13.2; N = 316) and moderate TBI (M = 20.2; SD = 16.8; N = 21) diagnoses (GCS-scores) (F(2, 357) = 4.5; p = .012). Test Sensitivity: Recovery status at six months post TBI, showing that those who (self-) reported moderate or severe disabilities six months after the brain injury took place, had significant lower RPQ total scores compared to those reporting good recovery at that time point."                                                                                                                  
## [376] "Concurrent Validity: Analyzing the correlations of the SEAR score with the OAS score determined concurrent validity. Results showed the correlations between the scores for the first aggressive incident and for the most aggressive incident were rs = 0.591 (p < 0.001, N = 254) in the first case, and rs = 0.595 (p < 0.001; N = 254) in the latter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [377] "Construct Validity: Subject matter experts (i.e., advanced doctoral students in I/O Psychology) reviewed the LMX ambivalence scale items, finding them to reliably match the construct definitions for each of the 3 scales, at above the recommended 75% acceptance level (Hinkin, 1998), indicative of good content validity. Discriminant Validity: A sample of full-time working adults (n = 152) from the UK and US was assessed for 3 related concepts: overall LMX quality, ambivalent leader identification, and LMX certainty (adapted from the LMX7 scale). Results showed LMX ambivalence moderately correlated with LMX quality (-.42, p < .001) and LMX certainty (-.54, p < .001), and that LMX ambivalence was highly correlated with leader ambivalence (.78, p < .001). Further discriminant validity was assessed via confirmatory factor analysis."                                                                                                                                                                   
## [378] "Criterion Validity: Correlations of the PSEDT-1 scales with the external criterion HbA1c value, showing the expected significant correlations showed. Known-Groups Validity: The group of children whose HbA1c level was within the recommended target value (<7.5) showed on the PSEDT-1 overall scale significantly higher values (M = 4.56, SD = 0.72, n = 96) compared to the group in which the children did not meet the target value could achieve (M = 4.40, SD = 0.64, n = 123, U-Test, z = −2.181, p = 0.015). Convergent Validity: The theoretically expected correlation pattern for checking the convergent validity showed in the expected directions, although the connections tend to be were moderate."                                                                                                                                                                                                                                                                                                                 
## [379] "Predictive Validity: In Study 2, the NAT tested a subsample of patients at follow-up (NAT2, follow up patients, n = 100), along with the Instrumental Activities of Daily Living Scale (IADL; Barberger-Gateau et al., 1992). The Pearson’s correlation between NAT2 and the IADL was r = .64, which proved to be as high as the correlation of NAT2 and NAT1 (Study 1: patients at discharge) at r = .66. Content/Face Validity: In items 1 and 3, tasks are conjoined into larger activities. In item 2, a single task is performed in the presence of related distractors. Item 3 involves searching through a drawer and remembering to signal after each task. All these are features of real world activities and contribute to the NAT’s content and face validity. Concurrent Criterion Validity: The NAT yielded robust correlations (around .5) with both the physical and cognitive subscales of FIM (Linacre et al., 1994)."                                                                                                 
## [380] "Predictive Validity: The Study 2 sample (n = 264) demonstrated the predictive utility of the RMQ via an experiment on helping behavior following Weiner's (1985) prediction model. Results showed that the likelihood of helping a needy classmate was a joint function of the controllability of the reason for need and the peer helper’s attributional style. Participants with an Unsupportive attributional style had more extreme beliefs about their classmate's control over the reason for need, as evidenced in the more polarized ratings of personal control in the two treatments conditions, demonstrating the utility of considering individual differences in causal perceptions affecting helping behavior."                                                                                                                                                                                                                                                                                                            
## [381] "Content Validity: The semantic equivalence rate was 97%. The content validity index (CVI) was 95%. Construct Validity: The interpretation of the two components was consistent with the proposed factor structures of the original RS-14 (English version). Also, there was a moderate positive correlation between scores on the Chinese RS-14 and self-esteem scores (r = 0.38, p < 0.01). Convergent and Discriminant Validity: The correlation coefficients among items within personal competence and acceptance of self and life ranged from 0.62–0.85 and 0.71–0.83, respectively. In addition, there was a moderate negative correlation between personal competence and acceptance of self and life (r = 0.38, n = 1816, p < 0.01)."                                                                                                                                                                                                                                                                                            
## [382] "Convergent validity: Both HCAT subscales were positively associated with depression and anxiety in the full sample (n = 1848), demonstrating good convergent validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [383] "Predictive Validity: Structural equation analysis was used to assess a measurement model. Adequate model fit was demonstrated: chi-square (325, n = 712) = 683.91, p < .001, chi-square /df = 2.10; CFI = 0.97; TLI = 0.96; SRMR = 0.041; RMSEA = 0.039 (90% CI = 0.035–0.044). Measurement model robustness was also supported. Additional results reported explained variances of 15% for autonomy need satisfaction, 20% for competence need satisfaction, 10% for relatedness need satisfaction, and 28% for intrinsic motivation. As a whole, these results support the instrument’s predictive validity."                                                                                                                                                                                                                                                                                                                                                                                                                          
## [384] "Convergent Validity: The EFA sample (n = 813) compared correlations between the CORSI factors, the VOCI (Thordarson et al., 2004), and the BAI (Beck & Steer, 1993), where positive correlations indicate convergent validity (Hinkin, 1988). The results showed that most factors correlated moderately strongly with both the VOCI and the BAI. Convergent validity was also assessed with the BDI-II (Beck et al., 1996), with results showing the O-SR and C-SR factors correlating moderately strongly. Divergent Validity: The correlations between the CORSI and RSES (Rosenberg, 1965), based on theorized negative relations between RS and self-esteem, used the EFA sample. Results showed low to moderate negative correlations between RSES and CORSI total score (r = –.43, p < .001), O-G factor score (r = –.42, p < .001), C-GP factor score (r = –.23, p < .001), C-GA factor score (r = –.16, p < .001), O-SR factor score (r = –.32, p < .001) and C-SR factor score (r = –.42, p < .001)."                          
## [385] "Content Validity: After controlling for age and sex, the mean patient-rated AFQ score for the geriatrics consult clinic was significantly higher than that for the comparison PCPs (19.3 vs 15.6; P < .001), providing support for content validity. Convergent Validity: Respondents to Survey 1 provided AFQ scores that correlated positively with their “quality of chronic care” total scores (r = .87; P < .001) and with their scores on each of the three “quality of chronic care” subscales: goal setting, r = .82, P < .001; activation, r = .79, P < .001; and coordination, r = .72, P < .001, supporting the convergent validity of the AFQ. Predictive Validity: The mean AFQ score for respondents who indicated they would “definitely recommend” their PCPs to others (n = 768) was 19.8 compared with a mean AFQ score of 13.4 for respondents who indicated they were “somewhat likely” or “unlikely” to recommend their PCPs (n = 66)."                                                                             
## [386] "Face and Content Validity: Participant selection for face and content validity testing was based on the selection method used in the Copenhagen Aging and Midlife Biobank (CAMB), which matches participants according to age, gender, ethnicity, cohabitation status, and socioeconomic status. The informants (total: n = 31) were assessed by individual interviews (n = 10) and focus group discussions (FGDs: n = 21). In general, the informants agreed that the CSRQ covers relevant aspects of social relations in a simple and useful way, among others, due to the role of specific items on different types of social support (emotional, instrumental) and relational strain (conflict, demands, worries). Also, the informants found the language used to be clear, and the number of response categories satisfactory."                                                                                                                                                                                                    
## [387] "Convergent Validity: The two versions of the QuickSort had satisfactory to good convergent validity (Sorting ICC = 0.72; Explanation ICC = 0.86; Total ICC = 0.84). Discriminant Validity: The likelihood of community-dwelling older adults and inpatients (n = 260) being impaired on either the Mini-Mental State Examination (MMSE; Folstein, Folstein, & McHugh, 1975) or Frontal Assessment Battery (FAB; Dubois et al., 2000), or both, increased by a factor of 3.75 for QuickSort Total scores of less than 10 and reduced by a factor of 0.23 for scores of 10 or greater. Sensitivity and Specificity: A cut-score of less than 4 correctly classified 84% of participants, with 43% sensitivity and 94% specificity."                                                                                                                                                                                                                                                                                                        
## [388] "Construct Validity: Factor analysis was used to assess construct validity. Convergent Validity: Pearson's correlation coefficients (r) were calculated between the BEACS' scores and those of the Beliefs About Psychological Services (BAPS; Ægisd ottir & Gerstein, 2009), an 18-item measure of beliefs about seeking professional services for psychological concerns. Using the study 2 sample (N = 283) to assess the 28-item BEACS, results showed the BEACS scores moderately correlating with the BAPS's subscale scores. Criterion Validity: The BEACS' factors were examined for their ability to discriminate between persons, with and without prior use of counseling. Tests were conducted using between-subjects ANOVA, with gender and prior counseling experience as the independent variables. The results showed that while the main effect for prior counseling experience was significant, there was no significant effect for gender (F [1, 279] = .358, p = .55]."                                               
## [389] "Convergent validity: Convergent validity was demonstrated by moderate positive correlation between total BM DJGLS loneliness score and UCLA Loneliness Scale (ULS‐8; Hays & DiMatteo, 1987) (r = 0.56, n = 81, P < 0.001). Significant associations were found between loneliness and sex, ethnicity, geographic area, and marital status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [390] "Convergent/Divergent Validity: Findings indicated good convergent and divergent validity when assessed with symptom measures of worry, depression, and anxiety. These results showed that the significant correlation between the intolerance of uncertainty and worry still remained after partialing out anxiety and depression (r = 0.44, 0.43, 0.41; p < 0.001, N = 940; when controlling for anxiety, depression and both anxiety and depression, respectively). Furthermore, analyses demonstrated that intolerance of uncertainty contributed significantly to worry, even after controlling for demographic variables and levels of anxiety and depression."                                                                                                                                                                                                                                                                                                                                                                     
## [391] "Test Validity: The mean value for participants’ own assessment of active aging was 7.77 (SD 1.70), and for occupational therapist’s assessment, 8.71 (SD 1.74). The correlation between these two assessments was r = .508 (p < .001, n = 44). The higher were the occupational therapist’s assessment and the participants’ own assessment of their active aging, the higher were the scores in the UJACAS scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [392] "Content Validity: In Phase 1, Experts reviewed the item pool, with over 80% having rated the items as \"agreed\"or \"strongly agreed\" regarding the focus of each item. In Phase 2, the items were reviewed by a group of community-based end users (n = 10), who participated in audio-recorded think-aloud (i.e., cognitive interviewing) face-to-face interviews via desktop computer. While participants believed the items to be straightforward, they also identified problematic items. Minor wording adjustments and further item refinement established content validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [393] "Construct Validity: The EVQ scores were tested for initial construct validity via experimentally manipulating evaluative attitudes toward violent behavior using persuasive messaging and evaluative conditioning. The authors combined the two experimental conditions (n = 233) and the two control conditions (n = 235) to compare posttest EVQ scores across all participants. Mean posttest EVQ scores were shown to be significantly lower in the experimental condition (M = 1.77, SD = 0.70) than in the control condition (M = 2.01, SD = 0.65; d = −0.36, 95% CI [−0.54, −0.17]). Taken together, the results provided initial evidence for the construct validity of EVQ scores."                                                                                                                                                                                                                                                                                                                                             
## [394] "Face/Content Validity: Face/content validity obtained by the expert committee for the SAS-Pr was high. Experts considered the measure to be useful in assessing addiction to smartphone use. Additionally, the subjects of pretest assessment (N=50) found the scale to be complete in terms of their requirements and it was conclusive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [395] "Content Validity: Subject matter experts (SMEs; N = 13) who were graduate students at a Canadian Industrial-Organizational Psychology program sorted a total of 44 items into Personalized or Socialized nPower. Items with less than 75% agreement from the SMEs were removed. However, because most of the misclassified items were reverse-coded items, additional reverse-coded items were created for a total of 33 initial items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [396] "Construct Validity: Undergraduate participants (n = 56) completed the 11-item IS, together with the Adolescent Decision Making Questionnaire (ADMQ; Mann, Harmoni, & Power, 1989; Tuinstra et al., 2000), the Penn State Worry Questionnaire (PSWQ; Meye et al., 1990), the State-Trait Anxiety Inventory (STAI; Spielberger, 1983), and the Beck Depression Inventory (BDI; Beck, 1967). Contrary to expectations, no correlation was seen between the IS and the ADMQ impulsivity scale. But in line with expectations, the IS correlated with all four psychopathology scales. Predictive Validity: The scores on the 11-item IS were correlated with the Intolerance of Uncertainty Scale (IUS; Buhr & Dugas, 2002), using a sample of individuals (n = 39) in a blue or red straw identification/inference task. The results indicated that the IS exclusively predicted the number of straws in the inference task (standardized beta = .44, p < .01) and in the identification task (β = .32, p < .05)."                          
## [397] "Convergent/Discriminant Validity: The convergent relations of the FEMT with accurately linguistically labeling emotions, that is, ρ(FEMT, DANVA-F [adult version; Nowicki & Duke, 2001]) = .89 (p < .01), ρ(FEMT, PEI-Faces) = .53 (p < .01) were higher than the discriminant relation of the FEMT with rating smileys with reference to pictures of art and landscapes, that is, ρ(FEMT, PEI-Pictures) = .28 (p < .01): ρ = .89 versus ρ = .28, N = 344, z = 15.31, p < .01; ρ = .53 versus ρ = .28, N = 344, z = 5.75, p < .01. Criterion/Incremental Validity: The FEMT correlated with manifest and latent measures of social astuteness (ρ = .22, p < .05) and adaptive performance (ρ = .19, p < .05). The FEMT even showed incremental validity in predicting coworker ratings of targets’ social astuteness (ρ = .22, p < .05, one-tailed) above and beyond the DANVA2-F, sex, and age, despite being substantially correlated with the DANVA2-F. These findings support the FEMT’s criterion validity in the work context."    
## [398] "Content Validity: Expert panel and graduate student review established content validity. Construct Validity: Exploratory factor analysis via principal component analysis assessed construct validity. Concurrent Validity: The FIES:CI was correlated with the PPUS-FM (Mishel, 1990; Mishel & Epstein, 1997). The results showed correlation between the PPUS-FM and the NI factor as +.591 (p < .001); correlation was nonsignificant for the PPUS-FM and the positive integration factor (PI). This (NI and PPUS-FM) was in an expected direction of relationship, and there was not an expected positive relationship between PI and the PPUS-FM. Discriminant Validity: Within the sample (n = 157), discriminant validity was demonstrated by the effect of illness type (physiologic or psychosocial CI), F(1, 155) = 7.09; p < .05, on the FIES:CI sum score. Psychosocial illnesses were cognitive, behavioral, and psychiatric conditions (n = 26); physiologic illnesses (n = 131) were comprised of an array of illnesses." 
## [399] "Convergent Validity: The instrument was tested in a sample of undergraduate and graduate students (n = 168) at the University of Southampton, United Kingdom) at Time 1 (T1), during the day of their graduation ceremony, and at Time 2 (T2), at 4–9 months after T1. The results showed Anticipated nostalgia at T1 was positively associated with perceived meaningfulness of university life, r (166) = .51, p < .001, and the intention to preserve pleasant memories for later recollection, r(147) = .43, p < .001. Predictive Validity: Anticipated nostalgia that assessed the extent to which it predicted nostalgia and psychological functioning a few months after the life transition occurred, was demonstrated in convergent validity results, as T1 predicted stronger nostalgia at T2, r(66) = .56, p < .001."                                                                                                                                                                                                         
## [400] "Construct Validity: Bivariate analysis was conducted on a representative sample of the UK population (n = 868), to observe the DCI's relationship with socioeconomic and sociodemographic variables (i.e, gender, income, education, and geographical location) that affect Internet access, usage, and proficiency. The results showed all of these variables, except for gender, to be related to Digital Capital, supporting construct validity. Additionally, the results of the EFA conducted on the Digital Competence Index also supports construct validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [401] "Predictive Validity: The 7 items retained from the screening subsample (n = 4,620) were used in a second binary logistic regression as predictors, with the criterion for inclusion being a statistically significant increment to the explained variance. The results found that 5 of the 7 predictor items produced a statistically significant addition (20%) to the explained variance, appearing in the equation as follows: Chi-square (5, N = 4620) = 597.40, p < .001, Nagelkerke R² = .20. The 5 items were drawn from 3 different CPQ scales (i.e., Commitment, Academic Conscientious, and Social Integration)."                                                                                                                                                                                                                                                                                                                                                                                                              
## [402] "Content Validity: Following several discussions, an exclusion consensus was reached and items considered irrelevant were rejected. Construct/Discriminant Validity: The results found a modest correlation between items. There was significant correlation between the felt stigma scale and enacted stigma scale among patients (Spearman's r = 0.892; p = 0.000; N = 150) and within the community (Spearman's r = 0.794; p = 0.000)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [403] "Content Validity: Following several discussions, an exclusion consensus was reached and items considered irrelevant were rejected. Construct/Discriminant Validity: The results found a modest correlation between items. There was significant correlation between the felt stigma scale and enacted stigma scale among patients (Spearman's r = 0.892; p = 0.000; N = 150) and within the community (Spearman's r = 0.794; p = 0.000)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [404] "Face Validity: Face validity was established based on focus group discussions with members of the target population. Content Validity: Universal agreement of scale-level content validity was given by the expert reviewers using the method recommended by Polit and Beck (2006). Construct Validity: Construct validity of the SPPI was established based on the findings of CFA. Discriminant Validity: Discriminant validity was supported by negative correlations between children’s perception of peer support (PPSS; Ladd et al., 1996) and each latent factor of the SPPI. Convergent validity was supported by a moderate correlation between the screening item of the Olweus Bullying Questionnaire (OBQ; Olweus, 1996) and the two latent factors of the eight-item SPPI (overt and social victimization) (n = 331, rs =.533)."                                                                                                                                                                                            
## [405] "Construct Validity: An exploratory factor analysis (EFA), followed by a confirmatory factor analysis (CFA), were used to assess construct validity. Concurrent Validity: The MSQ was tested by correlating MSQ factors with the internalization and externalization scales of the Child Behavior Checklist (CBCL; Achenbach & Rescorla, 2001; Achenbach et al., 2014) and with the Self-Representation Questionnaire (Silva, Martins, & Calheiros, 2016) dimensions in a subsample of children and adolescents (n = 203; 52.7% boys; ages 8-16 years) and their parents/caregivers. The results showed that physical and psychological abuse and psychological neglect were positively correlated with children's and adolescents' externalizing problems (r = .37, p < .001; r = .18, p = .020)."                                                                                                                                                                                                                                       
## [406] "Content validity: The authors observed that the majority of the items obtained I-CVI above 0.9 (n = 43). The authors also observed the mean I-CVI (S-CVI/AVE) of 0.94 for the instrument as a whole, which meant that the content of the instrument made it possible to measure that which it proposed to measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [407] "Construct Validity: Both exploratory and confirmatory factor analysis (EFA and CFA) were used to assess construct validity, with the sample (n = 807) randomly split between these approaches. Nomological Validity: The relationship of the KST construct with other constructs was examined to determine the nomological validity, and the prediction of output indicators by the KST was evaluated by structural equation modeling (SEM). The results showed the KST to be associated with outcome indicators, and with related variables (i.e., seniority and research fields). Convergent Validity: The convergent validity was calculated on the basis of the results obtained in the CFA, which showed that the items comprising the KST scale were significantly and strongly correlated with the latent variable they were assumed to measure."                                                                                                                                                                                 
## [408] "Test Validity: The ETUQ was assessed for Internal Scale Validity by taking into account both the infit and outfit statistics. The results showed that 82 (95%) of the initial 86-item ETUQ demonstrated acceptable goodness-of-fit to the Rasch rating scale model. The results indicate that overall, the ETUQ demonstrated acceptable internal scale validity. The ETUQ was also assessed for Person Response Validity using the sample (n = 157). For 152 participants (97%), acceptable goodness-of-fit to the Rasch rating scale model was demonstrated, indicating acceptable person response in this sample of older adults with or without cognitive deficits."                                                                                                                                                                                                                                                                                                                                                                  
## [409] "Content Validity: Following several discussions, an exclusion consensus was reached and items considered irrelevant were rejected. Construct/Discriminant Validity: The results found a modest correlation between items. There was significant correlation between the felt stigma scale and enacted stigma scale among patients (Spearman's r = 0.892; p = 0.000; N = 150) and within the community (Spearman's r = 0.794; p = 0.000)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [410] "Content Validity: Following several discussions, an exclusion consensus was reached and items considered irrelevant were rejected. Construct/Discriminant Validity: The results found a modest correlation between items. There was significant correlation between the felt stigma scale and enacted stigma scale among patients (Spearman's r = 0.892; p = 0.000; N = 150) and within the community (Spearman's r = 0.794; p = 0.000)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [411] "Test Sensitivity and Specificity: The sensitivity and specificity scores of .90 and .71 are comparable with average findings of many accepted validity screens (e.g., Martin et al., 2019; Walls et al., 2017). The ROC curve for Structure established the score above which an individual was likely to be feigning. This second curve established a cutoff of 4.5, with an AOC of .70, p < .001. The ROC curve for Atypicality established a cutoff of 5.5, above which an individual was judged to be feigning. For inconsistency, there was insufficient variance to apply the ROC procedure. Chi-squares established that 3.7% (n = 5) of the honest control group, 22% (n = 22) of the feigning group and 5% (n = 2) of the PTSD group endorsed at least one inconsistency item. None of DD cases had a positive inconsistency score."                                                                                                                                                                                            
## [412] "Construct Validity: Examining the scale using a multitrait, multimethod (MTMM) matrix design demonstrated construct validity. Convergent Validity: The average variance extracted (AVE) showed that 18 of 24 possible values for AVE exceeded the convergent validity criterion of 0.50, while two others were close to 0.50. Discriminant Validity: Examining the correlations, the mean, standard deviation, and reliability for each factor across all 5 countries showed all correlation values to be under the 0.90 threshold required for discriminant validity. Nomological Validity: Data collected from Apple (n = 102) and Samsung (n = 100) mobile phone users in the UK were used to test nomological validity and managerial implications. Results for the Samsung users showed, as hypothesized, that product quality and the material self significantly interacted to influence brand love (b = − 0.10 t = − 2.25), with brand love fully mediating the effects of product quality and the material self on loyalty."    
## [413] "Criterion Validity: For the Cross-Validation sample, frequencies demonstrated that 61.7% (n = 192) of the sample positively endorsed at least one of the SD behavioral domain items. Convergent Validity: For the Cross-Validation sample, all the SD behavioral domain scales and scores were positively correlated with CMAI‐SF (Cohen‐Mansfield et al., 1995) and ABS (Perlman & Hirdes, 2008), except for the Inability to Inhibit and Overly Flirtatious scales. The SDi scores were positively correlated with ZBI‐12 (Bédard et al., 2001; Zarit, Todd, & Zarit, 1986). Discriminant Validity: For the Cross-Validation group, sleepiness and pain self‐efficacy were uncorrelated with the SD domain scales and scores."                                                                                                                                                                                                                                                                                                         
## [414] "Criterion Validity: Data was gathered on a sample of consecutive stroke patients (n = 302) who were admitted to an acute tertiary care hospital and followed up for 6 months. Across all stroke measures, the results showed significant association with the FOIS, supporting criterion validity. Consensual Validity: Agreement was evaluated with predefined scale rankings by 63 dysphagia clinicians (speech-language pathologists). The results showed that agreement with the predefined scale scores ranged from 81% to 98%. The Kendall concordance was .90."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [415] "Concurrent Validity: The total analytic sample (n = 447) was tested for concurrent validity through correlation analyses between the Scale of ESE, the SESS-14 (Hetling, Hoge & Postmus, 2016), the Financial Strain Survey (Aldana & Liljenquist, 1998; Hetling, Stylianou & Postmus, 2015), and the item measuring participants' difficulty with income. The results showed the Scale of ESE to be negatively correlated with the overall Financial Strain Survey and all five of its subscales, and also negatively correlated with the difficulty with income item (r = −.285, p < .01). The Scale of ESE was positively correlated with the overall SESS-14 scale and all three of its subscales."                                                                                                                                                                                                                                                                                                                                  
## [416] "Convergent Validity: For the factors, the average variance extracted (AVE) scores overall met or exceeded the required value of .50, establishing convergent validity. Discriminant Validity: The PBE scale was assessed for discriminant validity via its maximum shared variance (MSV), which must be lower than the AVE, and the square root of the AVE, which must be greater than the interconstruct correlations (Hair et al., 2014). With the exception of Brand appeal and Brand differentiation in a sample of Dutch business administration students (n = 2470), the MSVs for all of the PBE scale’s factors were lower than the respective AVE values. Moreover, the square root of the AVE exceeded the correlations between the scales. Collectively, the results offered proof of discriminant validity. Criterion Validity: A series of hierarchical regression analyses on the PBE scale showed results that explained a significant part of the variance in perceived employability and perceived career success."      
## [417] "Content Validity: An expert panel of inclusion practitioners/researchers and HR managers/directors assessed the initial 14 items for content validity. Their feedback resulted in item refinement and reduction, with 10 items being retained for further analysis. These actions lent support for content validity. Convergent Validity: The first-wave sample (n = 346) was used to examine the correlations between perceived LGBT supportive practices (captured by the final eight item measure), extent of disclosure, and perceived heterosexism in the workplace. The results showed that perceived LGBT supportive practices was positively related to extent of disclosure (r = .23, p < .001) and negatively related to perceived heterosexism (r = −.47, p < .001)."                                                                                                                                                                                                                                                         
## [418] "Criterion-Related Validity: Correlation analysis was conducted for the total CAM score and the ASC factor (combined score of the first seven items) measuring difficulty expressing feelings (Fukunishi et al., 1998). The correlation was .73 (n = 131). Contrasted-Groups Validity: Mean CAM scores (after unit weighing) were analyzed for differences in several subgroups (i.e., gender, ethnicity, and reported history of other behavioral and related problems). These comparisons represent contrasted groups validity evidence and support the utility of the CAM in differentiating between these groups."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [419] "Convergent Validity: There were significant positive correlations between the actual, felt, and ideal BIMTM‐MB scores and the respective Bodybuilder Image Grid‐Original (BIG‐O; Hildebrandt et al., 2004) scores within the same dimensions of the two scales. Criterion Validity: Perceived ideal BIMTM‐MB muscularity scores correlated significantly positively (rs = .15; p = .025; n = 165; one‐tailed), and perceived ideal BIMTM‐MB body fat scores correlated significantly negatively (rs = −.16; p = .024; n = 165; one‐tailed) with self‐reported frequency of physical training."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [420] "Convergent validity: APA bias scores were positively associated with the % of time spent sedentary during the free-choice play period (r = 0.38, p = 0.004, n = 60), independent of age, sex, and race/ethnicity. Criterion validity: Associations with adiposity and fitness were in similar directions to previous epidemiological reports of objectively-measured activity [3, 5, 6] and enhance the clinical meaningfulness of the APA bias scores in pediatric health research."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [421] "Convergent/Discriminant Validity: PMH was significantly positively correlated with social support and with post-traumatic growth (both: p < .001). Its correlation with depressive symptoms, PTSD and suicide-related outcomes was significantly negative (all: p < .001). Furthermore, participants with greater suicide risk (SBQ-R [Osman et al., 2001; Amini-Tehrani et al., 2020] ≥ 7; n = 146, 25.5%) and participants with lower suicide risk (SBQ-R < 7, n = 427, 74.5%) differ significantly in PMH scores: SBQ-R ≥ 7: M (SD) = 11.22 (6.27), SBQ-R < 7: M (SD) = 16.83 (5.47), t (225) = 9.627, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                     
## [422] "Convergent Validity: All factor loadings reached a significant level (β = .41~.86, p < .01), providing evidence of convergent validity. Discriminant Validity: The results showed significant differences between the proposed four-factor model and all six nested models (chi-square (1, N = 237) from 151.71 to 392.26), providing evidence of discriminant validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [423] "Concurrent Validity: The correlations of the RAY functioning index at Month 6 with SAPS (Andreasen, 1984) (−0.156, p = .024, N = 209); SANS (Andreasen, 1983) (−0.208, p = .003, N = 206); and GAF (American Psychiatric Association, 1994) (0.276, p < .001, N = 209) were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [424] "Convergent Validity: The Exploratory Structural Equation Model (ESEM) used to evaluate 4 overlapping factors (i.e., prevention, escape, behavioral avoidance, cognitive avoidance), was also used to assess convergent validity with a different sample (n = 513). The results showed that 3 of the 4 factors (prevention, behavioral avoidance, cognitive avoidance) demonstrated good convergent validity; the exception was the escape factor. In line with predictions, participants who found the experience of disgust more aversive (disgust sensitivity) were also more likely to report that they want to prevent experiencing disgust and engage in disgust-avoiding behaviors and cognitions."                                                                                                                                                                                                                                                                                                                                
## [425] "Discriminant Validity: In using the Mann–Whitney U-test to compare cases and controls, results showed evidence of discriminant validity. Test Sensitivity/Specificity: A multivariate analysis was conducted using a logistic regression model. The dependent variable was the presence/absence of excessive menstrual loss (EML); the independent variables were the answers given for each of the 21 initial items. The analysis was conducted for 70% of the sample (training set), with the remaining 30% used as a confirmatory sample (validation set). Receiver Operating Characteristics (ROC) curve was calculated and area under the curve (AUC) was derived to measure discrimination. The results showed that for cases with Pictorial Blood loss Assessment Chart-confirmed (PBAC; Higham, O’Brien, & Shaw,1990) excessive menstrual loss (EML; n = 211) and controls (n = 153), 6 items met the model’s criteria; together they yielded a sensitivity of 86.7% and specificity of 89.5% in identifying cases and controls."
## [426] "Concurrent Validity: The MM-PHQ-9 demonstrated good concurrent validity with the Quick Inventory of Depressive Symptomology (QIDS-SR-16; Rush et al., 2003), and excellent internal consistency. Concurrent validity between the paper and mobile app versions of the MM-PHQ-9 was r = 0.67. Test Responsiveness: Sensitivity to change over a 14-week period was d = 0.41 compared with d = 0.61 on the QIDS-SR-16. Sensitivity and Specificity: The sensitivity of the MM-PHQ-9 cut-off score of ≥10 was 98.7% (true positives: n = 77 out of 78 participants with MDD), with a specificity of 100.0% (true negatives: n = 43 out of 43 control participants), positive predictive value of 100.0% (true positives: n = 77 out of the sum of True and False Positives (n = 77)) and negative predictive value of 97.7% (true negatives: n = 43 out of the sum of true and false negatives (n = 44))."                                                                                                                                  
## [427] "Content/Face Validity: In pre-testing, no subject demonstrated any problem in understanding the MFIS-PD/BR confirming the content and face validity. Convergent Validity: Convergent validity of MFIS-PD/BR was established with the FSS and PFS-16, suggesting a moderate level of association. Divergent Validity: The adequate divergent validity was established between MFIS-PD/BR and motor and non-motor symptoms, cogni tive performance, disease severity, anxiety, and depression. Test Sensitivity/Specificity: Receiver operating characteristic (ROC) curve and the cut-off point for MFIS-PD/BR to detect fatigue in PD subjects (n=70). Sensitivity=79.2%; 1-Specificity=80%; Standard error=0.05; Accuracy=0.83 [0.72–0.91] (p<0.001)."                                                                                                                                                                                                                                                                                  
## [428] "Item Response Theory: The final item set of the Y-BAT met the core Rasch assumptions, including unidimensionality and local independence. In other words, the final set of the test items measured a single dominant measurement construct, and the test items were not dependent on another (local independence) when assessing bilateral upper extremity function. Construct Validity: The means of the person measures and item difficulties were located within 0.5 logits. While the person-item map only represents the mean of each test item, the rating scales of the test items covered a wide range of the person measure distribution. Finally, the instrument had neither the ceiling (n = 1, 1%) nor the floor (n = 4, 4%) effects."                                                                                                                                                                                                                                                                                       
## [429] "Content Validity: Content validity of the DUIC questionnaire was established through expert panel consensus (n = 3 PhD level researchers with backgrounds in survey research, fitness to drive, and cannabis use). Face Validity: Participants in the face validity testing indicated that the overall questionnaire was clear, easy to follow. Construct Validity: Principal component analysis provided evidence of construct validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [430] "Test Sensitivity/Specificity: In ROC analyses, the PATHOS correctly categorized individuals in the male patient sample (n=625; residential treatment and outpatient samples combined) and healthy volunteer sample (n=47) 83.3% of the time. Using the cutoff score of 3, the PATHOS correctly identified 69.6% of the patient sample (sensitivity) and 80.9% of the healthy volunteer sample (specificity). In ROC analyses of the sample of women (outpatient n = 85; college n = 156), the PATHOS correctly categorized 81.4% of the sample overall. Using the cutoff score of 3, the PATHOS correctly identified 65.9% of the patient sample (sensitivity) and 91.0% of the healthy sample (specificity)."                                                                                                                                                                                                                                                                                                                           
## [431] "Convergent/Known-Group Validity: CCS total score showed weak positive correlations with CBT-KQ and Exposure Therapy Knowledge (r=.04, p=0.585 and r=.18, p=.02, respectively); the Objective CBT Knowledge subscale had moderate correlations with these measures (r=.31, p<.001 and r=.27, p <.001, respectively), among the cohorts recruited through Facebook advertisement and WISD training (n=190). CCS total score was positively correlated with prior graduate training in CBT (rpb=.27, p<.001), and with overall confidence in CBT (rpb=.35, p<.001), among all participants (n=387). CCS total scores were also significantly higher among those with confidence in using CBT (t356=7.11, p<.001) and those with graduate training in CBT (t362=5.41, p<.001). All CCS subscales except for Knowledge showed similar relationships."                                                                                                                                                                                         
## [432] "Concurrent Validity: Evidence supporting concurrent validity of the CtC was established by an examination of the association between attachment security and attachment-related aspects of functioning, such as depressive symptoms. Results of SEM indicated that of all hypothesized structural pathways, the latent factors Trust and Alienation were significant and negatively related to the level of depressive symptoms. Convergent Validity: The Trust subscale of the CtC measure correlated significantly with the Trust subscale of the original IPPA (Armsden & Greenberg, 1987) (r = .77, p < .001, N=551)."                                                                                                                                                                                                                                                                                                                                                                                                               
## [433] "Known-Group Validity: Known-groups validity was supported for two domains of the SWAL-QOL-FC (burden and eating duration), but there was no difference in the dysphagia symptom battery (DSB) scores. In the SWAL-QOL validation study with a U.S. OPMD population (n = 113), burden and eating duration had the lower scores, which is consistent with our results, and they were correlated with dysphagia duration (R = − 0.29 and − 0.30, respectively, p < 0.01). Known-groups validity was not supported for the composite score (57.1 ± 15.8 versus 66.2 ± 12.3), while it was found to differentiate participants with long or short dysphagia duration in Youssof study (composite score = 50.4 ± 19.6 versus 59.9 ± 21.2 (mean ± SD), p = 0.02)."                                                                                                                                                                                                                                                                              
## [434] "Convergent Validity: CTSOQ scores moderately correlated with tinnitus severity (TFI), anxiety (GAD-7; Spitzer et al., 2006), depression (PHQ-9; Kroenke et al., 2011), sleep disturbance (ISI; Bastien et al., 2001), and health-related quality of life (EQ-5D-5 L and EQ VAS; Rabin de Charro, 2001). Known-Groups Validity: SOs of individuals with a severe tinnitus problem (i.e., an overall TFI score > 50) obtained significantly higher CTSOQ scores (Median = 47; IQR = 20.5; n = 110) compared to those with a mild or significant tinnitus problem (Median = 30; IQR = 21.5; n = 84) as shown in the Mann-Whitney U test [U (194) = 2.18, z= -6.0, p < 0.001]. Test Interpretability: A CTSOQ cut-off score of 26.5 provided the best accuracy for the distinction of mild problems (sensitivity 76%, specificity 85%). A CTSOQ cut-off score of 39.5 provided the best accuracy for the distinction of significant problems (sensitivity 71%, specificity 68%)."                                                            
## [435] "Parallel Validity: Parallel validity was confirmed for all relationships (p > 0.3). Convergent Validity: The ability to distinguish individuals (N = 390) who are healthy and individuals suffering from anxiety (n = 141) or depression (n = 223) has been proven for the scales EQLQ-S_DOM1 (D = 0.670), EQLQ-S_DOM2 (D = 0.670), EQLQ-S_DOM3 (D = 0.507), and EQLQ-S non-medical scale (D = 0.653)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [436] "Structural Validity: Structural validity was established based on the findings of a principal component analysis and confirmatory factor analysis. Criterion-related Validity: The results showed that the GDSS was positively related to the Internet Addiction Test (IAT; Frangos, Frangos, & Sotiropoulos, 2012). Also, findings showed that the GDSS score was positively correlated with the clinical diagnosis of GD, and the probability of diagnosis increased by 4% for every point higher in the GDSS score (n = 193, OR = 1.04, 95% CI: 1.01–1.08). Test Sensitivity/Specificity: Findings suggested that the cut-off point for GDSS to present a high risk of gaming disorder was above or equal to 47 (sensitivity, 41.4%; specificity, 82.3%)."                                                                                                                                                                                                                                                                            
## [437] "Concurrent/Discriminant Validity: The results, based on analysis of the pooled data (n = 461), demonstrate that the brand awe construct was well correlated with but distinct from surprise (“be surprised by it,” r = .70, p < .001; AVEawe = .67 > r2), wonder (“make me feel wonder,” r = .72, p < .001; AVEawe = .66 > r2), and happiness (“be happy,” r = .81, p < .001; AVEawe = .67 > r2). Incremental Validity: The results indicate that adding the brand awe construct in the second block led to significant increases in R² for approach behavior (ΔR² = .10, p < .05) and DSS (ΔR² = .10, p < .05). Criterion Validity: The results demonstrate the significant influence of each antecedent on brand awe and the impact of brand awe on approach behavior and Desire to save and share (DSS)."                                                                                                                                                                                                                             
## [438] "Concurrent Validity: SDS-G scores were positively correlated with scores on the Beck Depression Inventory II (BDI; Beck, Steer, & Brown, 1996; r=.651, N=244, p <.0001), and negatively correlated with the scores of the Rosenberg Self-Esteem Scale (RES; Robins, Hendin, & Trzesniewski, 2001; r=-.704, N=244, p<.0001), and the Self-Description Questionnaire (SDQ; Marsh et al., 1984; r=-.507, N=232, p <.0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [439] "Convergent validity: The directions and significance of the associations were as hypothesized. The FRQ correlated negatively with the Essen Climate Evaluation Schema (EssenCES; Milsom et al., 2014) total score (Spearman’s ρ = −0.61, p < .001, n = 229, R2 = .372). There was a negative correlation between the FRQ and the Forensic Inpatient Quality of Life Questionnaire--Short Version (FQL-SV; Schel et al., 2017, Vorstenbosch et al., 2014) (Spearman’s ρ = −0.72, p < .001, n = 229, R2 = .518). These associations are classed as moderate to strong (Dancey & Reidy, 2014)."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [440] "Criterion Validity: Criterion validity with well-established indicators of depressive symptomology and perceived distress was found and consistent with expectations. Convergent/Discriminant Validity: Validity testing was conducted using bivariate correlations. The divorced S2 subsample (n= 149) reported significantly lower levels of overt conflict (t = 3.79, p < .001), self-controlled covert conflict (t = 5.71, p < .001), and externally-controlled covert conflict (t = 4.14, p < .001), compared to non-divorced S2 subsample (n = 221). In the divorced S2 subsample support was negatively linked with overt conflict (r = − .17, p = .02) and positively linked with the amount of co-parental cooperation (r = .63, p < .001)."                                                                                                                                                                                                                                                                                    
## [441] "Construct Validity: All RISE-Q subscales (both original model and RISE-Q 15) were positively correlated with AEBQ-SR (Wardle & Carnell, 2009; Hunot et al., 2016) (missing data, N = 4) except Planned Amount."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [442] "Convergent validity: Correlations with other instruments at baseline, were mostly medium. In Hebron: these were Clinical Global Impression (CGI‐S; Hilsenroth et al., 2000) rho = 0.48; Global Assessment of Functioning (GAF; Guy, 1976) rho = -0.21; Disability Assessment Schedule 2.0 (DAS; Üstün, 2010) rho = 0.35. In Cauca these were: CGI‐S rho = 0.49; GAF rho = -0.48; DAS rho = 0.59). For greater interpretability, correlations included participants who had measures for all tests at baseline, n = 71 in Hebron and n = 84 in Cauca. Correlations were significant (p < 0.05) for all comparisons except with GAF in Hebron. Criterion validity: Results demonstrated a sensitivity of 85% in Hebron and 100% in Cauca, with corresponding specificity of 80% and 79%, when compared to CGI‐S."                                                                                                                                                                                                                          
## [443] "Content Validity: Content validity was 0.969 which was established by a panel of experts (n = 10)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [444] "Construct validity: Results showed that there was a strong, positive correlation between the reduced K-MPAI (Chang-Arana et al., 2018) and M-MPAS scores (r = 0.797, n = 100, p < 0.001) and had a large effect size (Cohen, 1992)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [445] "Convergent validity: Pearson correlations were calculated between the total values of ICS-N, ICS-D, ISI (Bastien et al., 2001), HADSA and HADS-D (Bjelland et al., 2002), TCQI-R (Ree et al., 2005), and item a) of TCQI-R. It was found that the two subscales of ICS were associated in a high and strong way, suggesting that the correlation follows the same direction (r = 0.79; p < 0.001) (Dancey & Reidy, 2017; Pallant, 2016). All correlations were positive and, as expected, the highest correlation coefficient was found between ICS-D and ICS-N (r = 0.79, p < 0.001) and the lowest was found between TCQI-R and HADS-D (r = 0.18, p < 0.001). Test Sensitivity and Specificity: Receiver Operating Characteristics curves were computed for both subscales, extracting the cut-off points based on optimal sensitivity (ICS-N = 75.9%; ICS-D = 65.9%) and specificity ICS-N = 75.6%; ICS-D = 77.8%) values."                                                                                                           
## [446] "Convergent/Criterion Validity: The CPBI correlated significantly (p < 0.001) with the CORAS (Spearman’s r = 0.21, N = 470) and with the Fear of COVID-19 Scale (0.27), respectively, indicating the concurrent validity of the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [447] "Test validity: Initial data exploration uncovered a sum score mean of 119.48, (SD = 14.85) and item mean of 4.12. Negative skew (-.97) and positive kurtosis (3.75) were found in NPSS sum scores. Known-groups validity: Independent sample t test revealed that there was no significant difference between genders on Social Engagement and Compassion subscales. Males (n = 92, M = 31.74, SD = 5.54) had significant lower scores than females (n = 217, M = 33.2581, SD = 4.36) on the Body Sensations subscale after correction for unequal variances (t [140.9] = 2.340, p = .021, Cohen’s d = .3, equal variances not assumed). Similar results were obtained after 1000 bootstrap samples (p = .026) to control for unequal sample sizes."                                                                                                                                                                                                                                                                                     
## [448] "Convergent and Discriminant: All the perceived value dimensions, two antecedents (brand trust and brand image) and one outcome variable (purchase intent) exhibited an acceptable level of convergent validity (AVE> .50; Nunnally & Bernstein, 1994) and discriminant validity as the highest correlation was between emotional/functional value and curiosity value (.73). The associated confidence interval ranged from .68 to .78. Nomological validity: There was good model fit chi-square (df = 656, N = 221) = 1,433.983, p < .05, CFI = .89, RMSEA = .073. The effect of perceived value on purchase intent was positive and significant (β = .61; p < .01). Brand trust (β = .44; p < .01) and brand image (β = .46; p < .01) also had positive and significant effects on perceived value. Predictive validity: All dimensions were significant predictors of purchase intent, pester intent and willingness to recommend (friends). Monetary value did not predict willingness to recommend (family)."                      
## [449] "Criterion Validity: There was a strong, positive correlation between IBS-BRQ and the Cognitive Scale for Functional Bowel Disorders (CS-FBD; Toner et al., 1998) (r=.67, n=149, P<.001), and a medium strong correlation with the Work and Social Adjustment Scale (WASA; Mundt et al., 2002) (r=.49, n=149, P<.001), IBS symptom severity (SSS; Francis, Morris, & Whorwell, 1997) (r=.33, n=149, P<.001), anxiety and depression (Hospital Anxiety and Depression Scale, HADS; Dowell & Biran, 1990) (r=.37, n=149, P<.001), and illness perceptions (IPQ consequences) (r=.49, n=149, P<.001). Face Validity: Two items of the scale had poor face validity and did not discriminate between IBS patients and healthy controls. These were therefore removed from the scale."                                                                                                                                                                                                                                                         
## [450] "Convergent and Discriminant validity: Results indicate that the RAU demonstrates promising convergent and divergent validity, with the exception of factor 2 (IC and LA), as results showed a medium significant positive correlation between the RAU measure and a measure of subjective happiness (r = 0.440, n = 185, p ≤ .000, CI 95%: −0.32 to 0.55), and medium significant negative correlation with a depression measure (r = −0.491, n = 366, p ≤ .000, CI 95%: −0.56 to −0.41) and a stress scale (r = −0.354, n = 380, p ≤ .000, CI 95%: −0.44 to −0.26). The RAU and anxiety had a low significant negative correlation (r = −0.294, n = 380, p ≤ .000, CI 95%: −0.38 to −0.20). Exploratory factor analysis indicated that the RAU construct was distinct from the depression, anxiety, stress and happiness constructs, thereby suggesting that the RAU has satisfactory discriminant validity."                                                                                                                           
## [451] "Construct/Divergent Validity: Highly significant correlations between MDST and Geriatric Depression Scale short form (GDS-15; Yesavage et al., 1983) scores with large effect sizes were shown for the clinical (rs = -.68, p < .001, n = 36) and healthy (rs = -.52, p < .001, n = 293) groups as well as for the overall sample (rs = -.55, p < .001, n = 329). MDST and Montreal Cognitive Assessment Test (MoCA; Nasreddine et al., 2005) scores were also significantly correlated in the healthy group (rs = .29, p < .001, n = 293) with a small effect size. No significant correlation between MDST and MoCA scores was observed in the clinical subgroup (rs = .18, p < .30, n = 36); the effect size was also small. Test Sensitivity/Specificity: For the clinical sample, ROC analysis determined a cut-off score of 10 for the MDST, with a sensitivity of .76 and a specificity of .67. For the healthy sample, a cut-off score of 11, with a sensitivity of .73 and a specificity of .67."                               
## [452] "Test Validity: The FAB-Ch showed a statistically significant association with the Mini-Mental State Examination (MMSE; Tombaugh & McIntyre, 1992) (Pearson’s r=0.83; p<0.001, n=499) and other measures of executive function. Test Sensitivity/Specificity: With the matched sample, the established cutoff point was 13.5, showing a sensitivity of 80.8% and a specificity of 90.4%."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [453] "Construct Validity: To further test for the construct validity of the brief RSES measure, a sample of active duty military personnel (n = 32) and civilian employees (n = 36) (sample 4) who had completed the original RSES, other existing measures of resilience, and several measures of burnout were used. For sample 4, the means (SD) for the 22-item Response to Stressful Experiences Scale (RSES; Johnson et al., 2011) and RSES-4 were 65.91 (12.35) and 13.14 (2.59), respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [454] "Convergent Validity: The NSS-P convergent validity was good concerning associations with other self-reported assessment of sleepiness, fatigue, and insomnia. Discriminant Validity: The NSS-P total score was lower in treated than in untreated patients (n = 68), with a mean difference of 3.71 ± 1.45. The total NSS-P score varied from 12 to 49 in untreated patients and from 1 to 45 in treated patients, showing no ceiling effect. Test Specificity/Sensitivity: The cutoff value to discriminate between untreated and treated patients was 24 of 54, according to the Youden Index maximum value (sensitivity 64.71%, 95% confidence interval 53.35–76.06; specificity 64.13%, 95% confidence interval 54.33–73.93). Test Responsiveness: The responsiveness of the NSS-P to pharmacologic treatment was satisfactory and sensitive enough to detect changes in symptoms after treatment."                                                                                                                                  
## [455] "Face Validity: The pre-final version was tested for face validity through cognitive interviews with 11 nursing home residents, who did not report any major problems regarding comprehension of the instrument. One exception concerned item 5 for which the participants expressed difficulties with understanding the meaning of ‘other health care professional’. As such, due to nursing home residents’ daily contact with nurses and health care assistants, the expert group decided to replace ‘other health care professional’ with ‘the nursing staff’. Otherwise, the Danish version was found to be acceptable by the participants. Construct Validity: Of the nine hypothesized correlations, the proportion of correctly predicted correlations was 67% (n = 6) which was considered acceptable."                                                                                                                                                                                                                          
## [456] "Construct Validity: The Norwegian RTW-SE exhibited small to moderate negative correlations with measures of depression and anxiety, and was significantly different between subgroups of patients with different work status, supporting construct validity. Predictive Validity: Pre- and post-treatment RTW-SE scores significantly predicted full return to work at 3, 6 and 12 months post-treatment. Test Sensitivity/Specificity: Youden’s Index (J) identified that a cut-off point of 4.6 for the post-RTW-SE score provided the optimal discrimination between patients fully working or on sick leave post-treatment (sensitivity = 73.48%, specificity = 73.03%). The area under the ROC curve (AUC) was 0.79. Youden’s Index (J) identified that a cut-off point of 3.7 for the post-RTW-SE score provided optimal discrimination between patients (n = 145) on graded sick leave (partly working) or on full sick leave post-treatment (sensitivity = 68.04%, specificity = 66.67%). The AUC was 0.70."                     
## [457] "Construct Validity: Construct validity was good, with the CHOICE-SF mean score correlating positively with the Manchester Assessment of Quality of Life (MANSA; Priebe et al., 1999) (r = .70, P < .001) and negatively with the Beck Depression Inventory (BDI; Beck et al., 1961) (r = −.70, P < .001, N = 68) and Beck Anxiety Inventory (BAI; Beck et al., 1988) (r = −.52; P < .001; N = 68). Sensitivity to Change: The CHOICE-SF was highly sensitive to change with CBTp (df[68], t = −6.08, P < .001 [CI(95) = −2.19 to −1.10]) with a large effect size for change (Cohen’s d = −0.84 [CI(95) = −1.15 to −0.54]). In contrast, and in support of the specificity of change to the intervention, the comparison group who received no intervention experienced no significant change on the CHOICE-SF (df[43], t = −1.09, P = .28 [CI(95) = −1.09 to 0.20]; Cohen’s d = −0.15 [CI(95) = −0.57 to 0.27])."
samplesizes <- records_wide$FactorAnalysis %>% str_match_all(regex("\\bn ?= ?(\\d+)", ignore_case = TRUE)) %>% map(~ as.numeric(.[,2]))
samplesizes %>% unlist() %>% table()
## .
##    1    2    3    4    7    8    9   11   13   27   28   31   45   51   53   63 
##   34   13    2    6    2    4    2    1    1    1    2    1    1    2    1    1 
##   66   81   85   87   88   89   90   95   96   99  100  101  102  103  106  109 
##    1    1    2    1    3    1    5    3    1    2    3    1    2    2    2    3 
##  112  113  114  116  118  119  120  122  125  126  127  129  130  132  133  135 
##    1    2    1    2    2    2    1    3    1    1    1    3    3    2    1    1 
##  136  137  138  139  140  142  144  145  147  148  149  150  151  152  154  155 
##    1    1    2    1    1    1    1    1    3    2    1    1    3    4    2    1 
##  156  158  159  161  162  163  164  165  166  167  168  169  170  171  172  174 
##    1    2    2    3    4    7    2    2    1    1    1    1    2    1    3    1 
##  175  176  177  178  180  181  182  183  184  186  188  189  191  192  193  194 
##    1    1    1    2    4    2    1    2    2    4    1    2    3    1    3    1 
##  197  199  200  201  202  203  204  205  206  207  208  209  210  211  212  213 
##    5    2    7    2    3    2    1    2    2    1    4    2    3    6    3    1 
##  214  215  216  217  218  219  220  221  222  223  224  226  227  229  230  231 
##    1    2    1    3    1    1    3    2    2    3    3    1    2    2    4    1 
##  232  234  235  236  237  238  240  241  242  243  245  246  247  248  249  250 
##    2    1    4    7    2    1    1    1    1    4    2    1    1    1    2    1 
##  251  252  253  255  256  258  259  260  262  263  264  265  266  267  269  270 
##    2    1    2    1    2    1    1    2    1    2    2    1    5    2    4    5 
##  271  273  274  275  277  278  279  280  281  282  283  284  285  286  287  288 
##    3    2    2    1    3    1    2    2    2    2    1    1    3    4    1    1 
##  293  294  295  296  297  298  299  300  301  302  303  306  307  308  309  310 
##    1    2    3    1    1    3    1    2    4    2    5    2    2    1    6    2 
##  311  312  313  314  315  317  318  319  320  321  322  323  324  325  326  328 
##    2    1    2    4    3    1    1    1    3    1    4    2    1    2    2    3 
##  330  331  332  334  335  339  340  341  342  343  344  345  346  348  350  353 
##    1    3    2    3    3    3    2    1    1    1    2    1    2    1    9    1 
##  354  358  359  360  361  362  363  367  368  369  372  373  374  375  377  381 
##    2    2    2    1    2    1    1    3    1    1    2    2    1    2    2    1 
##  382  383  384  386  391  392  395  396  398  399  400  401  405  406  407  409 
##    1    1    2    1    3    1    3    4    3    1    7    3    1    1    2    3 
##  410  412  415  417  418  421  425  426  427  429  430  431  433  434  436  437 
##    1    1    1    2    1    1    1    1    1    1    1    1    5    2    2    1 
##  439  440  441  444  446  448  452  453  457  458  459  463  465  466  470  471 
##    1    2    1    1    1    1    2    1    1    1    2    1    1    2    1    1 
##  474  475  476  477  478  480  484  488  490  491  493  499  500  503  505  506 
##    1    1    2    1    2    2    1    1    2    1    1    1    2    1    1    1 
##  508  509  510  513  514  515  516  523  524  525  526  527  531  535  537  538 
##    1    1    1    1    1    1    2    2    1    2    1    1    2    1    1    1 
##  539  540  541  543  545  548  550  563  564  566  567  572  574  578  581  585 
##    1    1    1    4    2    1    1    1    1    1    1    1    1    1    2    1 
##  586  590  592  593  594  596  597  599  600  601  603  604  606  607  610  615 
##    2    1    1    1    1    2    1    1    1    1    1    1    1    1    1    1 
##  625  626  628  629  635  636  644  646  649  650  651  652  659  661  664  665 
##    1    2    1    1    3    2    1    2    2    1    1    1    1    1    1    3 
##  672  673  675  698  701  702  706  709  712  717  724  725  726  733  740  749 
##    2    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  750  751  757  758  759  761  762  763  771  781  790  793  799  800  804  809 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  813  825  838  842  846  853  856  866  871  873  880  885  895  898  905  911 
##    2    1    2    1    1    1    1    1    1    3    1    1    1    1    1    1 
##  918  919  923  935  964  965  966  968  974  983  989 1003 1011 1019 1041 1057 
##    2    1    1    2    1    2    1    1    1    2    1    1    1    1    2    1 
## 1066 1074 1081 1104 1135 1149 1152 1203 1218 1223 1247 1251 1274 1285 1304 1324 
##    1    1    2    1    1    1    1    1    1    1    1    1    1    1    1    1 
## 1417 1435 1510 1512 1540 1599 1642 1647 1707 1719 1797 1934 1945 1947 1950 1973 
##    1    1    2    1    1    1    1    3    1    1    1    1    1    1    1    2 
## 2000 2031 2285 2331 2443 2463 2467 2533 2665 2774 3377 3774 3953 4591 4887 4962 
##    1    1    1    1    1    1    1    1    1    1    2    1    1    1    1    1 
## 5036 
##    1
samplesizes %>% unlist() %>% median()
## [1] 303
records_wide$FactorAnalysis[- (samplesizes %>% map_dbl(~ .[1]) %>% is.na() %>% which())]
##   [1] "EFA uncovered and CFA confirmed 3 distinct and reliable dimensions for student reports: Inattention, Hyperactivity, and Impulsivity. By contrast, EFA and CFA uncovered a reliable 2-dimension structure for the parent-report data. Factor structures replicated across genders (3 factors for the SRI, and 2 factors for the PRI). In addition, a separate, multigroup CFA found that the three-factor structure replicated across genders: χ²(189, N=1,079)=487.70, GFI=.94, CFI=.95, RMSEA=.040."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [2] "The Spanish PTGI was tested by subjecting the data to a principal components analysis with varimax rotation. Thirteen of the original 21 items loaded differentially on three factors. Eight items failed to load differentially. The 13-item Spanish PTGI is said to be highly correlated with the 21-item original (Spearman’s rho = .982, Sig. 2-tailed = .000, N = 100). This finding indicates that no critical information has been lost by using the truncated version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [3] "Confirmatory factor analysis: When tested with CFA in AMOS, the hypothesized five-factor parent model (N = 505) converged and all estimates were within bounds. As was true for the teacher questionnaire results, the fit indices for the five-factor model for the parent questionnaire approached but did not meet conventional levels for good model fit, x2(265, N = ?) = 739.76, p < .001, TLI = .80, CFI = .82, RMSEA = .07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [4] "Principal Component Analysis: PCA with varimax rotation was conducted on the study 1 sample (n = 245). Results revealed a 4-factor solution that explained 50.4% of the variance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [5] "EFA: A scree plot of eigenvalues from the polychoric correlation matrix was strongly indicative of a one-factor solution for the set of 17 items from the SAAS. All items had factor loadings of at least |.75|, except one, which had a loading of .35 (corresponding to a communality estimate of only .12 with unexplained variance of .88). This item “I rarely get tense when I think others are evaluating my looks” was dropped from all subsequent analyses. CFA: A one-factor model for the 16 SAAS items fit the Sample 2 data well, χ²(104, N = 853) = 381.21; p < .001; RMSEA = .056; CFI = .99; TLI = .99. In addition, each item was associated with a large and statistically significant factor loading (all ps < .001). This one-factor model also fit the Sample 3 data well, χ²(104, N = 541) = 311.89; p < .001; RMSEA = .061; CFI = .99; TLI = .99, again with each item showing a strong factor loading."                                                                                                           
##   [6] "CFA: The 6-factor model showed acceptable fit indices with the Spanish-speaking exerciser sample: Chi-squared (215, N= 524)= 689.13, p= .00; Chi-squared/gl = 3.20; CFI= .91; IFI= .91; RMSEA= .06; SRMR= .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [7] "Confirmatory factor analysis: Results yielded indicated good fit with the 4-factor MCQ model, x²(24, n = 490) = 32.20; RMSEA= 0.026 (90% confidence interval = 0.000–0.055), perfect fit p > 0.122, close fit p > 0.965."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [8] "A confirmatory factor analysis performed on the American data obtained an acceptable goodness of fit for the five-factor model, X²(142, N = 270) = 552.37, goodness-of-fit index (GFI) = .957. A separate confirmatory factor analysis was performed on the Russian data, and it also yielded an acceptable goodness of fit for the five-factor model, X²(142, N = 270) = 275.24, GFI = .905. The five factors are as follows: 1. Problem-Solving (5 items), 2. Externalizing (5 items), 3. Social Support (4 items), 4. Drug Use (2 items), and 5. Rejuvenation (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [9] "Factor analysis findings showed evidence of three situational factors. The confirmatory factor analysis corroborated the three-factor model on an independent sample (N = 345)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [10] "The fit indexes for the hypothesized three-factor oblique model were acceptable to good, with both CFI and NNFI close to .95 and RMSEA close to .05 (and the upper limit of the RMSEA’s 90% CI below .08). Moreover, the three-factor oblique model showed a markedly better fit than the one-factor model (which did not show an acceptable fit). The S–B scaled χ2 difference test was significant, with χ2(3, N = 363) = 207.70, p <.001, indicating that the three-factor oblique model showed a significantly better fit than the one-factor model. The three-factor oblique model was accepted as the final model."                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [11] "A factor analysis was also computed (N = 222) using the varimax rotation method, which yielded four factors. Variance accounted for by each factor was 64.6%, 18.9%, 11.4%, and 5.2% for Factors 1-4, respectively. Item loading on Factor 1 reflects an individual's language familiarity, usage, and preferences (e.g., items 1 and 2). Factor 2 was composed of items that reflected an individual's ethnic identity and generation (e.g., Items 3,4,5,12). Factor 3 contained items related to reading, writing, and general cultural heritage and exposure (e.g., Items 13,17,18). Factor 4 consisted of items associated with ethnic interaction (e.g., Items 6,7)."                                                                                                                                                                                                                                                                                                                                                                
##  [12] "Exploratory Factor Analysis: Principal components analysis extracted an eight-factor solution, that mirrored the eight dimensions of adaptive performance. Confirmatory Factor Analysis: Comparison of the fit indices for the three models (i.e., 8-factors, one-factor, two-factors) suggests that the 8-factor model offers the best fit for the data, and chi-square difference tests also showed significant improvement in fit for the 8-factor model compared to the one-factor, chi-square (28, N = 1,715) = 20923, p < .001, and two-factor, chi-square (27, N = 1,715) = 4325, p < .001, alternatives."                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [13] "Principal Components Analysis: PCAs ultimately yielded a four-factor solution explaining 65.58% of the variance. Confirmatory Factor Analysis: The final model displayed sound goodness of fit indexes—χ2(N=417, 169)=309.14, p<.05; CFI=.97; GFI=.94; IFI=.97; RMSEA=.04; AIC=403.35; CAIC=653.79. The four-factor model was more parsimonious and showed better fit to the data than two- and one-factor models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [14] "EFA: The final model explained 48.23% of the variance and comprised two factors, Autonomy Support and Structure were combined (8 items; referred as Autonomy- Supportive Structure); Involvement (5 items) was separate. Factor loadings ranged from .48 to .87. CFA: The two-factor model provided a good fit (χ² (64, n = 350) = 163.192, p < .001; CFI = .947; NNFI = .936; GFI = .932; RMSEA = .067, 90% confidence interval [CI] = .054, .079; SRMR = .044). All items were significant (p < .001) and factor loadings ranged from .50 to .84."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [15] "Exploratory factor analysis: EFA yielded a one-factor solution with all factor loadings above .54. Confirmatory factor analysis: CFA ran along with other study variables revealed satisfactory fit statistics (chi-squared (680, N = 230) = 1102.5, p < .001, Tucker-Lewis index (TLI) = .90, comparative fit index (CFI) = .91, root mean square error of approximation (RMSEA) = .052.)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [16] "Tinnitus sufferers (N = 116) attending a specialist out-patient tinnitus clinic responded to this questionnaire, and their responses were factor analysed, revealing three tinnitus coping styles. These were labelled: ‘maladaptive coping’, ‘effective coping’ and ‘passive coping’."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [17] "Confirmatory Factor Analysis: CFA tested a 6-factor solution using the 'gamer' group (n = 2774) sample. The model showed optimal fit to the data (chi-square = 277.35, df=39, p < 0.001; CFI = 0.972; TLI = 0.953; RMSEA = 0.047 [0.042–0.052] Cfit > 0.90; SRMR = 0.025). Alternatively, a one-factor model and a second-order factor model were also estimated. Results showed the 6-factor having superior fit compared to the one-factor model and the second-order factor model. Moreover, the 6-factor model had items with factor loadings higher than 0.70 within their respective factor. Correlations between factors ranged between 0.82 and 0.57. Measurement Invariance: In using configural invariance to measure whether the POGQ-SF was best described by a 6-factor structure for boys and girls, results showed that the configural invariance model fit the data reasonably well (RMSEA = 0.053, Cfit > 0.135, CFI = 0.952)."                                                                                          
##  [18] "Factor analysis yielded a 3-factor structure: competence (3 items), autonomy (3 items), and relatedness (3 items). The measurement model of the three basic psychological needs, with three items each, yielded a very good fit, chi-squared (24, N = 210) = 42.00, p = .013 (comparative fit index [CFI] = .99; incremental fit index [IFI] = .99; root mean square error of approximation [RMSEA] = .06; standardized root mean square residual [SRMR] = .024)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [19] "For the construct of time pressure, a measurement model was tested (confirmatory factor analysis, with equality restrictions to achieve measurement invariance over time), which fitted adequately: Chi square = 292.9, df = 108, RMSEA = 0.050, pclose = 0.450, SRMR = 0.046, Hoelter's N = 248. The explained variance of time pressure at age 29 by time pressure at age 26 was 17.0%."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [20] "Confirmatory factor analyses resulted in a final model in which items used to measure each of the 10 constructs were specified to load on their respective constructs. The hypothesized model was supported. Fit statistics indicated acceptable fit for the model, X²(774, N = 151) = 1702.59, p < .01 (RMSEA = .08; RMSEA 90% CI = .08-.09; CFI = .94; SRMR = .07)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [21] "The distinction between items measuring the two modes of identification (Attachment and Glorification) was verified with a confirmatory factor analysis using maximum likelihood estimation. The analysis was conducted on samples from Israel and from the United States. In both cultural groups the two-factor model of identification with the nation yielded adequate fit indices: χ²(103, N = 484) = 374.323, comparative fit index (CFI) = .93, in the American sample; χ²(206, N = 208) = 726.37, CFI = .87, in the Israeli sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [22] "Principle factor analysis with varimax rotation method and Kaiser normalization in the current study (N=140) yielded two distinct factors (relevant and irrelevant) that explained 41% of the variance. Items 3, 10, and 13 cross-loaded on both factors and, therefore, were deleted resulting in a final 15-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [23] "Confirmatory factor analysis: On the basis of these exploratory factor analysis (EFA) results, the ASPIRE measure was analyzed using confirmatory factor analysis (CFA) in the sample (N = 266). Results showed a good fit between the 9-item, 3-factor model and data (Χ2 = 57.36, df = 24, X2/df = 2.39, IFI = .97, NFI = .95, TLI = .94, CFI = .97, RMSEA = .06). The metric (factor loadings) invariance across gender (male vs. female) was examined using multi-group confirmatory factor analysis (MGCFAs) and compared the original measurement model with the measurement model with constraints (setting factor loadings to be equal) and found no significant differences in these two models."                                                                                                                                                                                                                                                                                                                                
##  [24] "Fit statistics [χ2 (169, N = 531) = 564.03, p < .001, SRMR = 0.065, RMSEA = 0.066] were adequate for the two factors of Interpersonal and Intrapersonal skills for the PSIS. The factor Interpersonal skills consisted of 10 items with loadings ranging from .26 to .52. The factor Intrapersonal skills consisted of 10 items with loadings ranging from .34 to .76."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [25] "The new measure was first tested on an independent sample of supervisors (N=119). Using an exploratory factor analysis with oblique rotation, 4 factors (AC = Affective commitment; NC = Normative commitment; CC-sacrifices = Continuance commitment–perceived sacrifices; CC-alternatives = Continuance commitment–perceived lack of alternatives) with eigenvalues greater than 1.0—representing 16 items and reflecting the targeted commitment mindsets—were extracted from these data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [26] "In data from a construction (N = 266), and two replication samples (N = 147 students, N = 215 adults), a one-dimensional solution showed the best fit for the data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [27] "Exploratory factor analysis: Principal component analysis with oblique rotation of the Implicit Theories of Intelligence and School Performance Measure found 2 factors with eigen values greater than 1. The first (intelligence) had an eigen value of 2.32 and explained 38.63% of the total variance. The second (school performance) had an eigen value of 1.49 and explained 24.82% of the total variance. Confirmatory factor analysis: Confirmatory factor analysis supported a 2-factor model: χ² = (42, N = 457) = 46.27, p = .300, CFI = .997, TLI = .995, RMSEA = .015. TLI = .995, RMSEA = .015."                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [28] "Based on an analysis of data provided by a Dutch panel (Time 1: N = 4,916, Time 2: N = 4,874), exploratory and confirmatory factor analyses suggest that crying proneness is a multidimensional construct best characterized by four factors called Attachment Tears, Societal Tears, Sentimental/Moral Tears, and Compassionate Tears."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [29] "The final solution contained 12 items on 2 conceptually meaningful factors: 1) Activities of daily living (n = 8 items) and Movement (n = 4 items). This final solution explained 65% of the variance, with the following distribution of percentage of variance explained by each factor: 1) 40.67%, 2) 24.30%. The final solution did not contain any cross-loading items, and all items had primary factor loadings of ≥.50."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [30] "One-factor confirmatory factor analysis for the 3-item Bicultural Management Difficulty Measure showed that all items loaded well on the latent factor for both father and mother reports (λs = .51 to .80, p < .001). For the 6-item measure, both father and mother models showed acceptable model fit, χ²(9, N = 271) 33.15, p < .001, CFI = .96, RMSEA = .10, SRMR = .04 for father reports; and 2(9, N = 294) = 23.20, p < .001, CFI = .98, RMSEA = .07, SRMR = .03 for mother reports. All the items loaded well on the latent factors ( λs = .53 to .87, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [31] "The four-factor structure (offline and online direct and indirect victimization) of the MOOPV was confirmed using exploratory (n = 325) and confirmatory factor analyses (n = 799) among adolescents aged 9–18 years."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [32] "In a normal sample of N = 717 (Lovibond & Lovibond, 1995), the factor structure (Depression, Anxiety and Stress ) was substantiated both by exploratory and confirmatory factor analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [33] "All items loaded on one factor, and confirmatory factor analysis of the measurement model yielded satisfactory fit: χ2(9, N = 1,468) = 106.10, p < .001, CFI = .942, RMSEA = .086, SRMR = .036."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [34] "Factor analysis: An exploratory factor analysis was conducted for the construct validity of the scale using the principal axis method and oblique rotation (n = 1,069). When the initial 77-item scale was administered to a sample of 1,069 employees in Turkey, factor analysis revealed a 5-factor structure, with 43 items explaining 46.1% of the variance. These factors include: “Organizational Norms and Practices,” “Role and Work Overload,” “Insecure Relationships,” “Role Insufficiency,” and “Physical Work Demands.” The items loading only 1 factor with a factor load above .30 were kept in the scale."                                                                                                                                                                                                                                                                                                                                                                                                                
##  [35] "Multigroup confirmatory factor analyses showed satisfactory scalar invariance across cultural groups for the measures: host culture (German/Bulgarian) adoption, x²(116, N = 344) = 303.48, p < .001, CFI = .916, RMSEA = .064, heritage Turkish culture maintenance, x²(119, N = 344) = 332.37, p < .001, CFI = .883, RMSEA = .072."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [36] "Based on reviewing the clusters of items, factor loadings, reliability estimates, and clinical interpretability, an 11-factor solution (Numbness, Fear, Gastrointestinal upset, Bruising/Bleeding, Fatigue, Headache, Soar throat, Rectal itch, Shortness of breath, Fever, and Body changes) was determined that explained 73.3% of the variance for the 45 items in Part 1. The 8 items in Part 3 were submitted to a principal components factor analysis with varimax rotation (n = 118 HIV-positive women), and a 1-factor solution explained 71.8% of the variance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [37] "Factor analysis: Exploratory and confirmatory factor analyses of the CDAQ resulted in a 4-factor solution with 2 factors each for the Perpetration and Victimization scales: Direct Aggression and Control. The 4-factor solution showed good fit: χ² (714, n = 400) = 1628, RMSEA = .076 (90% CI [.072, .079], p = .36, CFI = .99, NNFI = .99. All the factor loadings were significant (p < .001) and ranged between .58 and 1."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [38] "Exploratory principal components analysis with oblique rotation yielded the final 39-item, seven-factor structure: 1. Positive Action (10 items), 2. Passive Problem Solving (6 items), 3. Self-Destructive Escape (5 items), 4. Social Support (5 items), 5. Spiritual Hope (4 items), 6. Depression/Withdrawal (5 items), and 7. Nondisclosure/Problem Avoidance (4 items). The seven subscales accounted for 53.2% of the variance. Following confirmatory factor analysis, findings for the young adult sample indicated that the proposed factor model fit the data fairly well. The chi-square/degrees of freedom ratio was 1.92, X²(681, N = 320) = 1,304.82. The CFI was .85, suggesting adequate fit. SRMR was .07 (good fit), and RMSEA was .05, with a 90% confidence interval (CI) of .049 to .058 (good to fair fit). With few exceptions, similar results were found in the adult sample."                                                                                                                                  
##  [39] "Exploratory factor analysis in a sample of university students yielded three factors comprised of a total of 19 items: (a) Thoughts of Control Scale (10 items); (b) Thoughts of Revenge Scale (4 items); and (c) Pejorative Thoughts Scale (5 items). The factors were replicated and cross validated in another large sample (n = 757) and were the same for men and women."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [40] "Factor Analysis: Factorial validity of the single-factor performance measure was confirmed in the present sample (N = 99) via confirmatory factor analysis, χ2(9) = 19.82, RMSEA = .06, CFI = .99, SRMR = .05. The factor loadings of the six performance items ranged from .85 to .61."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [41] "Confirmatory factor analysis: Confirmatory factor analysis of the AGQ items strongly supported the hypothesized 6-factor model: Task-Approach Goals; Task-Avoidance Goals; Self-Approach Goals; Self-Avoidance Goals: Other-Approach Goals; and Other-Avoidance Goals. All standardized factor loadings were moderate to strong (ranging from .52 to .95) and each fit statistic met the for a good fitting model: χ²(120, N = 126) = 194.25, p < .01, CFI = .95, TLI = .94, RMSEA = .070."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [42] "Principal components analysis: Principal components analysis of the Typology extracted a 6-factor solution: Socializers; Completionists; Competitors; Escapists; Story-Driven, and Smarty-Pants. Confirmatory factor analysis indicated an excellent fit for the 6-factor model: χ²(75, N = 381) = 125.17, p < .001, χ2/df = 1.67, CFI = .98, RMSEA = .04, SRMR = .04, Critical N = 293, with no loading less than .63."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [43] "Three confirmatory factor analyses on meaningful subsets of the scales were performed. The first model of health belief (HBM) constructs (susceptibility, severity, benefits, and barriers) yielded adequate fit, x² (450, N = 193) = 824.84, p < .001, CFI = .90. The second model of theory of planned behavior (TPB) constructs (advantages of tanning, 3 norm constructs, self-efficacy) yielded good fit, x² (354, N = 193) = 609.01, p < ,001, CFI = .93. The third model of the two intention constructs also fit well, x² (30, N = 193) = 87.34, p < .001, CFI = .96."                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [44] "CFA of the 27-item second-order factor model resulted in an acceptable model fit for the polytomous IGD Scale, chi-squared(315, N = 923) = 959.420, p < .001, CFI = .991, WRMR = 1.005, RMSEA = .047 (90% CI: .043, .050). The same model for the dichotomous IGD Scale also showed an acceptable model fit, chi-squared(315, N = 989) = 486.825, p < .001, CFI = .989, WRMR = .966, RMSEA = .019 (90% CI: .019, .027)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [45] "Principal Component Analysis: A two-factor solution supported the two-part format of the instrument. The alpha coefficients (.91 and .86 for the Fear and Observe scores, respectively) indicate high internal consistency. The two scores were also uncorrelated (r = -.03, ns), which indicates that the two factors represent independent dimensions. Confirmatory Factory Analysis: The independence model that tests whether all variables are uncorrelated could easily be rejected: chi squared (780, n = 171) = 2,681.12, p<.001, GFI = .38, RMSEA = .12."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [46] "The overall fit of the CFA model for the total sample was good: chi square(50, N = 539) = 148.97, p < .01, CFI = .96, and RMSEA = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [47] "Exploratory factor analysis of the Native Hawaiian subsample (n = 194) indicated the presence of three factors (comprised of a total of 24 items) accounting for 63% of the variance: Peer pressure (23%); Family offers and context (21%); and Unanticipated drug offers (19%)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [48] "Exploratory Factor Analysis: Different test models were tested in both groups with two through five latent factors. Although the fit indices improved as underlying latent factors were added, better fit indices for multidimensional factorial solutions were merely a statistical artifact. The models with multifactorial structure could not be interpreted, as different items of the instrument loaded on more than one factor, and none of the extracted factors was reasonable from a substantive standpoint. Confirmatory Factor Analysis: A hypothesized one-factor model was fitted. In sample 1, this model provided a poor fit to the data: chi squared (90, N = 346) = 300.48, p < 0.001; RMSEA = 0.082, 90% CI [0.072; 0.093], p < 0.001; CFI = 0.857; SRMR = 0.060. Similarly, a poor fit to the data was provided by the one-factor model also in sample 2: Chi squared (90, N = 245) = 196.69, p < 0.001; RMSEA = 0.070, 90% CI [0.056; 0.083], p < 0.001; CFI = 0.853; SRMR = 0.066."                                 
##  [49] "Four domains (attention and impulse control, externalizing, internalizing, and prosocial behaviors) were tested using confirmatory factor analysis of data from more than 1,600 Chilean children who participated in the larger longitudinal study. The authors conducted confirmatory factor analysis twice, first using data collected at the beginning of prekindergarten and then using data collected at the end of kindergarten. The authors found support for a four-factor model at both time points: beginning of prekindergarten, chi squared(269, n=270)=4,243.68, p < .001, root mean square error of approximation (RMSEA)=.09, comparative fit index (CFI)=.82, Tucker–Lewis reliability index (TLI)=.81, standardized root-mean-square residual (SRMR) =.08; end of kindergarten, chi squared(269, n=270)=3,973.68, p < .001, RMSEA=.09, CFI=.81, TLI=.80, SRMR=.08."                                                                                                                                                      
##  [50] "The specified confirmatory factor analysis (CFA) model was found to fit the observed data well (RMSEA= 0.001; x²[2, n = 211] = 2.52; x² /df = 1.26; p = 0.28; GFI = 0.99; AGFI = 0.97; CFI = 1.0; NFI = 1.0). This model explained 80%, 65%, 52%, and 72% of the variance of diminished impulse control, loneliness/depression, distraction, and social comfort, respectively. All factor loadings and coefficients were significant and in the expected direction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [51] "The CFA indicated that the five-factor model with ISFS as a higher order construct provides an excellent fit, with x²(8,N = 150) = 13.47, p = .31 (normed chi-square value (x²/df) = 1.68), RMSEA = .06, SRMR = .04 and CFI = .98. All measured variables loaded strongly on the latent variable (kappa range = .67 to .91)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [52] "The responses to the GMRI were determined to be appropriate for factor analysis, as Bartlett’s test of sphericity was significant (chi square = 3587.92, df = 406, p<.01) and the Keiser-Meyer-Olkin measure of sampling adequacy was .833. Exploratory principal components analysis with varimax rotation for the validation sample (n=109) revealed a five-factor structure: Continuing Bonds, Personal Growth, Sense of Peace, Emptiness and Meaninglessness, and Valuing Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [53] "The best fitting model comprised 24 items chi square(246, N = 315) = 490.544, p < .001. The RMSEA was 0.06 with a 90% CI of 0.05. The CFI value was 0.92 and TFI value was 0.91. Last, the SRMR was .051."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [54] "For the 8-factor model that was identified by the iterative process described above, the CFA (N=309) showed good model fit according to CFI and RMSEA and acceptable fit according to CFI and TLI. Nine items had modification indices above 10 (eight in the range of 10 to 13.4 and one item 21.5). We also attempted to determine whether a summary score for all 32 items would simplify the measurement of our construct by forcing all items into a single factor model. However, the fit indices showed a predictably poor fit. To determine whether all eight factors could support an overall interoceptive awareness construct, we also tested a hierarchical model, with the eight factors as indicators of one overall second-order factor. The fit indices showed a fit to the data almost as good as the first-order CFA. All loadings were significant at p<.001 for all three models."                                                                                                                                    
##  [55] "An exploratory factor analysis with Promax rotation was performed on 378 subjects. Bartlett’s test of sphericity (chi squared=4059.41, P<.001) and the Kaiser-Meyer-Olkin measure (.85) supported the factor analysis of the data. Confirmatory factor analyses were conducted to replicate the findings from the EFAs. Accordingly, 4 latent factors were created. To evaluate fit, the authors utilized TLI, CFI, and RMSEA fit indices, with a general cutoff of .90 or above for TLI and CFI as indicators of good model fit and a cutoff of .08 or less for RMSEA. A measurement model resulted in acceptable overall model fit, chi squared(124, N=384)=261.82, P<.001, TLI=.92, CFI=.94, RMSEA=.05. All indicators loaded onto their respective factors at acceptable levels, ranging from .50 to .74. To further confirm the factor structure, the CFA was repeated using the full sample of 762 participants. Results were similar to the split-sample findings, with acceptable overall model-fit."                             
##  [56] "The authors examined the factor structure of the RWV scale in a large sample of undergraduate psychology students (n = 1,147, 65% female) using an exploratory factor analysis with an Oblimin rotation. The scree analysis indicated that there was one strong factor (eigenvalue = 13.01) which accounted for 68.5% of the variance in responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [57] "Using the K-means, resulting clusters were statistically different from one another, F(2, 560) = 261.88, p < .00. The resulting clusters were named the resulting clusters (1) “high mindfulness” (32% of total, n = 182), (2) “moderate mindfulness” (41% of total, n = 229), and (3) “low mindfulness” (27% of total, n = 152). The high mindfulness group had a strong mindfulness score of M = 6.6, while the low mindfulness group’s score was M = 2.9. The factor loadings for the scales ranged from .79-.94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [58] "The authors employed confirmatory factor analysis (CFA) to test a 1-factor model for the 10 EPS items with the data of the development sample (N = 635), using robust maximum-likelihood estimation to correct for distortion in fit indices and standard errors due to multivariate nonnormality. The 1-factor CFA model for 10 EPS items fit the data of the development sample reasonably well except for the RMSEA criterion, SB-ML chi squared(35, N = 635) = 265.98, RMSEA = .108, SRMR = .065, CFI = .93, NNFI = .91. The authors therefore made slight model modifications following recommended procedures for maximizing cross-sample generalizability, to optimize the fit of the 1-factor CFA model to the data of the development sample. The authors then used the data of the development sample (N = 635) to test three hypothesized pairs of correlated measurement errors in the 1-factor CFA model, each of which was statistically significant."                                                                      
##  [59] "For the exploratory factor analysis, the 30 items of the TAQ were tested for indications of univariate skewness, kurtosis, and variance across response options. Four original items were removed from the scale due to high skewness and low variance across respondents (N = 2) and loading onto two factors (N = 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [60] "The PIR was positively correlated with another measure used in the study, the Participant's Perception of Group Response Measure(r = .56, p = .00, n = 103)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [61] "For the exploratory factor analysis, item correlations ranged from -.01 to .69 and the Kaiser-Meyer-Olkin measure of sampling adequacy was .50. The three-factor oblique solution from exploratory analysis was the basis for the confirmatory analysis. The value of chi square was statistically significant [chi square(N = 342, df = 11) =2 1.71, p = .03]. The TLI was marginally adequate at .947, while the RMSEA was .053."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [62] "The principal components analysis (PCA) results were chi square (8, n = 1135) = 162.66, p < .001. The factor loadings ranged from .66-.87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [63] "The factor analysis results: chi square(4, N= 1′671)= 13.707, p = .008, CFI = 1.00, RMSEA = .038 (90% CI: .017, .061), SRMR = .019."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [64] "Factor analysis: The initial analysis of 60 items suggested a nine-factor solution (62.2% variance). Consequently, five-, four-and three-factor solutions were examined using Varimax and Oblimin rotations of the factor-loading matrix. A four-factor solution (explaining 54.3% variance) was preferred. The four factors were: Instrumentality, Intrusion, Brooding, and Preventability. In total 28 items were eliminated from the original list as they failed to contribute to a simple factor structure. A PFA of the remaining 32 items with Varimax and Oblimin rotations was repeated, with the four factors explaining 58.4% of the variance. A confirmatory factor analysis (CFA), using a MLE solution in the second study was conducted to test a revised 3-factor MRIS structure (Intrusion, Instrumentality and Brooding). The model showed good fit with these data ([Χ²(df = 17, N = 163) = 25.81, p = .08, GFI = .96, CFI = .99, RMSEA = .06]. All parcels loadings on their respective factor exceeded .79."         
##  [65] "The sample of valid data sets was randomly distributed to either the scale construction (n = 129, or two-thirds of the total participants) or scale replication group (n = 63, or the remaining one-third). These participant data sets were used for the MMPI-2 item selection process. The a priori criterion of MMPI-2 items differentially answered by 75% of participants was found to be overly inclusive and was adjusted to include only those items that yielded a significant difference (p < .05) between high and low CBI groups in a two-tailed independent t-test, resulting in a total of 62 MMPI-2 items from which to determine the scale. A 62 item subscale was seen as being too unwieldy for the MMPI-2, however, and potentially too sample-specific. A more conservative criterion (p more stringent than .01) was then chosen in hopes of attaining more generalizability. The final 31-item model correctly classified 95.1% of the original scale construction sample."                                         
##  [66] "Exploratory factor analysis of all 24 items indicated that a six factor model fit the data best, chi square(147, N = 804) = 101.98, p < .001, CFI = .95, TLI = .90, RMSEA = .057 (CI 90 interval = .052–.062). Confirmatory factor analysis used Structural Equation Modeling, with multiple indices to determine fit of the current model. The condensed 13-item two-factor measure of PO/TO found in Study 1 provided adequate fit for the data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [67] "Confirmatory factor analysis was conducted in LISREL 8.70, and the two-factor structure was supported (interdependent self-construal and independent self-construal). The model-data fit is good: X<2>(26) = 184.22, N=1,496, p = .00; GFI = .97; CFI = .97; TLI = .96; RMSEA = .06 and SRMR = .04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [68] "The confirmatory factor analysis results: chi square(75, N = 230) = 117.37, p = .001, SRMR = .04, CFI = .97, and RMSEA= .050."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [69] "Principal component analysis: Examination of the Eigenvalues from the principal component analysis suggested the presence of two subscales. This was also supported by the loadings in the first principle component that showed clear patterns of residuals on two components, with 3 items with positive correlations, and 3 others with negative loadings. However, evidence from the t test grouping these items together in subtests revealed that the amount of multidimensionality was not significant, with < 1% of the subtests (n = 13) showing no significant differences in the estimated differences generated (t = - 3.23, p = .15)."                                                                                                                                                                                                                                                                                                                                                                                       
##  [70] "Principal component factor analysis resulted in two sets of items that formed a weak but interpretable factor structure, with reasonable face validity. These are: 1. ‘Heartsink’ – initial Eigen value=1.23, variance explained= 17.58; and ‘Heartfelt’ initial Eigen value=2.04, variance explained = 29.17. Together these factors explained 47% of the variance of the seven items. The two factors correlate at r=−0.23, P = 0.01, n = 125."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [71] "The results of exploratory and confirmatory factor analyses using 3 samples of Chinese college students (N = 1,807) suggested the viability and stability of a 4-factor model: Understanding Oneself in Context, Involving Relevant Others in Context, Considering Others in Context, and Detaching and Gaining Perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [72] "Confirmatory factor analysis results with 70% of the data are: chi square (80, N = 1,318) = 287.23, p < .001; TLI = .950; CFI = .962; RMSEA = .044. CFA results with the remaining 30% are: chi square(80, N = 572) = 139.07, p < .001; TLI = .968; CFI = .975; RMSEA = .036."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [73] "The CFA results are: chi square[N=90, 27]=61.20, p<.05, RMSEA=.08, SRMR=.07, CFI=.99 for cultural empathy, chi square[N=90, 27]=56.10, p<.05, RMSEA=.11, SRMR=.09, CFI=.99 for open-mindedness, chi square[N=90, 27]=88.50, p<.01, RMSEA=.16, SRMR=.09, CFI=.96 for flexibility, and chi square(14, N=90)=20.04, p>.08; Bollen-Stine p=.21; CFI=.99, SRMR=.05, and RMSEA=.08 for the larger study measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [74] "Exploratory factor analysis: Prior to computing descriptive statistics for the BFRS scale, a principal-axis exploratory factor analysis was conducted for the individuals in the three groups (N = 726). Inspection of a scree plot strongly supported the presence of a single factor underlying participant responses to this scale. As each item loaded strongly (i.e., > .50) on this factor, a scale score was formed by averaging scores across each of the 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [75] "CFA of the three-factor model with Sample B was preformed using the IBM SPSS Amos 22 program. The fit indices of the model indicated that the correspondence between the three-factor model and the sample covariance matrix was satisfactory, χ²(31, N = 210) = 79.311; TLI = .930; CFI = .952; IFI = .953; RMSEA = .086, 90% CI [.063, .110]; SRMR = .062. All items of the three subscales were significantly related to the three latent factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [76] "The EFA results show that a single factor was retained, with an eigenvalue of 10.14, explaining 57.2% of the variance in the UDDS. The CFA model obtained satisfactory fit, chi square(126, n = 636) = 409.11, p < .001, CFI = .99, GFI = .99, RMSEA = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [77] "Exploratory Factor Analysis: Principle axis exploratory factor analysis with varimax rotation was conducted. Factor loadings indicate that there are at least three items representing each of the four forms of employee silence. Confirmatory Factor Analysis: CFAs results confirmed superiority of the proposed correlated four-factor model. This model provides a good fit [χ² (n = 373) = 182.87; df = 48; CFI = .95; RMSEA = .087] and a significantly better fit than the uni-dimensional model, an uncorrelated four-factor model, or other alternative models with two or three factors."                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [78] "The factor analysis results are: chi square(13, N = 85) 15.49, p = .278, RMSEA = .029, pclose = .719 (CI 90%: .000 – .076), NFI = .964, CFI = .994."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [79] "Factor analysis results are: chi square(7, N = 162) = 5.82, p = .56; CFI = 1.00; TLI = 1.00; RMSEA = .00 (90% CI: .00 –.09); SRMR = .03."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [80] "Confirmatory factor analysis resulted in a one-factor solution representing job self-efficacy; a sub-sample (n=137) in which a confirmatory factor analysis was carried out also verified the one-factor model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [81] "Starting from the preliminary 26-item version of the scale, exploratory factor analyses and confirmatory factor analyses were performed, producing a shorter version of 19 items with each subscale comprised of 4 items, except for shared influence (3 items). Two confirmatory factor analysis models were performed with the 19-item version: a single-factor model and a 5-factor model. Errors on individual items were not allowed to correlate, except for negatively worded ones (Marsh, 1996). In the multifactor model, items were constrained to load only on the pertinent factor, and latent factors were allowed to correlate. The 5-factor model presented better fit indexes (χ2 [10, N = 781] = 786.41, p<0.001)."                                                                                                                                                                                                                                                                                                      
##  [82] "The 8 items in this revised version were subjected to confirmatory factor analysis (CFA) using AMOS 7.0 to verify that they retained their structure as two dimensions of instructional face threat mitigation. Following a minor modification, the model achieved a good fit with the projected structure: χ²(15, N = 328) = 27.26, p = .03, CMIN1.818, CFI = .985, RMSEA = .050, affirming its validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [83] "Results from exploratory factor analysis using principal axis factoring and direct oblimin rotation and parallel analysis on data from the annual SSI sample (N = 212) indicated a 5-factor solution for competencies that were subsequently labeled Human Services Structure and Policy (12 items), Safety and Risk Indicators (8 items), Child Welfare Service Delivery (13 items), Child Welfare Practice Skills (18 items), Ethical and Culturally Competent Practice (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [84] "Multiple-group confirmatory factor analyses revealed that the factor structure based on responses to 51 items by a new cross-validation group (n = 9,134) was invariant with the factor structures based on responses to the same 51 items and to all 102 items by the original normative archive group (n = 9,187)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [85] "The exploratory factor analysis was first performed on a random 50% of a total sample (n= 665). Bartlett's test of sphericity was statistically significant (p < .001), and the Kaiser–Meyer–Olkin value was .81. The inspection of the scree plot showed one factor in this analysis; this comprised five items with an eigenvalue of 2.55, which accounted for 51.10% of variance. Each of the five scale items had a relative high loading on this factor (.70, .62, .74, .74, .76). No other significant factor was extracted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [86] "To support the assumption of a four-factor structure of the data, a confirmatory factor analysis was performed on the sample aged 50–60 (N = 965) and the four-factor model with correlated factors provided an acceptable fit to the data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [87] "The CFA results confirmed the 4 factor model (Leaving Intentions, Attitudes, Subjective Norms, and Behavioral Control): chi square (4, N = 169) = 4.87, p = .30; CFI = 0.99; TLI = 0.99; RMSEA = 0.04; AIC = 38.87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [88] "Confirmatory factor analysis showed a good fit to the data using a one‐factor solution, chi-squared (23)=27.12, N=202, P=.25; comparative fit index (CFI)=.98; root mean square error of approximation (RMSEA)=.030, 95% confidence interval (CI) [.000, .068]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [89] "An exploratory factor analysis of the final set of five items using a pilot sample of undergraduate and graduate students (N = 170) verified a single-factor solution. The eigenvalue for the first factor was 4.03 and it accounted for more than 80% of the variance in the set of items. A confirmatory factor analysis of the items using a separate pilot sample of full-time employees (N = 156) showed that the single factor model had a good fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [90] "A confirmatory factor analytic measurement model for the IMCS was estimated prior to estimating structural models in order to test the fit of the factor structure of the IMCS and to determine the factor loadings for each item. A single-factor model demonstrated acceptable fit [χ2 (18, N= 488) = 70.3, p < .01, root mean square error of approximation (RMSEA) = .08, 95 % confidence interval (CI) .06–.10, Comparative Fit Index (CFI)= .94, standardized root mean square residual (SRMR)= .05]. Item loadings were all significant (p < .001) and ranged from .38 to .80."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [91] "A multigroup confirmatory analysis was performed to simultaneously test the correlated five-factor theoretical structure (Anxiety, Well-Being, Perception of Positive Change, Depression, and Psychological Distress) on both clinical and nonclinical samples; the maximum likelihood estimator was applied. The resulting fit indices demonstrated that the model fit the data well: despite the chi-squared being significant (χ² SB [Satorra-Bentler scaled chi-square] [484; clinical group: N = 168; nonclinical group: N = 269] = 1,014.29; P < 0.01), the other indices (NNFI [non-normed fit index] = 0.98; CFI [comparative fit index] = 0.98; RMSEA [root mean square error of approximation] = 0.07) were more than satisfactory."                                                                                                                                                                                                                                                                                            
##  [92] "EFA/CFA yielded a final 8-item measure with two 4-item factors accounting for 63% of the total item variance: Pros and Cons. The 2-factor model demonstrated strong model fit: chi-squared[19, N = 298] = 55.62, p < .001, CFI = .94, AASR = .048. Factor loadings were at least .70."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [93] "Two robust maximum-likelihood confirmatory factor analyses (CFAs) of the 22-item measure were conducted. The first CFA model included the 22 items represented by one latent variable and displayed borderline adequate fit, χ2(209, N = 102) = 359.61, p < .001, χ2/df ratio = 1.72, CFI = .89, TLI = .88, RMSEA = .08 (90% CI = [.069, .099]), AIC = 5,773.37. The second CFA model included the 22 items represented by five latent variables (Physical Anxiety, Fear of Making Mistakes, Anxiety about Understanding, Feelings of Incompetence, and Distinction from General Communication Apprehension). The model bordered on adequate fit, χ2(198, N = 102) = 346.05, p < .001, χ2/df ratio = 1.75, CFI = .90, TLI = .88, RMSEA = .09 (90% CI = [.070, .100]), AIC = 5,752.67. Overall, the unidimensional scale was deemed to be superior to a multifactor model. Given this unidimensionality, 7 items were selected as a short scale based on factor loadings, internal reliability contribution, and interviewee responses."   
##  [94] "The second-order CFA had the most adequate fit (x2diff (2, N = 470) = 100.83, p <.001), supporting the factorial validity of the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [95] "The seven FLCA items were subjected to CFAs with robust maximum likelihood. The basic measurement model consisted of one latent variable (FLCA) and seven indicators. In the first CFA, the model indicated good fit, chi-squared(14, N ≥ 224) = 17.49, p = .23, chi-squared/df ratio = 1.25, CFI = 1.00, TLI = 1.00, RMSEA = .03 (90% CI = [.00, .077]), standardized root mean square residual (SRMR) = .017. All items loaded above .81. In the second CFA, the basic model had good fit, chi-squared(14, N = 216) = 17.35, p = .24, chi-squared/df ratio = 1.24, CFI = 1.00, TLI = .99, RMSEA = .033 (90% CI = [.000, .077]), SRMR = .025. All items loaded onto the factor above .75.."                                                                                                                                                                                                                                                                                                                                              
##  [96] "Confirmatory factor analysis and a second-order analysis confirmed the 7 factor model had a good fit with the data, χ2(df = 13, n = 11,769) = 639, CFI = 0.983, RMSEA = 0.064 (90% CI = 0.060–0.068), TLI = 0.973."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [97] "Results of confirmatory factor analysis indicated that the previously established two-factor model (i.e., 7-item shyness scale; 4-item unsociability scale) fit the data well, χ2(43, N = 350)= 153.92, χ2/df = 3.58, p < .001; normed fit index = .90, comparative fit index = .92, incremental fit index = .93, root mean square error of approximation = .08, providing validation of the internal structure of the CSPS in Chinese children. Accordingly, the final version of the Chinese CSPS was a two-factor scale: shyness (7 items; factor loadings from .59 to .73) and unsociability (4 items; factor loadings from .59 to .76)."                                                                                                                                                                                                                                                                                                                                                                                             
##  [98] "Exploratory analyses among women (N = 207) indicated a 20-item scale with the original five factors: Internalization: Thin/Low Body Fat, Internalization: Muscular/Athletic, Pressures: Family, Pressures: Media, Pressures: Peers. This structure was confirmed among a second sample of women (N = 227). A slightly modified factor structure emerged in men (Internalization: Thin/Low Body Fat, Internalization: Muscular/Athletic, Pressures: Media, Pressures: Family and Peers – Thinness, and Pressures: Family and Peers – Better Shape)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [99] "Confirmatory factor analysis showed that the eight PICTS subscales scores of a sample of Egyptian male prisoners (n = 130) best fitted a two-factor model, in which one dimension comprised Mollification, Entitlement, Super optimism, Sentimentality, and Discontinuity, and the second dimension reflected Power orientation, Cut-off and Cognitive indolence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [100] "Confirmatory factor analysis revealed that both incremental fit indexes (CFI = .96; TLI = .95) and absolute measures of fit indexes were good (RMSEA = .07) for the two-dimensional model: (chi-squared (32, N = 2463) = 417.8, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [101] "Principal Component Analysis on a sample of ethnically diverse college students (N = 1947) yielded the same four motives for the original and revised questionnaires. Conformity Factor Analyses yielded a four-factor model with acceptable-to-good fit to the data. The four-factor model provided even better goodness-to-fit for the Palatable Eating Motives Scale--Revised."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [102] "Principal component analysis on a random sample (n=200) and confirmation on a second random sample (n=200) indicated that each of the scales under consideration provided a significant measurement model for the symptom burden (CFI=0.95), health behavior (CFI=1.00), functional limitation (CFI=0.99), health care seeking skill (CFI=0.98), and cancer-related financial strain (CFI=1.00) broad domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [103] "Confirmatory factor analysis: CFA was conducted by using the estimation method WLSMV. The results confirmed the unidimensional structure of the scale. The fit indexes were as follows: X²(90, N = 330) = 229.66, p < .01; TLI = .95; CFI = .95 y RMSEA = .07 (LO 90 = .06; HI 90 = .08)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [104] "A confirmatory factor analysis yielded 3 factors: moral, conventional and prudential domain judgments. indices. The final model showed an acceptable fit: χ2(132, N = 339) = 450.52, p<.05; NNFI = 0.95; CFI = 0.95; RMSEA = .07(.06; .08); SRMR = .05, with all factor loadings significant for p<.001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [105] "Confirmatory factor analysis revealed that a one-factor structure provided a good fit for the data, χ2(59, N = 266) = 144.20, TLI = .97, CFI = .97, RMSEA = .07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [106] "A three-factor confirmatory factor analysis provided a good fit for the data, (96, N = 266) = 138.49, TLI = .96, CFI = .97, RMSEA = .04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [107] "The final 4-dimensional, 28-item model was tested with results indicating good model fit to the data χ2(317, n=325)=998.56, p<0.05; χ2/df=3.34, RMSEA=0.08 (1-RMSEA=0.92), NFI=0.92, CFI=0.95, RMR=0.03, GFI=0.81."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [108] "Confirmatory factor analysis indicated a nine-factor structure. Sample 1: chi-squared (288, n = 724) = 672.424, p < 0.001, CFI = 0.963, RMSEA = 0.043 (90% CI: 0.039−0.047). Sample 3: chi-squared (288, n = 601) = 570.681, p < 0.001, CFI = 0.973, RMSEA = 0.040 (90% CI: 0.036−0.045)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [109] "An exploratory factor analysis with an unselected student sample (N = 506) suggested a two-factor solution (Distraction is necessary and Distraction is effective). A confirmatory factor analysis using a contamination-fearful sample (N = 132) demonstrated adequate model fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [110] "Factor analysis was attempted, but due to a small sample size (N = 66), the assumptions for this analysis were not met."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [111] "A CFA confirmed a model with five independent but correlated factors: chi-squared(81, N = 308) = 237.22, p < .01, comparative fit index (CFI) = .94, Tucker-Lewis index (TLI) = .93, root mean square error of approximation (RMSEA) = .08, standardized root mean square residual (SRMR) = .07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [112] "Exploratory and confirmatory factor analyses yielded 4 factors: Pro-bully (10 items), Defender (5 items), Victim (2 items), and Outsider (3 items). The confirmatory four factor model obtained satisfactory fit to the data, χ2(164, N = 636) = 614.31, p < 0.001, CFI = 0.96, TLI = 0.94, RMSEA = 0.066. All factor loadings ranged from 0.50 to 0.89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [113] "A single-factor model of negative affect comprising six indicators was fit to the data, yielding a significant model chi-square indicating poor model fit, X²(64, N = 8,979) = 1,344.99, p < .001. Next, a two-factor model evaluating negative affect as separate factors of Agitation and Distress was fit to the data, yielding a significant model chi-square, X²(58, N = 8,979) = 468.42, p < .001, which again indicated poor model fit. A Satorra-Bentler scaled chi-square difference test (Satorra & Bentler, 1999) indicated that this two-factor model improved the fit significantly relative to the single-factor model. Additionally, the two-factor model yielded favorable model-fit values for all indices. Therefore the two-factor model (Agitation and Distress, 3 items each) was finalized."                                                                                                                                                                                                                        
## [114] "Confirmatory factor analyses resulted in the final 45-item, nine-factor structure (5 items per factor): 1. Mastery Experiences, 2. Cognitive Development, 3. Teaching, 4. Normative Success, 5. Interaction with Others, 6. Fun and Enjoyment, 7. Improvement of Health/Fitness, 8. Diversionary Experiences, and 9. Relaxation. Results indicated that the 9-factor model was a close fit to the data: χ²(909, n = 175) = 1,714.50, p < .001; SRMSR = .062; CFI =.98; PNFI = .87."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [115] "Confirmatory factor analyses demonstrated that the 2-factor model provided a better fit to the data (Chi-squared[64, N = 158] 157.56, p < .01; goodness-of-fit index = .85; normed fit index = .87; comparative fit index = .92; parsimonious normed fit index = .71; RMSEA = .09; chi-squared difference[1, N = 158] = 103.95, p < .01) than a unidimensional model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [116] "CFA produced a 1-factor model of the initial 7-item psychological ownership scale produced a significant chi-square ( X<2>=31.56, 14 d.f., p<0.05, RMSEA=0.09, CFI=0.97). Modification indices indicated the model could be improved by dropping the last 3 items. This improved the chi-square statistic such that it failed to reach significance ( X<2>=5.29, 2 d.f., p>0.05), with factor loadings 0.71–0.87 and t-values 10.64–13.97. In Sample 2 (n=409), CFA of the revised measure again showed a non-significant chi-square ( X<2>=3.69, 2 d.f., p>0.05, RMSEA=0.05, CFI=0.99), with factor loadings 0.76–0.91 and t-values 17.44–22.65. The chi-square was also nonsignificant in Sample 3 (X< 2>=3.74, 2 d.f., p>0.05, RMSEA=0.06, CFI=0.99, n=227), with factor loadings 0.73–0.93 and t-values 11.32–17.99. Overall these results support homogeneity and unidimensionality of the measure."                                                                                                                                 
## [117] "CFA produced a 6-factor structure: salience, mood modification, tolerance, withdrawal symptoms, conflict, and relapse, and provided an acceptable model fit: x² (151, n= 1003)= 504.6, p<0.0001; CFI =0.935; TLI= 0.918 RMSEA=0.048 (90%CI: 0.044-0.053), pclose= 0.716; SRMR=0.041."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [118] "Confirmatory factor analyses supported five factors measuring pro-social skills, negative peer directed behavior, friendship interactions, peer victimization, and the level of concern expressed about a child's social functioning. Results indicated good fit for the five-factor model: χ²(265, N = 298) = 453.6, p < .01, CFI = .95, RMSEA = .05 (90 % CI .041–.056), SRMSR = .05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [119] "CFA produced a one-factor solution among 7 items. Results demonstrated excellent fit (χ2 (11, N=615)=11.09, p>.15, RMSEA=.00, 95% CI.00 .04, CFI=1.0, SRMR=.01)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [120] "An exploratory factor analysis in a separate sample of Chinese secondary school teachers (N = 186) resulted in a two-factor solution with four Role Compatibility items, and two Role Competence items. Confirmatory factor analysis showed that the two-factor model fit well to the data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [121] "Factor analyses on data from student samples (N = 790) revealed four clearly interpretable factors corresponding to the secure, anxious, dismissive and preoccupied attachment styles. Among a second sample of Dutch emigrants (N = 1011), a three-factor solution was found in which the preoccupied and the anxious styles collapsed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [122] "The authors sought to reproduce the selected two-factor structure including correlated errors in the second group of Wave 1 data (N = 2,657). This analysis yielded the same adequate model fit: 2(131) 927.541 (p<.001), RMSEA=.048 (CI=-.045-.051), CFI=.966, TLI=.960. Factors 1 and 2 correlated moderately (r=.53). Together, the findings confirmed the two-dimensional structure (Illness Likelihood and Negative Consequences of Illness) of the Dutch version of the SHAI. While this factor solution was used for the remaining analyses, the authors recommend using a one-factor (Illness Likelihood), 14-item Dutch SHAI, based on predictive validity outcomes."                                                                                                                                                                                                                                                                                                                                                            
## [123] "Results of exploratory and factor mixture analyses yielded support for a 7-item scale consisting of two factors, social identity and identity threat, and five latent classes underlying a heterogeneous population. EFA: chi squared(8, N = 629) = 45.09, p = .000, CFI = .998, RMSEA = .086 (90% CI: .062, .111), TLI = .996, SRMR = .009."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [124] "Three factors were revealed by PCA and verified by CFA: Fear of Death, Worry & Stress, and General Conerns. The total cumulative variance explained by these three components was 63.93%, and the fit of the final CFA was acceptable, chi-squared(48, N = 398) = 166.72, p < .001; AGFI = .885, PCFI = .683, PNFI = .662, TLI = .912, CMIN/DF = 3.47, RMSEA = .079."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [125] "EFA/CFA yielded two factors: Cause/Cure (9 items) and General Knowledge (12 items). The 2-factor model demonstrated adequate fit: chi-2(185, N = 391) = 390.73, p < .01, CFI = .91. The factors were moderately correlated. Six additional items were included in the final questionnaire as they were thought to contain important public health information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [126] "Exploratory factor analyses consistently yielded four eigenvalues greater than 1; therefore, a four-factor model was retained: 1. Support (12 items), 2. Endorsement (6 items), 3. Undermining (4 items), and 4. Agreement (3 items). The model fit from the confirmatory factor analysis was excellent, χ²(246, N = 90) = 252.67, p = .37, RMSEA = .017, CFI = .995."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [127] "The original 34 items of the CEDLE were subjected to principal axis factoring and oblimin oblique rotation. The resulting 20 items were then subjected to confirmatory factor analysis, which revealed that a five-factor model (Mastery Experience, Verbal Persuasion, Vicarious Learning, Positive Emotional Arousal, and Negative Emotional Arousal) was the best fit to the data: SRMR = .06, CFI = .97, RMSEA = .04; Satorra-Bentler (S-B) χ² (160, N = 324) = 240.55, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [128] "Although the positive and negative items were inversely correlated, confirmatory factor analysis indicated that they are best treated as indicators of separate constructs, with a two-factor model (Bentler Comparative Fit Index = 0.99) fitting the data significantly better than a one-factor model (χ²(1, n = 281) = 430.65, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [129] "CFA indicated an acceptable fit with the data [chi-square (312, N = 596) = 1009, p = 0.00, CFI = 0.937, NNFI = 0.929, SRMSR = 0.049; RMSEA = 0.061]; All standardized loadings were above 0.55 and the intercorrelations were 0.30 or less."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [130] "CFA confirmed a 6-factor model as the best fit for the data: χ2(120, N = 1950) = 871.738, p<.001, CFI = .940, RMSEA = .057, RMR = .037."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [131] "Exploratory and confirmatory factor analyses indicated that the 6-factor model (Intellectual efficiency, Ingenuity, Curiosity, Aesthetics, Tolerance, and Depth) yielded very good model-data fit: χ2(128, N = 433) = 290.280, p < .001, comparative fit index (CFI) = .963, nonnormed fit index (NNFI) = .955, root mean squared error of approximation (RMSEA) = .054. Because the intercorrelations among the six facets were positive, the correlations collectively provided support for a higher order general Openness factor. Data also suggested the presence of 2 intermediate-level factors: Intellect and Culture."                                                                                                                                                                                                                                                                                                                                                                                                           
## [132] "CFA was used to test the single order factor model, consisting of six factors that were allowed to correlate: FFFS, BIS, BAS-RI, BAS-GDP, BAS-RR, BAS-I. The fit indices for this model were as follows: χ² (1814, N = 1512)=10211.18, p < 0.001, CFI=0.80, RMSEA=0.055. This indicates an acceptable global model fit in terms of the RMSEA, although it should be noted that the CFI value is below the rule of thumb cut-off point used for assessing acceptable model fit (0.90). Furthermore, all items loaded their respective factor, with values ranging from 0.39 to 0.81."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [133] "The scree plot clearly indicated only one primary factor and only one factor with an eigenvalue above 1, which accounted for 81.67% of the variance. Results indicated that the proposed structural model fit the data well, χ2 (20, N = 151) = 105.97; p < .0005. All the goodness-of-fit indices exceeded the threshold levels (over .95): normed fit index = .98; comparative fit index = .98; relative fit index = .96; incremental index of fit = .98; and the Tucker-Lewis index = .97."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [134] "Item and explorative factor analyses resulted in four subscales: Media concern, Affective media empathy, Cognitive media empathy, and Immersion in video games. In a youth sample (N = 273) and in an adult sample (N = 373), the same factorial structure was found."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [135] "PCA lead to a reduction of 54 items. After the second survey (N=391), EFA determined six factors with 22 items: 1. Postural instability and gait difficulties, 2. Cognitive impairment, 3. Speaking problems, 4. Apathy, 5. Impulsivity, and 6. Difficulties related to the DBS device."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [136] "The nine retained items yielded a two-factor solution explaining 33% and 17% of the variance: Negative Attitudes toward Divorce and Positive Attitudes toward Divorce. CFA verified the two-factor solution. The two-factor model seemed to adequately fit the data, with chi-squared(1, N = 664) = 88.78, p < .001, chi-sqaured/df = 3.41, RMSEA = .060, and CFI = 0.932."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [137] "Measurement Invariance: The measurement model for the 4-factor structure (Mastery-approach [MA], Performance-approach [PA], Mastery-avoidance [MV], and Performance-avoidance [PV]) showed good fit to the data. In the panel data (N = 343), the four achievement goals showed strong measurement invariance, suggesting factor loadings and intercepts of the items remained invariant across a year."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [138] "Confirmatory factor analysis indicated that the fit indices were excellent for the model, consisting of three correlated factors (Emotional Regulation, Behavioral Regulation and Psychosocial Problems): χ2(321, N = 237) = 259; RMSEA = .058 (90% CI: 0.051; 0.066); CFI = .93; and SRMR = .059."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [139] "A factor analysis of the scales was performed for both forms of the Romanian CSI–4, using the non-clinical sample (N=1066). In the case of the Teacher Checklist, four factors were extracted, while in the case of the Parent Checklist, five factors were extracted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [140] "A principal components analysis with iterations and varimax rotation yielded 4 factors: Feedback utility, Feedback sensitivity, Feedback confidentiality, and Feedback retention. Confirmatory factor analysis supported the 4-factor model (27 final items) with good model fit, chi-squared (318, N = 45) = 594.79, p<0.001, NNFI = .94, CFI = 0.95, RMSEA = .060, with the 90% confidence interval = .053 0.067."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [141] "EFA yielded a single-factor structure, explaining a large proportion of variance (27.60%; eigenvalue equaled 23%): X²(l, N = 251) = 8,142.43; p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [142] "CFA yielded a 2-factor structure: Reflective Exploration and Preoccupation: χ2 (N = 217, 34) = 42.54; p = .15, χ2/df = 1.25; CFI = .99; RMSEA = .03; CI = .00–.06. These results supported evidence of construct and predictive validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [143] "A principal component analysis with orthogonal rotation (oblimin) was conducted for samples 2, 3, and a subsample of 50% of sample 1 jointly. Two factors were derived, which accounted for 47.69% of the total variance. the previously tested five items loaded onto factor 1, which was named “Fearlessness of Death.” It accounted for 29.18% of variance. Five of the eight newly developed items loaded onto factor 2 named “Pain Tolerance.” It accounted for 18.5% of variance. Items 6, 8, 10 and 11 did not load onto any of the two factors. Of those items 8, 10 and 11 were eliminated. A confirmatory factor analysis was conducted with the remaining half of sample 1 (n = 266). Values for CFI (.94), RMSEA (.09; 90% CI [0.07; 1.1] and SRMR (0.07) all indicated an acceptable fit of the model."                                                                                                                                                                                                                      
## [144] "EFA/CFA yielded a unidimensional structure. The data fit the model well: χ2(27, N = 232) = 63.53, p < 0.001, CFI = 0.93, TLI = 0.91, RMSEA = 0.07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [145] "EFA and CFA indicated a unidimensional scale. EFA yielded a single factor with eigenvalue greater than 1.0 and the Scree plot also suggested a single-factor solution. This factor accounted for 75.36% of the total variance with high item loadings for all four items. CFA confirmed the specified measurement model, chi-squared(2, N=466)=1.75, p=0.417, and fit indices indicated excellent model fit, NFI=0.998, GFI=0.998, CFI=1.00, and RMSEA=0.000."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [146] "EFA and CFAs produced an 18-item, five-factor instrument: Relational Cost (RC); Social Benefit (SB); Material Gain (MG); Out of Control (OC); and Money Loss (ML). The fit indices for the model were chi-squared (125, N = 1218) = 488.94, p < .001, chi-squared/df = 3.91, CFI = .95, SRMR = .05, RMSEA = .05 (.05, .06), which suggested a good fit of the model. All factor loadings were significant at the .05 level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [147] "A PCA of the six final items yielded a one-factor solution that accounted for 51.0% of the variance. Cross-validation of the one-factor model showed a good fit for most fit indices: chi-squared (N=1642, df=9)=357.5; p B<.001, TLI=.90, CFI=.94 in Sample 2; chi-squared (N=2331, df=9) 396.9; p<.001, TLI=.92, CFI=.95 in Sample 3). However, for both samples the RMSEA values were slightly off with values of .15 in Sample 2 and .14 in Sample 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [148] "Factor analysis indicated a single-factor solution: chi-2(35, N = 493) = 167.96, p<0.001 (CFI = 0.95, TLI = 0.94, RMSEA = 0.09)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [149] "Two-factor model of the SRVS: χ²(8, N = 85) = 9.454, p = .305; CFI = .99; GFI = .96; RMSEA = .05, 90% CI [0.00, 0.14]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [150] "EFA yielded a 2-factor solution explaining 37.26% of the total variation. CFA confirmed the model showed a good fit with the data: x²(43, N= 382) = 86.46, p <.05; x²/SD= 2.01; RMSEA = .05; GFI = .96; AGFI = .94; NNFI = .96; CFI = .97."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [151] "The factor structure of the questionnaire was cross-validated and achieved satisfactory results. The total sample (N = 873) was split into halves randomly. EFA was performed with the first half of the sample (n = 436). Based on the EFA-derived factor structure, a measurement model was specified and validated by CFA with the other half of the sample (n = 437). EFA generated six factors. CFA also achieved a satisfactory model fit, χ²(721) = 1434.14, χ²/df = 1.989, p = .000, root mean square error of approximation (RMSEA) = .048, 90% confidence interval (CI) [.044, .051], standardized root mean square residual (SRMR) = .054, normed fit index (NFI) = .846, comparative fit index (CFI) = .916, and Tucker-Lewis index (TLI) = .910."                                                                                                                                                                                                                                                                            
## [152] "A principal component factor analysis was conducted. The scree plot revealed that there was only one clear factor that accounted for 50% of the variance. When scores for all items were combined, the mean score was 24.35 (SD=8.75, N=399). It was expected that all the items would fall primarily on one factor. First, the unrotated factor loadings were examined. A factor analysis was conducted. Factor one accounted for 49.07% of the variance (Eigenvalue=4.91) and consisted of specifically phrased items. Eight items loaded on one factor. Results revealed that items 8 and 10 should be removed. Using only eight items accounted for 55.48% of the variance (Eigenvalue=4.44)."                                                                                                                                                                                                                                                                                                                                        
## [153] "CFA results supported a three-factor structure; that is, three distinct dimensions of metacognitive strategy use, cognitive strategy use, and metacognitive knowledge for reading were identified: χ²(17, N = 139) = 16.36, p = .50, GFI = .97, AGFI = .94, NNFI = 1.00, CFI = 1.00, and RMR = .03."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [154] "Psychometric properties of the HPWS item factors were assessed using confirmatory factor analysis. The confirmatory factor analysis provided a good fit to the data (x2[288, N = 911] = 429.795, p < 0.05, CFI = 0.968, TLI = 0.961, RMSEA = 0.05) for the 9-factor model. All hypothesised loadings were statistically significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [155] "The initial 23 items were subjected to an EFA using principal axis factoring and an oblique rotation method, direct oblimin. Loadings greater than .40 were used in interpreting the factors as: Emphasis on Assigned Sex Expression, Affirmation of Gender Expression in All Forms, and Generalized Emphasis on Gender Binary Expression. In Study 2, further item development and refinement occurred. Each of the remaining 24 items loaded greater than .40 on the expected factor. Results of the CFA examining the GEATC as three correlated factors indicated a good fit to the data: χ² (249, N = 202) = 477.82, p < .001, RMSEA = .07, 90% CI [.06, .08], CFI = .98, TLI = .98, WRMR = 1.092. All standardized loadings were greater than .40 (Mdn = .86; range: .41–.94)."                                                                                                                                                                                                                                                      
## [156] "Exploratory structural equation modeling was used to analyze the survey responses. The final model retained 11 items in a 4-factor solution (High-risk situations [3 items], Postassault support for victims [2 items], Postassault reporting of perpetrators [2 items], and Proactive opportunities [4 items]), demonstrating very good model fit: χ2/df (17, N =2,028) = 13.82, p < .001; RMSEA = .08; CFI = .99; TLI = .97; WRMR = .67."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [157] "CFA verified a four-factor solution: Efficacy for Student Motivation, Student Achievement, Relationships with Students, and Teaching. The model fit was satisfactory: chi-sqared (59, N = 315) = 129.51, CFI = .97, TLI = .95, RMSEA = .06, SRMR = .03)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [158] "CFA verified a single-factor model. Factor loadings were acceptable with the exception of the loading on Item 3 and Item 7. The model fit was acceptable: chi-squared (162, N = 593) = 373.6, p < .0001; CFI = .926; TLI = .913; RMSEA = .047 (90%CI: .041–.053), pclose = .785; SRMR .050."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [159] "Various EFAs and CFAs were conducted, ultimately leading to a 5-item, unidimensional measure. When the Mindfulness at Work Scale was tested among other scales used in the study as part of a 7-factor measurement model, the fit indices, after allowing one pair of items in the work engagement scale to correlate, showed that the model fit the data: χ² (607, n=503)=2,354, p<0.001; CFI=0.96; NFI=0.95; RMSEA=0.076). All of the standardized path loadings were significant (p<0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [160] "CFA was performed on a measurement model that included the four variables from the Self-Reported Intimate Partner Aggression Perpetration Measure as well as variables for anger, jealousy, and romantic relationship attachment. The model fit was adequate, χ²(993, N=596)=5,689.89, p<.001, comparative fit index (CFI)=.98, Tucker–Lewis index (TLI)=.97, root-mean-square error of approximation (RMSEA)=.04, standardized root-mean-square residual (SRMR)=.03, and all standardized factor loadings were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [161] "CFA results confirmed the 3-factor structure (social support, interconnectedness, and community participation) for both scales (Religious Capital: χ²(23, N = 311) = 53.32, p<.001, χ²/df = 2.31, RMSEA = .06, 90% CI = .04 to .09, CFI = .98, TLI = .96; Spiritual Capital: χ²(22, N = 311) = 44.21, p<.01, χ²/df = 2.01, RMSEA = .06, 90% CI = .03 to .08, CFI = .98, TLI = .97. Model parameters were comparable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [162] "A PCA, which was directly tested with a CFA, confirmed the proposed three-factor model (Affective Empathy, Cognitive Empathy, and Intention to Comfort) resulting in 14 final items [S-Bχ² (df = 74, N = 625) = 230.59, p < 0.001; SRMR = 0.055; CFI = 0.912; RMSEA = 0.058, 90% C.I. = 0.050, 0.067]. Standardized factor loadings ranged from 0.450 to 0.861."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [163] "Factor Analysis: Factor analysis based on the total group of patients (N = 287) revealed 4 factors with eigenvalues> 1 (Kaiser criterion). Since the last factor explained less than 5% variance, only the first 3 factors were explained, which accounted for 65.0% of the total variance. A corresponding 3-factor analysis barely reflected the expected 3-component structure (IDAF-4C, IDAF-P and IDAF-S), and even an oblique rotation was no better interpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [164] "Structural equation modelling supported the model of 7 factors (Passive leadership, Role overload, Role conflict, Role ambiguity, Psychological work fatigue, Mental health, and Overall work attitude) as a good fit for the data: χ2 [197, n = 2467) = 1058.95, p<0.001; CFI = 0.97; TLI = 0.96; and RMSEA = 0.042 (90% CI (0.040, 0.045)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [165] "CFA indicated a 34-item four-factor solution reflecting the Mammy, Jezebel, Sapphire, and Superwoman stereotypes. The four-factor model was compared to the null model and a three-factor model. The chi-square results were significantly different for the proposed four-factor model and the null model, suggesting that the four-factor model is the best fit, χ2(6, N = 147) = 440.025, p < .001. Although there were few differences between the three-factor and four-factor model, the data suggest that the four-factor model had the greatest degree of fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [166] "Confirmatory factor analysis: CFA yielded a bifactor model of online privacy competence. Model fit: WLSMV, χ2 (150) = 598.56, p <.001, CFI = .97, TLI = .97, RMSEA = .04, WRMR = 1.44, n = 1945."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [167] "Exploratory factor analysis: EFA revealed 4 factors that elucidated 65.29% of the total variance. For this solution, an acceptable model fit resulted (4-factor model: χ2 [448, N = 164] = 988.07, p = .00, CFI = .90, RMSEA = .08, AIC = 15363.92; factor charges: .57 ≤ a ≤ .92). Measurement invariance: Tests of measurement invariance indicated no differences between boys and girls."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [168] "Confirmatory factor analysis: CFA yielded a five-factor structure. The model was an acceptable fit to the data: chi-square (164, N = 109) = 84.62, p < .01; chi-square/ sd = 1.73; RMSEA = .081 (90% confidence interval for RMSEA = .065-.097); NNFI = .94; IFI = 95; CFI = .94; SRMR = .082. A 3-factor structure was also within acceptable limits: chi-square (167, N = 109) = 327.90, p <.01; chi-square/ sd = 1.96; RMSEA = 0.089 (90% confidence interval for RMSEA = .078-.10); NNFI = .92; IFI = 93; CFI = .93; SRM = .088."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [169] "EFA yielded a single latent variable with 14 indicators, and this model fitted the data fairly well (x² [df = 77, N = 983] = 147.90, p < .001, RMSEA = .031 [90% CI: .023–.038], CFI = .977, TLI = .973). The CFA performed on the calibration sample showed similar results (x² [df = 77, N = 983] = 148.12, p < .001, RMSEA = .030 [90% CI .023–.037], CFI = .971, TLI = .963)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [170] "All scales (Efficiency, Economic value, Visual appeal, Entertainment, Service excellence, Escapism, and Intrinsic enjoyment) were subject to factor analysis and found to be unidimensional. Unidimensionality was assessed by examining the pattern of standardized residuals and the modification indices generated from a CFA. Indices generated by this measurement model suggest acceptable fit in the Internet context [x² = 229.66 (131df.), (p = .000); RMSEA = 0.060; GFI = 0.90; CFI = 0.96; n = 213] (Brown & Cudeck, 1992)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [171] "CFA confirmed that the hierarchical structure (math learning anxiety and math test anxiety loading on a second-order factor called academic math anxiety) showed the best fit to the data (x²(166, N = 563) = 361.22; RMSEA = .046; SRMR = .045; NNFI = .94; CFI = .95)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [172] "EFA and CFA resulted in a structure with 8 factors across 4 dimensions. The results of the chi-square showed a good fit to the model (df=1,048, N=1,595, chi-square=3,432.09, p<.001); the ratio of the chi-square statistics to the degrees of freedom (chi-square/df) in the model was 3.28, which was higher than the conventional critical ratio cutoff of 2.0. The GFI was 0.91 and the adjusted goodness-of-fit index was 0.90, suggesting a good fit. The comparative fit index and non-normed fit index were 0.91 and 0.90, respectively, where values close to 1.0 indicate good fit. The model produced a root-mean-square error of approximation (RMSEA) equal to 0.04."                                                                                                                                                                                                                                                                                                                                                       
## [173] "The factor structure of the SBS-13 was investigated using exploratory and confirmatory factor analysis which identified 2 facets (Psychological Avoidance and Spiritualizing) with a second order facet (Spiritual Bypass). The final model replicated the two-factor structure of the SBS with indications of reasonably good fit: χ² (62, N=313)=232.47, p<.001; Chi Square Minimum (CMIN)/df=3.75; comparative fit index (CFI)=.94, standardized root mean square residual (SRMR)=.05, root mean square error of approximation (RMSEA)=.09. All of the items loaded significantly onto the two factors and ranged from .62 to .82."                                                                                                                                                                                                                                                                                                                                                                                                    
## [174] "The EwC model with broadband positive and negative factors demonstrated excellent fit, χ2 (546, N = 564) = 547.5, p > .10, RMSEA = .002, 95% CI .000–.014, CFI = 1.0, SRMR = .038. Proactive Parenting (.75), Positive Reinforcement (.77), Warmth (.56), and Supportiveness (.69) all had significant factor loadings onto the Broadband Positive Parenting factor. Additionally, partial support emerged for a Broadband Negative Parenting factor with Hostility (.88), Lax Control (.39), and Physical Control (.46) all having significant factor loadings—albeit with Hostility being the primary narrowband factor."                                                                                                                                                                                                                                                                                                                                                                                                               
## [175] "EFAs (with Promax rotation) were carried out to explore the number of factors to retain. Items that did not comply with the requirements for retention were eliminated. EFA analyses were repeated after the elimination of each item. A final EFA was performed with the retained 23 items, extracting 5 factors (self-management of BD, turning point, self-care, self-confidence, and interpersonal support), which conjointly explained 57.04% of the variance. The factor structure of the 23-item RBD derived from the final EFA was examined within the clinical sample by carrying out a CFA. The hierarchical CFA model with five first-order latent factors and one second-order factor produced acceptable fit indexes: χ²(225, N = 113) = 374.38, p = 0.000, RMSEA = 0.077 (90% CI [0.063, 0.090]), NNFI = 0.93, CFI = 0.93. All factor loadings were significant."                                                                                                                                                           
## [176] "Confirmatory factor analysis: The following indices were obtained: chi-square (35, N= 332)= 67,39; p< 0,001; chi-square/gl= 1,92; CFI= 0,95; IFI= 0,95; TLI= 0,93; RSMR= 0,05; RMSEA= 0,04. These results support the validity of the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [177] "Data from all three studies (n =548) were used to conduct an exploratory factor analysis. For studies 2 and 3, only the data from the first administration of the CBI were used. The SCREE plot indicated a single dominant factor was present. In fact, separate exploratory factor analyses on the data from each study consistently indicated a single dominant factor, accounting for between 42 and 53% of the variance. There was no evidence across the studies for a consistent alternative factor structure beyond the single factor model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [178] "EFA identified 5 factors (Preference for Friend or Acquaintance, Preference for Knowledgeable Partner, Preference for Controversial Partner, Preference for Formal Partner, and Preference for Family or Relative) explaining 50.8% of the variance. CFA was fitted to replicate the observed correlation matrices within each of the three age groups. Fit statistics of this final model were x²(495, N = 475) = 734.4, p < .01 (x²/df = 1.48; RMSEA = .055)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [179] "Principal components analyses yielded a single factor solution for this scale, accounting for 62% of the item variance. Confirmatory factor analysis of a larger measurement model (self-efficacy, achievement motivation, experience, collective efficacy, and individual performance) showed that a freely estimated model fit the data well, χ2 (80, N = 122) = 125.41, comparative fit index (CFI) = .97, root mean square error of approximation = .068; and all indicators significantly loaded on their respective factor, p < .05 (standardized loadings ranged from .53–.97)."                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [180] "Exploratory Factor Analysis: A principal factor analysis with direct oblimin rotation extracted a three-factor model (Behavioral Invalidation, Phenotype Invalidation, Identity Incongruent Discrimination) for 70.19% of the variance. Confirmatory Factor Analysis: The fit indices were adequate: 2(51, N = 297) = 78.47, p <.01, RMSEA = .04, CFI = .97, and TLI = .97. All items had factors loadings above .6 for each of their respective factors and were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [181] "CFA results indicated that the model provided a good fit for the data (χ² (113, N=525) 363.54, CFI=.99, RMSEA=.07) for the following four scales: Choice, Effort, Persistence, and Procrastination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [182] "The a priori 16-factor confirmatory factor model fit the data adequately according to indices of approximate fit, though the null hypothesis of exact fit was rejected, χ²(3, 365, N = 895) = 5,863.5, p < .001, root mean square error of approximation (RMSEA) estimate = .029, 90% CI (confidence interval) = [.028, .030], comparative fit index (CFI) = .935, and Tucker–Lewis index (TLI) = .931. Given the great degree of parsimony in this simple-structure model, the authors interpreted these results as support of the hypothesized structure. Loadings ranged from .35 to .94, with a median standardized loading of .76. Invariance by race was tested with a two-group factor model. This model also fit the data adequately by the authors' considerations, χ²(6, 867, N = 885) = 8,926.1, p < .001, RMSEA estimate = .026, 90% CI = [.024, .028], CFI = .935, TLI = .933."                                                                                                                                              
## [183] "EFA with varimax rotation confirmed the presence of the two 6-item factors (Integration and Perseverance), with eigenvalues higher than 1.00 and an accumulated contribution rate of 58.36%. CFA fit indices ( chi-squared(N = 871, df = 53) = 297.207, chi-squared/df = 5.608, P < 0.001, CFI = 0.950, RMSEA = 0.074, GFI = 0.944, AGFI = 0.918, PGFI = 0.641, IFI = 0.950, and SRMR = 0.037) were all adequate in accordance with the cutoff criteria; however, RMR = 0.125 > 0.05 was inadequate. The overall fit of the model was satisfactory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [184] "Results of EFA supported a 2-factor structure: Rejection of Biracial People and Forced Black Identity. CFA supported this structure. χ²(34, N = 164) = 99.19, p < .001, root mean square error of approximation (RMSEA) = 1.1, 95% confidence interval (CI) [.08, .14], comparative fit index (CFI) = .86, and Tucker-Lewis index (TLI) = .82. All items had factors loadings above .5 for each of their respective factors and were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [185] "CFA results revealed that there was no significant difference between the observed data and the model, χ²(134, N = 53) = 147.385, p = .203. The model fit indices showed the following values: goodness of fit index (GFI) = 0.769, normed fit index (NFI) = 0.873, incremental fit index (IFI) = 0.987, comparative fit index (CFI) = 0.987, and root mean square error of approximation (RMSEA) = 0.04. The CFA statistics indicated that the ADHD scale reflected the two-factor model of ADHD. The correlation between the two factors (Inattentive and Hyperactivity/Impulsivity) achieved a very good level r(51) = .79, p < .001. The standardized regression weights of the Inattention factor ranged between .77 and .93, and those of the Hyperactivity/Impulsivity factor ranged between .72 and .96."                                                                                                                                                                                                                         
## [186] "CFA yielded a 7-factor solution: Self-determined motivation, Perceived competence, Perceived autonomy, Perceived relatedness, Behavioral Intentions, Ego-Involving climate, and Task-Involving climate. The measurement model provided an adequate fit to the data, x²(56, N=335)=68.61, p>0.10, GFI=1.00; NFI=1.00; CFI=1.00; RMSR=0.04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [187] "Findings from an exploratory factor analysis (n = 235) and a confirmatory factor analysis (n = 130) revealed a two-factor structure, including a five-item Attitudes subscale and a five-item Behaviors subscale. Together, these factors explained 72% of the variance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [188] "A measurement model of five strategies (excluding 3 of the 8 overall strategies for further analyses) showed good fit: X-squared (3,N = 599) = 8.33, p = 0.04, RMSEA = 0.05, SRMR = 0.02, CFI = 0.99]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [189] "A one-factor model with 5 items showed a better fit for the adolescent sample. For the adult sample, a one-factor model with six items showed the following adjustment indexes: χ2 (9, N = 331) = 18.195, p = .033; χ2/df = 2.02; CFI = .98; TLI = .98; IFI = .98; RMSEA = .056 (IC 90 % = .015-.093); SRMR = .024. Results confirmed invariance across genders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [190] "Exploratory factor analyses extracted two factors: Integration (9 items) and Perseverance (3 items). Confirmatory factor analysis supported a 2-factor model assuming equal factor loadings over time. The overall fit of this model was generally good: chi-squared (N = 205; df = 53) = 89.55, p < .0001; CFI = .95, RMSEA = .06, and SRMR = .05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [191] "Item analysis (Dataset 1; N=1324): CFAs were conducted to assess unidimensionality. The theorised structure of the DRSEQ-RA (3 factors with a higher order factor) was compared to a single factor model. As the theorised model was a better fit to the data (χ² diff(dfdiff)=182.28(3), p<.001), IRT analyses were conducted on subscales rather than the whole scale. Smoothing parameters of 0.62, 0.85, and 0.79 were used for the Social Pressure, Emotional Relief, and Opportunistic analyses respectively due to non-monotonicity. Psychometric analyses (Dataset 2; N=1285): When the shortened scale was analysed using CFA, analyses feedback indicated the presence of negative error variances. Examination of the CFA on the total scale revealed that item 5 of the Opportunistic subscale had the least item variance (0.08). Item 5 was replaced with item 14. Item 14 had the next greatest Mokken H index score and had greater variance (0.14). The CFA on the new shortened scale showed good fit to the data."     
## [192] "Exploratory (n = 250) and confirmatory factor analyses (n = 206) supported a 5-factor solution (Positive engagement, Indirect care, Frustration, Warmth and attunement, and Control and process). The initial variance accounted for by the five factors (58.53% in total) was as follows: 26.05%, 16.70%, 6.88%, 4.66%, and 4.23%. All items loaded on their respective factors and met item retention criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [193] "The values for CFA indicated that the relevant tools have acceptable construct validity: the absolute fit indices of 1- chi-square (χ²) had a value of 596.108 (degrees of freedom (df)=139, N=1019) and CMTN/DF=4.09, 2- GFI=0.93 and 3- RMSEA=0.05. The adjusted fit indices statistic obtained: 1- CFI=0/92, 2- IFI=0/92, 3- NFI=0/90 and 4- TLI=0/90. Also, brevity fit indices statistic obtained respectively: AGFI=0.91, PCFI=0.74 and PNFI=0.73."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [194] "Multigroup confirmatory factor analysis supported the 14-factor model using data from two other independent samples: an Eastern sample from Kuala Lumpur, Malaysia (n = 229) and a Western sample from the United States (n = 214). The factors were labeled Emotional Fulfillment; Success; Empathic Consideration; Basic Health and Safety/Optimism; Emotional Opennes and Spontaneity; Self-Compassion; Healthy Boundaries/Developed Self; Social Belonging; Healthy Self-Control/Self-Discipline; Realistic Expectations; Self-Directedness; Healthy Self-Interest/Self-Care; Stable Attachment; and Healthy Self-Reliance/Competence."                                                                                                                                                                                                                                                                                                                                                                                               
## [195] "As the HCCQ is considered a 1-factor scale (Williams et al., 1996, 1998b), a confirmatory factory analysis (CFA) was conducted to corroborate previous findings. A CFA with maximum likelihood estimation showed an excellent fit following Hu and Bentley’s as well as Kline’s criteria (Hu and Bentler, 1999; Kline, 2013; Tucker–Lewis index (TLI) = .99; comparative fit index (CFI) = .99; root mean square error of approximation (RMSEA) = .06, 90 percent confidence interval (CI) (.00, .11); standardized root mean square residual (SRMR) = .02; χ² (8, N = 235) = 13.99, p = .08). The factor loadings ranged from .74 to .90."                                                                                                                                                                                                                                                                                                                                                                                               
## [196] "Thirty-five frequency items were submitted to EFA. Kaiser–Guttman criterion and scree plot initially suggested a 5-factor solution, whereas Horn’s parallel analysis initially suggested a 4-factor solution. However, when a priori factor-loading criteria were applied to both the 4- and 5-factor solutions, each solution was reduced to 25 items and 3 factors. The remaining 25 items were submitted to a second EFA which resulted in a 3-factor solution in which all items loaded strongly on their primary factors without significant cross-loadings. The factors were Proximal: Frequency, Distal: Frequency, and Muscularity: Frequency. CFA was then conducted; results indicated that the 25-item, 3-factor solution generally provided less than acceptable fit to the data. Following item elimination, a 3-item/subscale solution provided good fit according to the CFI and SRMR, and significantly improved fit according to the chi-square, χ² (24, N=771)=179.37, p<.001, CFI=.97, RMSEA=.09, SRMR=.03."           
## [197] "CFA verified a 7-factor solution: Satisfaction with life, Upward assimilative emotions, Upward contrastive emotions, Downward contrastive emotions, Downward assimilative emotions, Ability-based SC orientation, and Opinion-based SC orientation. The goodness-of-fit indices yielded by the CFA were acceptable: x² (378, N = 331) = 3972.91, p < 0.001, CFI) = 0.95, TLI = 0.93, RMSEA = 0.05 [90% CI], [0.04, 0.05]), and SRMR = 0.04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [198] "EFA was conducted on 14 items. Three eigenvalues were greater than 1, but the scree plot revealed a clear break after 2 factors. Therefore, a 2-factor solution was examined. All items except the 3 negatively worded items loaded above .60 on 1 of the 2 factors, with no cross-loadings above .15. The negatively worded items were eliminated. A second FA using the remaining 11 items yielded two factors with eigenvalues above 1, which were weakly correlated at r=.06. Scree plot and parallel analysis criterion values also supported a 2-factor solution. CFA compared the fit of a baseline 1-factor solution with that of a 2-factor model. The fit of the baseline model was less than acceptable. Most indicators for the 2-factor model, with the spiritual and physical oneness items loading on separate factors, suggested good fit: χ²(43, N=659)=266.68, p<.001; RMSEA (90% CI)=.09 (.08–.10); CFI=.96; NNFI=.95; SRMR=.07."                                                                                      
## [199] "CFA results supported the dichotomous pride model across the different samples. For the undergraduate sample (N=270), the Satorra-Bentler scaled chi-square difference test (SB χ²) showed that the dichotomous pride model provided a better fit to the data than the single pride model, SB χ²(1) = 174.60, p < .001. Akaike information criterion and sample-size corrected Bayesian information criterion were considerably lower for the dichotomous than for the single pride model, which also suggests that the dichotomous pride model is preferable to the single pride model. For the primary school student sample, SB χ²(1) = 14.90, p < .001."                                                                                                                                                                                                                                                                                                                                                                              
## [200] "CFA suggested that the DASS-21 is a measure of general distress, but also comprises three orthogonal dimensions (anxiety, depression, and stress). The bifactor model resulted the best factor solution, χ² (168, n = 417) = 271.292, p < .001; NNFI = .975; CFI = .980; RMSEA = .038."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [201] "Exploratory Factor Analysis: Summarizing, the results on the first sub-group of the general population sample (n = 260) showed that the one-factor solution met all the criteria for an optimal fit. Confirmatory Factor Analysis: The one-factor model showed an excellent fit (CFI = .98, TLI = .98, RMSEA = .05), consistent with the EFA results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [202] "The PCA of the first subsample (n=510) using a Varimax rotation reduced the eleven items of the RFQ to two components: A prevention factor with an eigenvalue of 2.75 (explaining 25% of total variance) as well as a promotion factor with an eigenvalue of 2.18 (explaining an additional 20% of total variance). With the exception of Item 3, which loaded on its factor with .46, all items exhibited loadings of .60 and higher. The two-factor model was subsequently tested in the CFA using the second subsample (n=514). The exclusion of Item 3 led to sizable improvements across all fit indices. Loadings ranged between .54 and .74 for the prevention factor and between .41 and .52 for the promotion factor, except for Item 3, which loaded very weakly on its factor with .29. After removal of Item 3, the promotion factor loadings improved slightly to between .42 and .54. The correlation of the latent factors was r=.12 with and r=.15 without Item 3."                                                       
## [203] "CFA yielded 7 factors: Environmental conservation (EC) benefits accruing in present, EC benefits accruing in future, Attitude toward nature, Human–nature balance, Supportive behavior, Active behavior, and Lifestyle behavior. The fit indices for the SEM model in all groups were at or above acceptable levels: Full sample (n = 1599): Chi-square = 4971.78 (df = 647); IFI = 0.97; TLI = 0.97; CFI = 0.97; RMSEA = 0.06; SRMR = 0.07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [204] "Factor analysis: Results indicated a two-factor solution showed an appropriate global model-fit (chi-square [53, N = 189] = 71.31, Bollen–Stine p = .164, chi-square /df = 1.35, CFI = .98, RMSEA = .04, 90% CI [.01, .07], SRMR = .04). Measurement invariance: Across genders, Δchi-square test was significant (p < .001) when comparing models B and C with a substantial decrease in CFI (Δ CFI = .03), indicating that the postulated two-factor structure was equivalent in both groups and that boys and girls show a comparable item responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [205] "Exploratory factor analysis: EFA yielded an 8-factor solution. Confirmatory factor analysis: CFA revealed a 9-factor solution after modifications, with this final model showing excellent fit: chi-square = (N = 294, df = 521) 863.136, p < .001; CFI = .91; RMSEA = .047."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [206] "Factor validity: χ² (35, N = 800) = 120.54, RMSEA = .055, 95% CI = [0.045, 0.66], GFI = .951."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [207] "CFA of the Spanish DTS replicated the original model of Simons and Gaher (2005) consisting of four lower order factors of tolerance, appraisal, regulation, and absorption that loaded onto a higher-order general factor. The hypothesized model was a good fit to the data χ² (86, N = 650) = 407.64, p<.001, CFI = .98, RMSEA = .076, WRMR = 1.02. Standardized factor loadings were all significant at p<.001 and ranged from 0.60-0.97."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [208] "Part of a larger measurement model, CFA for the hypothesized two-factor (academic buoyancy and academic resilience) model yielded a good fit to the data, x² (19, N=918)=106.51, p<0.001, CFI=0.95, RMSEA=0.071. SEM revealed the model fit the data well, x² (455, N=918)=1061.12, p<0.001, CFI=0.93, RMSEA=0.038."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [209] "EFA of the initial items revealed an 11-factor solution. After eliminating poorly performing items, CFA of the final 31-item 11-factor measurement model indicated acceptable data fit: chi-square(322, N = 590) = 720.86, p < .001, GFI = .92, CFI = .97, RMSEA = .05. The 11 factor-based constructs included: Attitudes toward customization, Subjective norms peers, Subjective norms parents, Perceived behavioural control, Intention to engage in customization, Creative choice counterconformity, Unpopular choice counterconformity, Avoidance of similarity, Customization knowledge, Budget constraint, and Time constraint."                                                                                                                                                                                                                                                                                                                                                                                                 
## [210] "CFA reveled a 9-factor solution: Utilitarian Function, Value-Expressive Function, Self-Esteem Maintenance Function, Attitudes, Subjective Norms, Collective efficacy, Intentions, Self-Esteem, Future Orientation. CFA showed that measurement model fit the data well, indicating scale items loaded on their respective factors: χ²(459, N = 516) = 1341.4, p < .001, RMSEA = .061, 90% CI of RMSEA [.057, .065], and CFI = .97, SRMR = .057. The second step estimated both the measurement model and a structural model. The model fit the data well: χ²(608, N = 516) = 1645.6, p < .001, RMSEA = .058, 90% CI of RMSEA [.054, .061], CFI = .97, and SRMR = .07."                                                                                                                                                                                                                                                                                                                                                                    
## [211] "CFA of a randomly generated sub-set of the data (n=761) yielded reasonably good fit to the data (Model χ²=6187.226, df=2211, χ²/df=2.798, NFI=0.887, TLI=0.920, CFI=0.924, SRMR=0.038, RMSEA=0.040, RMSEA 90% confidence interval=0.047-0.050, PCLOSE=0.940). Despite all standardized loadings being significant, the NFI, TLI, CFI, and the χ² ratio were not quite at generally accepted criteria. Inspection of the modification indices suggested opportunities to improve model fit by deleting a number of redundant items. Apart from retaining all nine engagement items, three to six items with high loadings and smaller modification indices were retained for each measured construct. The re-specified CFA yielded improved and acceptable fit (χ²=3160.453, df=1259, χ²/df=2.510, NFI=0.921, TLI=0.946, CFI=0.951, SRMR=0.034, RMSEA=0.045, RMSEA 90% confidence interval=0.043-0.047, PCLOSE=1.00). The structural model yielded good fit to the data: χ²=4942.231, df=1285, χ²/df=3.846."                               
## [212] "EFA and CFA revealed 4 main factors (Formal safety program, Informal Aspects of Safety, Operations Personnel, Organizational commitment) and 11 subfactors (Reporting system, Safety personnel, Accountability, Pilots' authority, Professionalism, Chief pilots, Dispatch, Instructors/trainers, Safety values, Safety fundamentals, Going beyond compliance). Reliability and unidimensionality (i.e., fit to a single-factor model) were tested for each of the regrouped subscales for which there were sufficient data available in the existing data set (fit could not be tested for the safety personnel, dispatcher, and instructor scales because these contained too few items): x²( 1,238, N = 427) = 2246.95, p < .001; RMSEA = .04, NFI = .80, TLI = .89, RNI = .90."                                                                                                                                                                                                                                                       
## [213] "Construct validity was established through factor analysis (PCA; N=362). Four factors emerged and were named as Interactional Problems, Educational Problems, Fear of being Ridiculed and Psychological/Personal Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [214] "A series of CFAs with structural equation modeling were conducted. Following the removal of items with very low beta weights and percentage of variance, a CFA on the remaining items of the 2 factors and an additional factor that asked about deterioration in neighborhood environment was conducted. Although the chi square continued to be significant, χ²(149, N = 163) = 206.552, p < .001, there was an improvement in the other indexes (eg, CFI = .91, RMSEA - .05, TLI = .90). in terms of ease of comparison with US samples in which the 2-factor solution has been used, the authors made the decision to keep the 2 factors distinct and to simply add the Deterioration in the Neighborhood factor."                                                                                                                                                                                                                                                                                                                    
## [215] "First order confirmatory analyses showed that the comparative fit indexes for the physical, psychological, social and environmental domains were 0.945, 0.948, 1.0 and 0.837, respectively. CFI of the second order analysis was 0.898 (X = 447,744 with 235 degrees of freedom, N = 301, p < 0.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [216] "PCA: Items related to the CPAP device loaded most strongly on one factor across the scales. This dimension was therefore labelled the Device subscale. Items related to symptoms of the CPAP treatment loaded on the other factor. This was labelled the Symptom subscale. Even though the factor solutions were similar across the scales, a large amount of items (n = 8) in the Frequency scale demonstrated communality values <0.3. The Frequency scale also demonstrated lower total explained variance (33%) than the Magnitude scale (40%) and the Impact scale (46%). The cross-validation of the factor models (i.e. a random split of the sample in two groups followed by a new PCA) demonstrated that the factor structure was fully reproduced for the Magnitude scale and the Impact scale. However, the factor structure was not reproduced for the Frequency scale as five items loaded on different factors compared with the factor analysis on the whole sample."                                                     
## [217] "Confirmatory Factor Analysis: CFA used Structural Equation Modeling (SEM) to assess two competing hope models (i.e., enhanced hope, peaceful hope). Results confirmed a higher-order model comprised of enhanced hope and peaceful hope. The model combined four factors (Agency thinking and Pathway thinking for enhanced hope, Transcendental adaptation and Persisting effort for peaceful hope), with acceptable fit indices demonstrated: NNFI = .98; RMSEA = .06; SRMR = .06; chi-square (72, N = 665) = 252.99, p <.001. Factor loadings were between .54 and .90, with all reaching statistically significant levels (all Ps < .001)."                                                                                                                                                                                                                                                                                                                                                                                           
## [218] "CFA yielded 6 factors: Goal Setting, Environment Structuring, Task Strategies, Time Management, Help Seeking, and Self-Evaluation. Results indicated χ²(224) =346.642, p < .000, CFI = .977, TLI = .971, RMSEA = .036 (N = 412); χ²(221) = 412.878, p < .000, CFI = .959, TLI = .949, RMSEA = .048 (N = 374). Thus, the sample provided an acceptably good fit of the data to the model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [219] "Exploratory factor analysis: EFA yielded a 3-factor solution explaining 43.7% of the variance. Confirmatory factor analysis: CFA supported the 3-factor structure in both subsamples: chi-square dif(4, n = 359) = 79.534 and chi-square dif(4, n = 361) = 61,658."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [220] "Confirmatory Factor Analysis: The four-factor model (Plausibility, Completeness, Consistency, Coverage) exhibited good fit, S–B χ2 =(48, N =474)=104.14, p<.001, RMSEA=.05 (90% CI: .037–.063), NNFI=.99, CFI=.99."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [221] "The authors tested the five-factor model presented in the manual of the HCTA test through a CFA to analyze its factorial structure. They tested a measurement model (M1) and analyzed its goodness-of-fit. Scores for the free-recall items in all five dimensions were hypothesized to load on a latent factor designated (CTfree), while scores for the multiple-choice items in all five dimensions were hypothesized to load on a latent factor designated (CTrec). The indices considered to decide on the model's goodness- of-fit supported the five-factor structure presented for the original HCTA test with acceptable (PCFI and PGFI) to good (χ²/df, CFI, GFI, and RMSEA) fit. The goodness-of-fit was slightly lower in our sample, yet, accomplished (χ²[29, n = 334] = 58.6, p = .001; χ²/df = 2.02; CFI = .929; PCFI = .599; GFI = .966; PGFI = .509; RMSEA[CI90%] = .055[.035; .076]). For test of close fit (RMSEA < .05) = .308, SRMR = .0438."                                                                       
## [222] "Confirmatory Factor Analysis: The hypothetical model consisted of five correlated latent variables: 1) Describe (5 items), 2) Act with awareness (5 items), 3) Nonjudge (5 items), 4) NonReact (5 items), and 5) Observe (4 items). The measurement errors of the items were not allowed to correlate. The solution showed adequate fit indices, Satorra-Bentler chi-square(242, n = 265) = 742, p < .001; RMSEA = .08, 90% CI [.07, .09], CFI = .93, NNFI = .92. All the factor loadings were statistically different from zero and higher than .40 (values between .44 and .95) except for items 8 and 11, which were somewhat lower (.34 and .28, respectively)."                                                                                                                                                                                                                                                                                                                                                                      
## [223] "Exploratory Factor Analysis: The results informed a one-factor solution in the first study that accounted for 60.7% of common variance. Confirmatory Factor Analysis: In Study 2 (n = 1041), the analysis showed that the single-factor and the four-factor models showed satisfactory and adequate goodness of fit indices, respectively. This analysis demonstrated that the four-factor structure (Individualized Consideration, Idealized Influence, Intellectual Stimulation, and Inspirational Motivation) of transformational teaching with a high second-order factor, previously found in Canadian adolescents, was replicated in this study. Evidence of measurement invariance across gender groups was also obtained."                                                                                                                                                                                                                                                                                                        
## [224] "Exploratory Factor Analysis: Fit indices for the EFA suggested that a two-factor solution with nine items best fit the data, chi-square(19, N = 89) = 22.59, p = .26, CFI = .99, TLI = .99, RMSEA = .05, 90% CI [.01, .11], SRMR = .02. Confirmatory Factor Analysis: The full sample model indicated a nine-item, two-factor model fit the data best, chi-square(23, N = 298) = 71.46, p < .001, CFI = .98, TLI = .97, RMSEA = .08, 90% CI [.06, .11], SRMR = .03. A second-order model and a higher order global score model did not fit the data better than the two-factor model."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [225] "CFA revealed an 8-factor solution: Egoistic Values, Biospheric/Altruistic Values, Perceived Consumer Effectiveness, Perceived lack of climate-change knowledge, Pro-Environmental Self-Identity, Social Consumption Motivation, Buying, and Curtailment. The results for the multi-group measurement model demonstrated acceptable fit: χ2(586) = 1910.47, p ≤ 0.001, χ2/df= 3.26, CFI =0.91, TLI= 0.90, RMSEA = 0.038, critical N = 515 at p =0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [226] "CFA was conducted on an eight-factor model that included non-work creative activity, recovery experiences, job creativity, organizational citizenship behaviors, and openness to experience. The model had adequate fit with chi-squared(413, N = 341) = 990.60, p < .001, SRMR = .06, CFI = .94, and RMSEA = .06. The authors also compared the eight-factor model with different models that had the creative activity items load onto one of the remaining factors. No other model tested had adequate fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [227] "Confirmatory Factor Analysis: The CFNI-45 nine-factor model (Relational, Sweet and Nice, Invest in Appearance, Domestic, Romantic Relationship, Modesty, Sexual Fidelity, Thinness, and Care for Children) surpassed or approximated cutoffs for acceptable fit on all indicators, χ2(909, N = 243) = 1,384.55, p < .001, RMSEA = .044, 90% CI: .042, .051, SRMR = .0647, CFI = .89. All factor loadings for this model were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [228] "Overall fit of the original 3-factor model including all 14 items was insufficient. Therefore, EFA was conducted, revealing 4 factors (i.e., Sexual Excitation Scale 1, Sexual Excitation Scale 2, Sexual Inhibition Scale 1, and Sexual Inhibition Scale 2). As Item 9 showed substantial double loadings with the third factor, it was excluded from further analyses. Another CFA using the complete sample indicated a good fit of the 4-factor 13-item model, χ²(59, N = 2,661) = 664.026, p < .001, CFI = .969, RMSEA = .062."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [229] "EFA and CFA were conducted using a split-sample technique. Results revealed that five factors (extraversion, agreeableness, conscientiousness, emotional stability, and openness) accounted for 76.01% of the total variance. The items were grouped according to the original structure of TIPI with the exception of one. CFA of the proposed model did not fit the data adequately. CFA of a revised model that correlated items previously shown to cross-load fit the data well: χ2(25, N = 200) = 46.55, CFI = 0.94, SRMR = 0.06, RMSEA = 0.07, P(rmsea ≤ 0.05) = 0.18, with factor loadings above 0.37, ps < 0.001."                                                                                                                                                                                                                                                                                                                                                                                                               
## [230] "Part of a larger measurement model, the indicators of the constructs included in the CFA were their respective items. The overall model provided satisfactory fit to the data ( x²[df = 377, N = 286] = 816.49 ; RMSEA = .06; CFI = .92; SRMR = .06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [231] "Part of a larger measurement model, the indicators of the constructs included in the CFA were their respective items. The overall model provided satisfactory fit to the data ( x²[df = 377, N = 286] = 816.49 ; RMSEA = .06; CFI = .92; SRMR = .06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [232] "As part of a larger measurement model, the indicators of the constructs included in the CFA were their respective items. The overall model provided satisfactory fit to the data ( x²[df = 377, N = 286] = 816.49 ; RMSEA = .06; CFI = .92; SRMR = .06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [233] "Part of a larger measurement model, the indicators of the constructs included in the CFA were their respective items. The overall model provided satisfactory fit to the data ( x²[df = 377, N = 286] = 816.49 ; RMSEA = .06; CFI = .92; SRMR = .06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [234] "CFA of the single-factor structure using mothers' data (14 items) showed acceptable fit of the model to the data: χ2[71, N=303]=181.29, χ2/df=2.55, RMSEA=0.072, GFI=0.92, CFI=0.90, AGFI=0.87. Fit indices were acceptable for fathers' data (14 items) as well: χ2[71, N=303]=192.57, χ2/df=2.71, RMSEA=0.075, GFI=0.92, CFI=0.93, AGFI=0.88."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [235] "EFA and CFA revealed a 3-component measure with 3 separate subscales: Exhaustion, Cynicism, and Professional efficacy. Results showed that the model fit the data well: ΔCFI = -0.009, ΔRMSEA = 0.000, and ΔSRMR = 0.004. Structural invariance (M4) was also supported because adding additional constraints to M3 did not change the fit significantly: ΔCFI = -0.004, ΔRMSEA = 0.002, and ΔSRMR = 0.004. LPA was tested with two-six profiles, revealing Profile 1 (n = 2665, 34.2%) labeled as “burned-out” as it had high levels of EX, CY, and low PE. Profile 2 (n = 3953, 51.0%) was labeled as “overextended” as it had (moderately) high levels of exhaustion, moderate other. Finally, profile 3 (n = 1149, 14.8%) was labeled as “engaged” as it had moderate EX, low CY, and high PE."                                                                                                                                                                                                                                       
## [236] "Exploratory factor analysis: EFA yielded a 2-factor solution Confirmatory factor analysis: CFA confirmed the model, revealing an adequate fit to the data, χ2 (53, N=220)=137.86, CFI=0.93, RMSEA=0.09."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [237] "Confirmatory Factor Analysis: The CFA of the six-factor model showed the model had an acceptable degree of fit for the IGD-20 Test: X2 (155, n = 1074) = 769.07, p < .0001; CFI = .93; TLI = .92 RMSEA = .05 (90% CI: .053-.062)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [238] "All 56 initial items were entered into an EFA with Varimax rotation. Four factors were extracted: Lack of Symptomatic Behavior (LSB); Acceptance of Self and Body (ASB); Social and Emotional Connection (AEC); and Physical Health (PH). In an attempt to shorten the questionnaire and to eliminate items that loaded onto more than one factor, the seven highest loading items of each subscale were selected. A Varimax rotation was used in a further EFA and restricted to a four-factor solution. The factors had Eigen values of 7.57, 4.22, 4.09, and 2.78, respectively, with a cumulative explained variance of 66.64%. Item factor loading was restricted to >0.30 and seven items loaded onto each factor. CFA verified this 28-item four-factor model with excellent fit to the data: χ2(314, N = 224) = 493.63, p > 0.001; CFI = 0.96; RMSEA = 0.05; standardized RMR = 0.06."                                                                                                                                            
## [239] "Principal axis factor analysis (PAF)/Principal Components Analysis: PCA was conducted supporting the retention of five factors, and the deletion of items to suggest a 5 factor, 21-item solution. Confirmatory Factor Analysis: Replicability was assessed using the confirmation sample. Multigroup CFA was conducted to test the invariance of the factor loadings in the five-factor model across the development and confirmation samples. Results revealed that the five-factor CFA model produced equivalent factor loadings for the two samples, Δχ2 (16, N=646) = 23.16 ,p=.11, thus strongly supporting the cross-sample generalizability of the five-factor measurement model. Furthermore, Replicating earlier results the five-factor CFA model fit the pooled sample well, χ2 (179,N=646 = 923.73, RMSEA=.082, SRMR=.063, CFI=.95, NNFI=.94, there by demonstrating that the five factors provide acceptable fit for the 21items in the pooled sample."                                                                     
## [240] "EFA and CFA revealed a 3-factor solution: Stress, Anxiety, and Depression. The fit indexes of the model with 21 item and triple structure were examined and minimum chi-square value was significant [χ2 (39, N= 101) =74.57, p=0.00)]. Fit index values were found as GFI=0.951, CFI=0.956, TLI=0.925, RMSEA=0.044, SRMR=0.046, supporting structural (construct) validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [241] "Confirmatory Factor Analysis: CFA was conducted separately for perpetration and victimization using AMOS18 resulting in a four-factor structure. The findings of CFA were cross-validated with an independent sample of older dating college students. The results showed an adequate model fit, χ2 (344, N = 328) =1,097.35, Bollen-Stine corrected p = .00; χ2/df ratio = 3.19; RMSEA = .08 (90% CI = .08,.09); SRMR = .07; CFI = .83. The bootstrapped standardized factor loadings ranged between .49 and .72 for RE, .45 and .85 for DEN, .56 and .84 for HW, and .37 and .81 for D/I (Table 3). Only item 27 (13%) was below the 20% explained variance criterion for squared multiple correlations. None of the ITCs was below .30. In short, the four-factor structure was cross-validated with an older sample of dating college students and the results provided further empirical evidence for construct validity of the MMEA-TR."                                                                                            
## [242] "Exploratory Factor Analysis: EFA extracted four factors that explained 51.465% of the variance. Confirmatory Factor Analysis: CFA verified the four-factor model: chi-square (N = 1647) = 1407.011 (p < 0.001), goodness-of-fit (GFI) = 0.917, adjusted goodness-of-fit (AGFI) = 0.894, root-mean-square error of approximation (RMSEA) = 0.068, root-mean-square residual (RMR) = 0.029, normed fit index (NFI) = 0.916, normed fit index (NFI) = 0.916, comparative fit index (CFI) = 0.925, and incremental fit index (IFI) = 0.925."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [243] "Exploratory Factor Analysis: EFA of 10 items extracted two factors explaining 34% and 15% of the variance, respectively. Although there was a third possible factor, it only explained 10% of the variance and had only two items loading onto it. Because the scree plot suggest two meaningful factors, a two-factor solution for the 10 items was selected: Self-Evaluations of Patience and Importance of Patience. Confirmatory Factor Analysis: The validity of the two-factor solution was verified via CFA. The two-factor model yielded a large and significant chi-square: chi-square(34, N = 323) = 127.41, p < .001. The CFI was also acceptable (.92), as was the RMSEA (.098)."                                                                                                                                                                                                                                                                                                                                             
## [244] "Confirmatory Factor Analysis: CFA yielded the following fit statistics, which were indicative of good construct validity: chi-square (N = 1647) = 898.412 (p < 0.001); GFI = 0.933; AGFI = 0.906; RMSEA = 0.071; RMR = 0.017; NFI = 0.935; CFI = 0.941; and IFI = 0.941."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [245] "Confirmatory Factor Analysis: CFA yielded the following fit statistics, which provided support for the measure's validity: chi-square (N = 1647) = 2590.141 (p < 0.001); GFI = 0.872; AGFI = 0.840; RMSEA = 0.085; RMR = 0.026; NFI = 0.935; CFI = 0.942; and IFI = 0.942."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [246] "Exploratory Factor Analysis: EFA extracted four factors. Confirmatory Factor Analysis: After an initial CFA, the modification indices of the model indicated a good fit χ2(318, N=453) 465.45, pb0.000, χ2/df=1.46, GFI=0.93, NNFI=0.94, NFI=0.84, CFI=0.94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [247] "Confirmatory Factor Analysis: CFAs using a split-sample technique provided robust support for the hypothesized six-factor model (Physical TV, Social TV, Verbal TV, CyberTV, Sexual Harassment, and Personal Property Offenses). In the first half of the sample, chi-squared=632.87 (df=246, N=846), p<.001; CFI=.921, RMSEA=.043, 90% CI=[.039, .047], and SRMR=.036. In the second half, chi-squared=655.14 (df=246, N=842), p<.001; CFI=.930, RMSEA=.044, 90% CI=[.040, .049], and SRMR=.038. Although support for a four-factor model was also obtained, the six-factor second-order model was selected because it is more parsimonious and consistent with conceptualizations of TV."                                                                                                                                                                                                                                                                                                                                               
## [248] "Exploratory Factor Analysis: EFA yielded a five-factor solution: Openness to changes at work, Work and career proactivity, Career motivation, Work and career resilience, and Work identity. The five factors associated with this solution accounted for 57.26% of the variance collectively, and 21.83, 15.17, 8.10, 6.44, and 5.72% of the variance, respectively. Confirmatory Factor Analysis: The baseline five-factor measurement model fit the sample data: chi-square(265; N = 200) = 604.20, p < .001; CFI = .91; IFI = .91; and RMSEA = .08. All parameter estimates were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [249] "Exploratory Factor Analysis: EFA of items tapping autonomy support, coercion, warmth, and hostility ultimately yielded a two-factor solution with eigenvalues of 6.88 and .3.64, explaining a total of 46% of the variance. EFA of items tapping structure and chaos yielded a two-factor solution with eigenvalues of 4.35 and 1.45, explaining 48% of the total item variance. Confirmatory Factor Analysis: CFA verified the final four-factor model, which showed a good fit to the data on most indicators: χ²(230, N = 221) = 406.43, p < .001, χ²/df = 1.8, CFI = .93, RMSEA = .059 (90% CI .050 to .068, p = .06). ESEM identified a small number of cross-loadings for two of the four factors, however there was still support for maintaining them as separate subscales. This model fit the data well, and was a significant improvement over the four-factor model with no cross-loadings: χ²(220, N = 221) = 363.93, p < .001, χ²/df = 1.7, CFI = .94, RMSEA = .055 (90% CI .044 to .064, p = .22)."                        
## [250] "Exploratory Factor Analysis: A series of EFAs were employed to produce a three-factor model. All items with a factor loading above 0.6 (with the exception of two items with loadings above 0.45) were retained in a final EFA. Confirmatory Factor Analysis: CFA of competing models showed the three-factor model fitted the data well: chi-square (df=50,N=322)=123.05; chi-square/df=2.5; GFI=0.94; RMSEA=0.07 (90 % confidence interval=0.05–0.08); NFI=0.91; CFI=0.95. The fit of a second-order model was identical, showing that it is plausible that a single second-order factor accounts for the associations among the three lower-order factors."                                                                                                                                                                                                                                                                                                                                                                            
## [251] "Confirmatory Factor Analysis: The six-factor model (Emotional Functioning, Physical Functioning, Teasing/Marginalization, Positive Social Attributes, Mealtime Challenges, and School Functioning) produced an acceptable to very good fit to the data (x2=287.112, n=154, p<.001, RMSEA=0.055, CFI=0.971, TLI=0.966). However, the higher-order model assessing Total HRQOL did not reach acceptable levels, as results found that the Positive Social Attributes (PSA) subscale was not representative of Total HRQOL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [252] "Confirmatory Factor Analysis: CFA demonstrated that the DAQ-6 consists of two factors. CFA fit statistics supported an adequate fit of the data to a two factor model (CFI=.986; NFI=.972; TLI=.974; RMSEA=.092; GFI=.957). Similar results were found when the model was run with the nontransformed data, χ2(8, N=106)=14.46, p=.07 (CFI=.988; NFI= .974; TLI=.978; RMSEA=.088; GFI=.958). It should be noted that though the CFI, NFI, TLI and GFI values were all indicative of adequate model fit, the RMSEA value was slightly inflated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [253] "Confirmatory factor analysis: CFA yielded a one-factor solution. The model fit of one factor with four items was good, with chi-square(df = 2, N =264)=5.78, standardized root mean square residual (SRMR) = .025, non-normed fit index (NNFI) = .99, comparative fit index (CFI) = .99, and incremental fit index (IFI) = .99."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [254] "Confirmatory Factor Analysis: CFA using structural equation modeling showed a model fit for the four total domains of chi-squared (371, N = 129) = 936.34, p < .00, CFI = .93, GFI = .90, NFI = .88, RMSEA = .11. NFI and RMSEA were not satisfied at the recommended criterion levels; the other indicators did suggest a good fit. The researchers accepted the Turkish PICCOLO as having adequate fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [255] "Principal component analysis with varimax rotation was used. The Kaiser-Meyer-Olkin found value was .74, and the Bartlett Test of Sphericity reached a statistical significant value of p < 0.001, x²(66, n = 200) = 618.67. The results yielded a 3-factor solution based on the selection of the eigenvalues larger than 1.0 which account for 55.39% of total variance explained. CFA confirmed the 3-factor structure. When a second-order factor (commitment) was added, the goodness-of-fit indexes still displayed very good values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [256] "Confirmatory Factor Analysis: After reversing Item 5, the results of the 7–item model yielded acceptable fit indexes: χ2(14, N = 398) = 45.91, p < .001; χ2/df = 3.28, CFI = .98; TLI = .96, IFI = .98, RMSEA = .076; 90% CI [.052, .101]; SRMR = .032. Measurement Invariance: Invariance across BMI was only partial, as significant differences were found between the unconstrained model and some of the invariant models."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [257] "Exploratory factor analysis: Results of the EFA revealed that a 4-factor solution in both the FOS–Sexual Intercourse and FOS–Oral Sex Subscales, accounting for 62.05% and 62.28% of the total variance, respectively. Confirmatory factor analysis: CFA on a separate sample of 398 heterosexual female undergraduates confirmed the factor structure of each subscale with excellent fit statistics for the FOS–Sexual Intercourse Subscale (Satorra– Bentler x²(521, N=312)=887.51, p\\.001, CFI=.95, RMSEA=.048 (90% CI=.042–.053)) and Satorra–Bentler x²(203, N=335)=432.00,p\\.001,CFI=.95,RMSEA=.058(90% CI=.050–.066) for the FOS–Oral Sex Subscale."                                                                                                                                                                                                                                                                                                                                                                            
## [258] "Exploratory Factor Analysis: EFA extracted four factors explaining 66.3% of the common variance. Confirmatory Factor Analysis: The fit of the four-factor model was acceptable—S-B chi-square (84, N = 809) = 472.9, p < .001, CFI = .92, IFI = .92, SRMR = .070, RMSEA = .076 (90% CI = .069 ~ .082), AIC = 304.9, CAIC = -173.5."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [259] "Exploratory Factor Analysis: A 3-factor structure was determined: Conflict, Closeness, and Dependency. Confirmatory Factor Analysis: The fit of the final model was adequate: χ2 (206, n = 628) = 930.24, p < .001, RMSEA = .075, and CFI = .95."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [260] "Confirmatory factor analysis: The 7-factor CFA solution showed an acceptable fit in the validation sample (n = 4962), χ2 (254) = 3326.652, p < .001; CFI = .956; TLI = .948, RMSEA = .049 [90% CI: .048, .051], as well as invariance across age groups. Structural equation modeling: Importantly, a constrained SEM was not statistically different from an unconstrained SEM (i.e., Δχ2 (63) = 85.917, p = .029; ΔCFI = +.005), thereby attesting to the invariance across late childhood, early adolescence, and middle-late adolescence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [261] "Exploratory factor analysis: A visual scree test (Cattell, 1966) indicated that three factors emerged before the elbow of the scree plot of eigenvalues with the eigenvalues for the first three unrotated factors (i.e., virtue–admiration, dominance–fear, and competence–respect) to be 99.02, 19.67, and 15.93, representing 53.97, 10.72, and 8.68% of the total variance, respectively. Confirmatory factor analysis: CFA confirmed that the three-factor structure of the SAS is a significantly better model (chi-square (87, N = 340) = 217.25, p < .001, CFI = .96, RMSEA = .067, SRMR = .074, AIC = 283.25) than the two-factor model that places virtue– admiration as a component of competence–respect."                                                                                                                                                                                                                                                                                                                    
## [262] "Exploratory Factor Analysis: EFA yielded a four-factor solution accounting for 44% of the item variance after five iterations. Confirmatory Factor Analysis: CFA cross-validated the EFA results. The four-correlated factor model yielded mixed results. A model including correlated error terms for a pair of items in the Difficult Transition factor fitted the data well—chi-square (128, N = 202) = 148.81, p = .100; RMSEA = .028 [90% CI = .000, .046]; SRMR = .061; CFI = .928; TLI = .914."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [263] "Exploratory Factor Analysis: Parallel analysis results suggested a one-factor solution. A one-factor solution was also indicated by the scree plot. Confirmatory Factor Analysis: The CFA model con strained the 12 CGS items to load onto a single factor. The fit statistics for this CFA model were as follows: chi-square(54, N = 218) 134.90, p < .001, CFI .956, SRMR .033, RMSEA .083 (90% CI [.066, .101]). Based on the general guidelines (Hu & Bentler, 1999), the CFI, SRMR, and RMSEA all indicated a good data to model fit. Measurement Invariance: Multiple-Group CFA overall results indicate that the CGS demonstrated measurement and structural invariance between men and women in this sample."                                                                                                                                                                                                                                                                                                                     
## [264] "Exploratory factor analysis: EFA revealed a 2-factor solution. Confirmatory factor analysis: CFA yielded this factorial structure presented adequate goodness-of-fit indexes, chi-square (43, N = 574) = 1.32, p = .078, CFI = .99, RMSEA = .024 [.000, .039], SRMR = .029."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [265] "Principal Factor Analysis: PFA of 42 candidate items yielded three factors with eigenvalues greater than 1. The first factor (eigenvalue = 21.40) accounted for 77.4% of the common factor variance. The 10 strongest loading items on the first factor (range = .815–.867) were included in the QVC. Confirmatory Factor Analysis: After freeing the covariances for three pairs of items, fit indices for the final CFA model indicated good fit for the one-factor solution: χ2 (32, N = 224) = 66.41, p = .0003, CFI = .980, SRMR = .021, RMSEA = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [266] "Confirmatory factor analysis: CFA yielded four first-order factors. This model showed a good fit, chi-square (155, N = 1417) = 1184, RMSEA = .065 (90% I.C. = .062 - .069), NNFI = .990, CFI = .992. Moreover, hierarchical models indicated that these factors could be explained by broader dimensions of psychological vs. physical aggression, and aggression against mother vs. father."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [267] "Confirmatory Factor Analysis: CFA of a revised model confirmed better fit, χ2(180, N = 235) = 312.49, p = .00 (GFI = 0.90; CFI = 0.98; NNFI = 0.97; RMSEA = 0.052; standardized RMR = 0.049)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [268] "Principal Component Analysis: PCA was separately conducted for each subscale. Results showed that eigenvalues of each of the first unrotated factors were large (strict-father: 6.15, representing 41% of the variance; nurturant-parent: 5.59, representing 39.9% of the variance), suggesting that each subscale represents a unified concept. Confirmatory Factor Analysis: CFA with Varimax rotation was conducted on all 29 items. Results confirmed the conceptual independence of the subscales as distinct aspects of 2 independent belief systems. Moreover, CFA results indicated good model fit: chi-square (19, N = 1,586) = 86.612, RMSEA = .047, 90% confidence interval (CI) [.038, .058], P closefit = .646, CFI = .988, TLI = .982."                                                                                                                                                                                                                                                                                     
## [269] "Exploratory Factor Analysis: EFA, using principal axis factoring, extracted one factor based on parallel analysis, to understand the shared variance among the 31 items. The scree plot confirmed that the single factor accounted for 61.11% of the variance. Item reduction examined items for redundancy, and identified those that captured the essence of the domain, conveying both conciseness and ease of readability. The resulting 10-item CS-LEAD instrument underwent additional EFA, showing the single factor accounting for 58.00% of the variance. Item loadings ranged from .65 to .86. Confirmatory Factor Analysis: CFA with maximum likelihood estimation showed results suggesting good fit for the 10-item CS-LEAD: chi-square (35, N = 154) = 69.92, p< .001, root mean square error of approximation = .08; 90% confidence interval [.05, .11], CFI = .95, TLI = .93, SRMR = .04. Local fit indices showed all 10 items loading strongly on the leadership factor. Item loadings ranged from .46 to .82."         
## [270] "Exploratory factor analysis: EFA yielded a 2-factor solution that explained 59.97% of the total variance. Confirmatory factor analysis: CFA results corroborated the pertinence of a two-factor solution [chi-square (42, N = 400) = 86.91, p <0.05; chi-square/ gl = 2.06; NFI = 0.96; TLI = 0.97; CFI = 0.98; GFI = 0.96; AGFI = 0.94; RMSEA (CI) = 0.05 (0.03-0.06)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [271] "Confirmatory factor analysis: CFA revealed a 12-item 3-factor solution: chi-square (74, n = 236) = 163.64, RMSEA = 0.072, CFI = 0.94, NFI = 0.91, TLI = 0.92, GFI = 0.92, and AGFI = 0.87. Structural equation model: The indices showed that this model was fit for TSWLS: chi-square (48, n = 236) = 82.06, RMSEA = 0.055, CFI = 0.97, NFI = 0.94, TLI = 0.84, GFI = 0.95, and AGFI = 0.91."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [272] "Confirmatory Factor Analyses: A six-factor model was a significantly better fit to the data than the three-factor model: For mothers, Chi-squared (12, N = 323) = 180.79, p < .001 for the derivation subsample and Chi-squared (12, N = 322) = 212.90, p < .001 for a replication subsample; and for fathers, Chi-squared (12, N = 283) = 288.30, p < .001, for the derivation subsample, and Chi-squared (12, N = 284) = 180.37, p < .001, for a replication subsample. The other indexes suggested that the six-factor model was a satisfactory fit to the data, with GFIs and AGFIs that exceeded or approached the recommended levels of .85 and .90, respectively; CMIN/DFs that were less than 3; RMSEA values at or only slightly above .05; and Hoelter values that approached 200. This pattern of results was found for both mothers and fathers."                                                                                                                                                                             
## [273] "CFA/SEM: A six-factor model was a significantly better fit to the data: For the derivation subsample, Chi-squared (12, N = 1247) = 3,634.60, p < .001; the replication-1 subsample, Chi-squared (12, N = 1274) = 2,673.86, p < .001; and the replication-2 subsample, Chi-squared (12, N = 1223) = 2960.90, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [274] "Confirmatory factor analysis: Child sample: CFA results showed that the single factor model provided a good fit to the data: The chi-square value did not reach significance, chi-square(5, N = 527) = 9.83, p = .08; the TLI and CFI values were .99; and the RMSEA and SMSR were .043 and .015, respectively. All factor loadings were significant (ps < .001) and ranged from .64 to .82. To test the one-factor structure of the PINTS, the omega hierarchical was calculated. Results from the omega function of the psych package (Revelle, 2018) in R (R Core Team, 2018) indicated further support for the unidimensional model, with a general RNT factor explaining 91% of the common variance among the 5 items. Adult sample: As with the child sample, a one-factor CFA indicated by the 5 PINTS items was tested. The TLI value of .97, CFI value of .99, and SMSR value of .019 indicated that model fit was adequate."                                                                                                    
## [275] "Exploratory Factor Analysis: PCA of the 11 creative potential and practised creativity items along with six POS items suggested a clear factor structure for each construct with high factor loadings and virtually no significant cross-loadings for any of the items. Confirmatory Factor Analysis: CFA verified the three-factor model, which showed better fit than alternative one- and two-factor models (chi-square [116, N = 335] = 280.66, GFI = 0.92, NNFI = 0.94, IFI = 0.95, CFI = 0.95)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [276] "Exploratory Factor Analysis: The final three factor structure accounted for 55.2% of the variance in the data. Confirmatory Factor Analysis: CFA fit statistics for the 27-item MEWS suggested that the three-factor model suggested acceptable fit to the data: χ2 (321, N = 303), = 1226.30 p < .001, CFI = 0.76, SRMR = .087, RMSEA = .097, 90% [.091, .102]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [277] "Exploratory Factor Analysis: The final iteration produced a four-factor solution accounting for 51.3% of the variance. Confirmatory Factor Analysis: A CFA of the 24-item ECOS produced acceptable model fit, χ2 (246, N = 145) = 451.70, p < .001, NNFI = 0.91, CFI = 0.92, SRMR = .089, RMSEA = .079 (90% CI: .068−.090). Measurement Invariance: The two-groups measurement model with freely estimated model parameters also demonstrated acceptable fit, χ2 (492, N = 267) = 900.88, p < .01, NNFI = 0.91, CFI = 0.92, SRMR = .090, RMSEA = .081 (90% CI: .073−.089)."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [278] "Principal Component Analysis: PCA, using a subsample (n = 258), tested whether the beauty myth beliefs represent separate components. Results yielded 4 factors with eigenvalues greater than 1, accounting for 70.39% of the variance; a scree test also suggested 4 factors. Confirmatory Factor Analysis: CFA, informed by the EFA results, used a second subsample (n = 269) to determine factor structure. Results showed good model fit to the data, supporting the 4-factor structure: chi-square (48, n = 269) = 103.33, p < .001, nonnormed fit index (NNFI) = .948, CFI = .962, standardized root mean square residual (SRMR) = .058, and root mean square error of approximation (RMSEA) = .056. All standardized factor loadings were above .56. (with the majority in the .70s)."                                                                                                                                                                                                                                            
## [279] "Factor analysis: A two-factor model representing PCBD Criterion B and Criterion C provided a good fit to the data, chi-square(366, N = 367) = 789.670, CFI = .911, Tucker-Lewis Index (TLI) = .904, root mean square error of approximation (RMSEA) = .055, 90% CI [.050, .060], standardized root mean square residual (SRMR) = .047."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [280] "Exploratory factor analysis: PCA revealed a two-factor solution after rotation, the first factor accounted for 21.5% of the variance, while the second factor accounted for 18.3% of the variance. Confirmatory factor analysis: Fit indices indicated a good fit for the two-factor solution (chi-square (115, N = 1,703) = 822.45, p < .0001, GFI = .94, CFI = .91, RMSEA = .06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [281] "Exploratory factor analysis: PAF revea;ed a 3-factor solution that accounted for 70.59% of the total variance and 57.65% of the extracted rotated variance. Confirmatory factor analysis: CFA revealed all three factors loading on a second-order factor fit the data: chi-square (32, N = 246) = 117.64, CFI = .88, RMSEA = .11, AIC = 183.64."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [282] "Exploratory factor analysis: EFA yielded a 2-factor solution with eigenvalues of 5.62 and 1.39 representing 40.11% and 9.95% of the variance, respectively. Confirmatory factor analysis: CFA confirmed the model structure: N = 249; chis-square = 122.83; df = 76; CFI = .96; IFI = .96; NFI = .91; RMSEA = .05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [283] "Principal components analysis: PCA yielded a 2-factor solution accounting for 50.85% of the total variance. Confirmatory factor analysis: The GFI (.917), IFI (.947), TLI (.938), CFI (.946), and RMSEA (.063, 90% CI: .056-.071) all suggested an adequate fit of the model to the data. The two factors were correlated at a value of .474 (p < .001) indicating a moderate degree of relationship. Structural equation modeling: The model yielded an adequate fit to the data. Although the chi square value was statistically significant (16, N = 306) = 56.372, p < .001, the GFI, IFI, and CFI were .958, .956, and .955, respectively, and the RMSEA was .091."                                                                                                                                                                                                                                                                                                                                                                  
## [284] "Exploratory Factor Analysis: EFA, using principal axis factoring and promax rotation methods, suggested a 2-factor solution as the most preferred. Confirmatory Factor Analysis: CFA was conducted on the eight first-order correlated factors model, demonstrating acceptable-to-mediocre fit [chi-squared (224, N = 317) = 730.52, p < .001; RMSEA = .085 (CI .90 = .078–.091); SRMR = .054; CFI = .91]. Further assessment using bootstrapping examined both the 95% and 99% CIs, revealing three and six intervals that included unity, respectively. This indicated that several dimensions overlapped significantly with each other. A combined EFA/CFA approach further refined items, removing those that were ambiguous, resulting in a finalized set of 18 items."                                                                                                                                                                                                                                                              
## [285] "Exploratory factor analysis: In a final EFA of the 20 items using a polychoric correlation matrix as input, three factors had eigenvalues greater than 1 and explained 73.40% of the variance in the items. Factor 1, Fit Idealization, had an eigenvalue of 10.78 and accounted for 53.90% of the variance in the items. Factor 2, Fit Overvaluation, had an eigenvalue of 2.56 and accounted for 12.80% of the variance in the items. Factor 3, Fit Behavioral Drive, had an eigenvalue of 1.33 and accounted for 6.70% of the variance in the items. Confirmatory factor analysis: The CFA, performed with all items allowed to load only onto their respective factors and factors allowed to covary as per the EFA results and a priori theory, produced a significant chi-square (167, N = 354) = 377.51 p < .001, but the ratio of chi-square to df was 2.26, indicating a good fit of the model to the data (Bollen, 1989)."                                                                                                      
## [286] "Exploratory Factor Analysis: The 7-factor solution explained 73.10% of the total variance. Confirmatory Factor Analysis: The originally proposed model presented the best fit: χ² (370, N = 1934) = 2800, p < 0.001, CFI = 0.94; NFI = 0.94; TLI = 0.94; RMSEA = 0.067; SRMR = 0.08."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [287] "Exploratory Factor Analysis: EFA revealed several cross loadings in the MDBS. Through repeated EFA procedures and item analyses, a final 7‐factor structure was reached, based on 18 of the 55 original items. Confirmatory Factor Analysis: CFA used the EQS program (Bentler, 1999). While the seven factors were allowed to be correlated, errors were not correlated. Moreover, ML and Robust methods were used simultaneously. The chi‐square test (Hu & Bentler, 1999) revealed a good fit to the data, as it was not significant; Satorra–Bentler scaled: chi-squared(114, N = 372) = 118.56, P = .366. Other goodness‐of‐fit indices confirmed the chi‐square test: chi-squared/df = 1.04, CFI = .99, RMSEA = .01, .90 CI (.00, .03). Further CFA testing was conducted to see if the addition a single higher‐order factor on which all seven correlated factors loaded would improve the 7‐factor solution. No single higher‐order factor was found, indicating that the 7‐factor solution was the superior model."             
## [288] "Confirmatory Factor Analysis: After calculation of the CFA in the total sample (model 1) and none was found in the individual samples satisfactory model, not even after implementation of an additional method factor consisting of the inverted items. Exploratory Structural Equation Modeling: ESEM for the total sample had a very good model fit, chi-square (429, N = 421) = 718.784, p (chi-square) <.01, RMSEA = .040, p (RMSEA <.05) = 1.0, SRMR = .025, CFI = .960 (model 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [289] "Exploratory Factor Analysis: The five factors explained 64.8% of the variance (a highly acceptable level of variance). All items loaded ‘cleanly’ onto the expected factor, with no items cross loading. Confirmatory Factor Analysis: Using confirmatory factor analysis, minimization was successful and the data were considered an acceptable fit to the model ([N = 2031] chi-square = 195.42 p < .001; CMIN/df = 2.96, RMSEA = 0.03 [90% CI 0.03–0.04], CFI = 0.96)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [290] "Confirmatory Factor Analysis: The initial measurement model involved the original two-factor structure with four items as indicators of standards and four items measuring discrepancy. Fit results for the two-factor structure in the U.S. sample were: chi-square(19, N = 255) = 37.74, p = .006, CFI = .973, RMSEA = .062, 90% CI [.03, .09], SRMR = .05. Fit indices for the Korean sample and the two-factor SAPS model were: chi-square(19, N = 306) = 70.52, p < .0001, CFI = .90, RMSEA = .09, 90% CI [.07, .12], SRMR = .09. Measurement Invariance: After metric invariance, however, four of the eight intercepts (two for each factor) were freely estimated to support partial scalar invariance. Additional IRT DIF analyses revealed perceived item difficulty in responding, or degree of ease in agreeing, to specific items differed between participants in the United States and Korea."                                                                                                                             
## [291] "Exploratory Factor Analysis: Results from the EFA indicated a major drop in the scree plot between the first (eigenvalue of 9.36) and second factor (eigenvalue of .57), thereby suggesting a one-factor solution accounting for 77.96% of the variance. Confirmatory Factor Analysis: The four-factor model provided the best fit to the data: chi-squared (48, N = 234) = 132.60, p < .01; chi-squared/df = 2.76; CFI = .98; NFI = .97; PNFI = .70; RMSEA = .087; PCLOSE = .000."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [292] "Exploratory and Confirmatory factor analysis: EFA revealed a 5-factor solution that accounted for 54.3% of the variance. This model did not present a good fit to the data during CFA. A final CFA confirmed a modified 22-item 5-factor structure (chi-square (196, N = 315) = 348.535, p <0.001, chi-square/gl = 1.78 , RMSEA = 0.050, TLI = 0.931, CFI = 0.942 and AIC = 23958.140)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [293] "Exploratory Factor Analysis: The single factor explained 45% of the total variance. Confirmatory Factor Analysis: The results indicated that the model presented a good adjustment to the data: chi-squared/gl(N = 224) = 1.93, CFI = 0.98, TLI = 0.97, RMSEA = 0.065, 90% IC [0.033, 0.095], WRMR = 0.64."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [294] "Exploratory factor analysis: EFA revealed a 3-factor solution explaining 57.31% of the variance. Confirmatory factor analysis: CFA results indicated the three-factor model demonstrated excellent model fit after Bollen-Stine boostrap correction (N= 2000) (B-S chi-square (74) = 117.57; CFI, GFI, NFI, and TLI > .95; RMSEA = .05). Measurement invariance: Results showed the three-factor C-BREQ-2 is invariant across gender at both configural, full metric, and full scalar levels. Structural equation modeling: SEMs demonstrated great model fit (B-S chi-square (85) = 131.9 for boys; B-S chi-square (85) = 136.51 for girls; B-S chi-square (85) = 137.66 for all participants; for all three SEMS, CFI, GFI, NFI, and TLI > .95; RMSEA = .05). Introjected regulation is the only construct that positively related to weekly MVPA for both boys, girls, and total sample."                                                                                                                                              
## [295] "Confirmatory factor analysis: Results yielded a one-dimensional model: χ2 (2, N = 1,594) = 26.436, p <.001, RMSEA = .088, CFI = .985, TLI = .923, SRMR = .017 and all items significant (p <.001) and substantial (≥ .42) on the latent factor loaded. In 2 subsequent samples (χ2 (2, N = 129) = 3,360, p = .18, RMSEA = .073, CFI = .991, TLI = .957 and SRMR = .021; χ2 (2, N = 95) = 3,219, p = .20, RMSEA = .080, CFI = .984, TLI = .921 and SRMR = .029) the fit again proved to be very good. Measurement invariance: Measurement invariance was supported for different groups of apprentices, for gender, and over time."                                                                                                                                                                                                                                                                                                                                                                                                        
## [296] "Principal Component Analysis: PCA with direct oblimin rotation yielded four factors. Confirmatory Factor Analysis: CFA indicated acceptable-to-good fit of the factors to the data chi-square (df = 164, N = 296) = 306.88, p < 0.001; RMSEA = 0.054 (90% CI 0.045, 0.064); CFI = 0.95; TLI = 0.95."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [297] "Exploratory Factor Analysis: Country-by-country EFAs revealed that only 15 items were good candidates for an instrument recovering the Big Five structure in all countries. Exploratory Principal Component Analysis: Exploratory PCA suggested 5 factors with the percentage of variance explained as 56.1 for Japan (country with highest loadings), 48.0 for Nigeria (country with lowest loadings), and 54.2 for the US (a country often used for comparisons). These loadings were higher than previous findings with other short Big-Five instruments (Schmitt et al., 2007; Soto & John, 2017a, b). Measurement Invariance: ESEM suggested the following for configural invariance: χ2(760, N = 27,675) = 1799.37, p < .001. Other fit indexes showed: CFI = 0.977, RMSEA = 0.031 (90% CI: 0.029, 0.032), and SRMR = 0.016. Yet, the metric invariance solution showed a considerable loss of fit, Δχ2(900) = 3321.45, p < .001, ΔCFI = 0.055, ΔRMSEA = 0.007, ΔSRMR = 0.022. Also, scalar invariance showed a poor fit."          
## [298] "Principal Component Analysis: PCA was conducted on a subsample (n = 966), using parallel analysis. Results indicated that 11 factors should be retained. Scree plot analysis indicated that 5-, 8-, and 18-factor solutions may also have been appropriate. Further examination of these proposed solutions ultimately found the 11-factor solution to be the most interpretable. Confirmatory Factor Analysis: CFA, conducted on a subsample (n = 592), tested fit using an 11-factor oblique model, an 11-factor orthogonal model, and a one-factor model with all 44 items loading onto one factor. Results found the 11-factor oblique model provided the best fit to the data."                                                                                                                                                                                                                                                                                                                                                      
## [299] "Confirmatory Factor Analysis: The final 5-factor measurement model indicated a reasonable fit (χ2[316, N = 181] = 673.83, p < .001; comparative fit index = .865; Tucker‐ Lewis index = .860; incremental fit index = .866; root mean square error of approximation = .079)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [300] "Exploratory Factor Analysis: The factor solution yielded one factor with an eigenvalue greater than one, explaining 63.7% of the variance. Loadings ranged between .68 and .82. Confirmatory Factor Analysis: The single factor model showed an acceptable fit to the data: (chi-squared (14, N = 220) = 40.86, p<.001; (chi-squared/df = 2.92; RMSEA = .09, RMR = .04, CFI = .96 and TLI = .95)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [301] "Confirmatory Factor Analysis: The 2-factor model of the SPANE, with 2 correlated factors of the SPANE-P and SPANE-N subscales, demonstrated good fit to data in the both the young adult sample (n = 513: SB chi-square (53) = 115.03, RMSEA = .048, 90% CI = .036–.060, CFI = .98) and the adolescent sample (n = 295: SB chi-square (53) = 54.35, RMSEA = .009, 90% CI =.000–.038, CFI = 1.00)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [302] "Exploratory Factor Analysis: Two factors were extracted for 53.5% of the variance. Confirmatory Factor Analysis: For the Dutch sample, CFA results indicated a better fit for the 2-factor model (chi-square (N = 200, df = 51) = 96.1, GFI = 0.93, CFI = 0.93, NFI = 0.87 RMSEA = 0.07). For the Turkish sample, CFA supported the two-factor structure (chi-square (N = 243, df = 50) = 121.56, GFI = 0.93, AGFI = 0.89, CFI = 0.94, RMSEA = 0.08, AIC = 177.56). Structural Equation Modeling: SEM analyses using data from participants from the Netherlands and Turkey, showed that low job demands and resources were associated with boredom and that boredom was associated with procrastination at work and counterproductive work behaviour."                                                                                                                                                                                                                                                                                   
## [303] "Exploratory Factor Analysis: With the deletion of two cross-loading items, an interpretable 5-factor model, explaining 63.49% of the total variance, was extracted. Confirmatory Factor Analysis: The 5-factor model (CFI = .87, RMSEA = .10, SRMS = .08; chi-squared (160) = 546.38, p < .001) provided a better fit than the hypothesized 4-factor model (chi-squared diff (14, N = 223) = 136.59, p < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [304] "Exploratory Factor Analysis: EFA identified a one-factor solution explaining 78.6% of the variance. Confirmatory Factor Analysis: The CFA cross-validation of the one-factor structure in the second random sample (n = 377) resulted in an excellent model fit (chi-square = 3.37, df = 5, p = .589, scaling factor = 1.14; CFI = 1.00; RMSEA = .00), with factor loadings ranging between .71 and .94 providing further support for the unidimensionality of the ReSta scale. Measurement Invariance: The ReSta-scale showed strict measurement invariance in comparisons across gender, age, education, and relationship status allowing comparisons of the sumscores across these groups."                                                                                                                                                                                                                                                                                                                                            
## [305] "Exploratory Factor Analysis: EFA, using a geomin factor rotation and maximum likelihood parameter estimator, analyzed the first half (n = 149) of the sample. After two EFAs, results found that a finalized set of 4 items loaded significantly onto a single factor. Excellent model fit was demonstrated: [chi-squared(2) = 3.449, p > 0.05; CFI = 0.994, TLI = 0.983, RMSEA = 0.070, SRMR = 0.020]. Confirmatory Factor Analysis: CFA analyzed the second half (n = 163) of the sample and found that the AWCs scale showed excellent fit to the data [chi-squared(2) = 1.988, p > 0.05; CFI = 1.000, TLI = 1.000, RMSEA = 0.000, SRMR = 0.021]. Moreover, standardized factor loadings were above 0.3."                                                                                                                                                                                                                                                                                                                              
## [306] "Exploratory Factor Analysis: EFA identified three core domains for 59% of the variance. Confirmatory Factor Analysis: CFA found that the three core domain had an acceptable fit, with chi-square (206, n = 263) = 615.35, p <0.5, chi-square/df = 2.99, CFI = .88 and RMSEA = .087."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [307] "Confirmatory factor analysis: CFA supported a 1-factor solution: chi-square = 116; df = 91; p-value = 0.00; CFI = 0.94; RMSEA = 0.06; SRMR = 0.06. Differential item functioning: Upon imposing constraints for factor loadings and intercepts together, as well as when adding additional constraints, differential item functioning was not observed except for item 1, which focuses on greetings, for age groups (p = 0.02 and 0.03 for selected and all constraints respectively, N = 180)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [308] "Rasch/Factor analysis: Collapsing response categories, removing misfitting items and combining residually correlating items produced a good fit to the Rasch model (n = 240, total Chi-squared = 56.6, df = 48, p = 0.18). Factor analysis produced a 16-item measure with two factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [309] "Exploratory Factor Analysis: EFA, using parallel analysis, found 2 factors having eigenvalues of 5.49 an 3.21, respectively. These explained more variance than chance alone, accounting for 56.8% of the variance combined. One factor focused on beliefs that poverty was due to systems influences (e.g., education system). The second factor on beliefs that poverty was due to influences at the individual level (e.g., experiencing poverty as the result of individual choices). Factor loadings for each factor were above .30. Confirmatory Factor Analysis: CFA was conducted with the phase 2 sample ( n = 280), with results showing all factor loadings to be above .35, with the factors correlating at −.28 and acceptable model fit demonstrated. Further analysis reduced the number of items to a finalized 17 items."                                                                                                                                                                                                
## [310] "Exploratory Factor Analysis: The 3-factor solution accounted for 70.4% of the total variance. Confirmatory Factor Analysis: Results of the CFA revealed a good fit, chi-square(51, N = 241) = 90.37, p < .001; root mean square error of approximation (RMSEA) = .057 (90% confidence interval [CI] [.037, .076]); Comparative Fit Index (CFI) = .981; Tucker-Lewis Index (TLI) = .976; Incremental Fit Index [IFI] = .981."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [311] "Confirmatory factor analysis/Structural regression modeling: Based on theoretical considerations, a one-factor solution of the nine dichotomous items was tested with CFA. The model provided a good fit to the data (χ2 = 194.4 df = 27 p b .0001; CFI = 0.971; TLI = 0.962; RMSEA = 0.036 [0.031–0.040] Cfit N 0.90 pclose = 1.000; N = 4887). The pattern of covariates of IGDT-10 was tested with a structural regression model. The two instruments measuring problematic online gaming (i.e., IGDT-10 and Problematic Online Gaming Questionnaire (POGQ; Demetrovics et al., 2012)) were strongly correlated (r = .77, p < .001). Item response theory: The results of IRT analysis demonstrated the criteria “continuation”, “preoccupation”, “negative consequences”, and “escape” were endorsed more frequently in less severe IGD stages and “tolerance”, “loss of control”, “giving up other activities”, and “deception” were only reported in more severe cases."                                                            
## [312] "Factor Analysis: Based on the initial sample (n = 120), factor analysis revealed a 3-factor solution that explained 68.9% of the variance in GFS-SR scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [313] "Confirmatory factor analysis: The proposed 3-factor model obtained was satisfactory, with excellent fit indices: S-Bchi-square (526, N = 5036) = 1180, p < 0.001; RMSEA = 0.016 (95% CI: 0.015–0.017); CFI = 0.999; NNFI = 0.999. SRMR = 0.059. Measurement invariance: The measurement model was invariant for the two age groups (10–14 years and 15–23 years). Cybervictimization and cyberaggression correlated with offline victimization and aggression (r = 0.49; p < 0.001; r = 0.57; p < 0.001, respectively)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [314] "Structural equation modeling: Preliminary results revealed Following listwise deletion of missing data, the measurement model provided good fit to the data, χ2(129, N =880)=494.54, p < .05; CFI=0.95; NNFI=0.94; SRMR=0.06, and all standardized factor loadings were significant and ranged from 0.65 to 0.90 (M=0.76). A CFA model was specified in which all manifest indicators loaded onto a single factor and compared to the baseline measurement model. Results from the single-factor model [χ2 (135)=2294.84, p < .05, CFI=0.72, NNFI=0.70, SRMR=0.15] and subsequent sequential chi-square difference test suggested the single-factor model was a significantly worse fit relative to the original model [Δ χ2 (6)=1800.28, p < .05]."                                                                                                                                                                                                                                                                                      
## [315] "Confirmatory Factor Analysis: The final iteration, and current 4-factor solution, presented a significant Chi Squared test (chi-square[253, N = 1510] = 768 p < .001), significant Bartlett’s Test of Sphericity (chi-square[253, N = 1510] = 8075, p < .001), an overall KMO of 0.78 (ref: >0.7), RMSEA index of 0.059 (C.I. 90%: 0.055–0.063, ref: <.05), and Tucker Lewis Index of 0.831 (ref: >0.9)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [316] "Factor Analysis: A representative sample of 5-year-old Chinese preschoolers (N = 426) was used to determine factor structure, using a procedure similar to the one used by LeFevre et al. (2009). A 4-factor structure was revealed after removing 2 numeracy activities (i.e., playing with number fridge magnets and measuring ingredients when cooking) that most parents never engaged in and one activity (i.e., ordering things by size, length, weight, or number). The resulting 21-item measure showed strong item loadings on all 4 factors. Measurement Model: The 4-factor measurement model showed a good fit: chi-square (df = 181) = 538.13 (p = .001), CFI = .92, TLI = .90, RMSEA = .06, SRMR =.05."                                                                                                                                                                                                                                                                                                                     
## [317] "Confirmatory Factor Analysis: Analysis revealed sufficient fit for the suggested model of two correlating factors of motor skills with each four sub-scales = chi-square/df = 1.76, N = 197, p < .001, TLI = .91, CFI = .90, RMSEA = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [318] "Confirmatory Factor Analysis: Structural equation modeling (SEM) was used to assess the items. Measurement Model: As derived from the CFA, results for the measurement model showed a satisfactory level of fit to the data: chi-square (df = 188, N = 199) = 377.836; normed chi-square = 2.01; goodness-of-fit index (GFI) = 0.854; normed fit index (NFI) = 0.927; Tucker–Lewis index (TLI) = 0.953; comparative fit index (CFI) = 0.962; root mean square error of approximation (RMSEA) = 0.071; standardized root mean square residual (SRMR) = 0.039."                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [319] "Confirmatory Factor Analysis: A correlated three‐factor model achieved an adequate level of overall model fit: chi-square (132, N = 439) = 356.00, p < 0.001; CFI = 0.96; TLI = 0.96; SRMR = 0.03; and RMSEA = 0.06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [320] "Exploratory Factor Analysis: EFA testing all 3 samples (n = 1,432) showed eigenvalues, scree plots and parallel analyses converging in a 3-factor solution that indicated a 2-cluster structure (individualizing-binding). Confirmatory Factor Analysis: CFA tested models created with the Relevance and Judgment Scales. Models compared included Single-factor, 2-factor, 3-factor, and 5-factor. A 6-factor model (care, fairness, loyalty, authority, tradition, and sanctity) in which the authority foundation is divided into 2 (i.e., authority and tradition), and hierarchical models (care-fairness as individualizing foundations, loyalty-authority-sanctity as binding foundations) were also tested. Results indicated the 5-factor model having the best fit, although relatively low fit indices and high error coefficients were seen. Similarly, the 5- and 6-factor models showed relatively fair fit with data from the full MFQ; but, none of the models reached a desirable and acceptable fit with the data."    
## [321] "Confirmatory Factor Analysis: CFA compared the model fit of the proposed 3-factor model to two alternative (i.e., 1-factor and 2-factor) models. The proposed model showed adequate fit with the data: chi-square (242, n = 197) = 413.580, p < .001, chi-square /df = 1.709, CFI = .92, IFI = .93, RMSEA = .06. Results also showed standardized factor loadings all above .50, and AVEs and CRs all above the required thresholds, collectively providing support for convergent validity (Hair et al., 2010)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [322] "Confirmatory factor analysis: CFA was used to evaluate the underlying structure of the PCF measure. Results yielded a 3-factor model with 11 items had a good fit with the data, χ2(41, n = 197) = 91.207, p < .001, χ2/df = 2.225, CFI = .94, IFI = .94, RMSEA = .079. A CFA was also conducted to determine whether job and career satisfaction were separate constructs using cut-off criteria as with the PCF scale. Results yielded a two-factor model consisting of 7 items had a very good fit to the data, χ2(12, n = 197) = 14.720, p > .05, χ2/df = 1.227, CFI = .996, IFI = .996, RMSEA = .034. Structural equation modeling: Results showed that identification with the MNC partially mediated the relationship between PCF and job satisfaction, and PCF and career satisfaction."                                                                                                                                                                                                                                          
## [323] "Explanatory Factor Analysis: EFA extracted four factors for 66.3% of the total variance, and factor loading was .493–816. Although four factor model was confirmed some facets loaded under the different factors from original model. Confirmatory Factor Analysis: The model fit was acceptable to good: chi-square = 374.2 (df = 84, N = 400), CFI = .90, AGFI = 84, NFI .87, and RMSEA = .09."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [324] "Exploratory Factor Analysis: EFA used maximum likelihood estimation and oblique rotation on the initial 29 items, finding 4 factors with eigenvalues greater than 1.0 that accounted for 63.99% of the variance. Nine items not having a strong correlation with any factor (i.e., greater than .45) were removed. None of the 20 remaining items loaded onto more than one factor (i.e., loadings not different by at least .10). Confirmatory Factor Analysis: Two CFAs, using maximum likelihood estimation, assessed the 20 items in 2 samples of adult gay and bisexual men in the U.S. (n = 96) and Sweden (n = 1,413). Results confirmed the structural stability of the instrument in both samples. Also, identical fit was found for both a first-order model with 4 latent subscale factors and a second-order model with an overarching second-order latent gay community stress factor, suggesting the appropriateness of examining either the subscales or the overall scale in subsequent analyses."                        
## [325] "Exploratory Factor Analysis: An EFA revealed one Eigenvalue>1 (2.78), with the next value being 0.88, suggesting a one-factor structure of the scale within the total sample. The respective Eigenvalues for the English subsample were 2.7 and 0.89 and for the French subsample 2.4 and 0.90. The one-factor solution for the overall sample showed a less than ideal fit (χ2(N=232, df=5)=26.74, p < .001, RMSEA=0.14, 90% CI [0.09, 0.19], CFI=0.98, TLI=0.97. EFAs conducted with the English (χ2(N=118, df=5)=22.53, p < .001, RMSEA=0.17, 90% CI [0.10, 0.25], CFI=0.97, TLI=0.95) and French (χ2(N=113, df=5)=8.48, p=.13, RMSEA=0.08, 90% CI [0.00, 0.17], CFI=0.99, TLI=0.98) subsamples revealed a comparable model fit."                                                                                                                                                                                                                                                                                                      
## [326] "Exploratory Factor Analysis: Principal components EFA extracted one factor explaining 85% of the variance. Following the removal of one item, the construct explained 83% of the variance. Confirmatory Factor Analysis: The final CFA model resulted in a Satorra-Bentler chi-square(2, N = 301) = 5.10, p = .08, with a CFI = 0.99 and RMSEA = 0.07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [327] "Exploratory Factor Analysis: It was shown that the factor structure cannot be represented by a one-factor model as in the original, but by a second-order construct. The goodness of the model was with chi-square (76, N = 122) = 103.75, p <.001 not appropriate. The Fit indicators, however, showed an appropriate fit of the model, with CFI = .961, TLI = .939, RMSEA = .055, 90% CI for RMSEA [.023, .079]. Beyond that all factor loads appropriate to very good (.44–.82). Confirmatory Factor Analysis: The fit indicators, however, showed a moderate (CFI = .83, TLI = .83) to appropriate fit of the model (RMSEA = .05, 90% AI for RMSEA [.047, .052]). Measurement Invariance: Results supported measurement invariance of the MHL-W-G across genders."                                                                                                                                                                                                                                                                    
## [328] "Confirmatory Factor Analysis: The one-factor structure was confirmed based on the following fit indices: χ2 (35, N = 354) = 93.75, p < .001; GFI = 0.95; CFI = 0.91; SRMR = 0.050; RMSEA = 0.069. Measurement Invariance: The results of measurement analysis depending on the sample of study I demonstrated that configural and metric invariances were established across Facebook and other social media users."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [329] "Confirmatory Factor Analysis: The final model resulted in an excellent fit to the data, chi-square (47, N = 217) = 65.746, p = .0367, CFI = .986, SRMR = .040."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [330] "Exploratory Factor Analysis: EFA using maximum likelihood extraction with an oblique rotation to assess sample 3A (n = 334) indicated a 4-factor solution. Based on the factor loadings and cross-loadings, 16 of the 39 initial items were retained. Also, the 4 factors mirrored the 4-dimensional structure the authors initially proposed. Confirmatory Factor Analysis: CFA compared the the hypothesized 4-factor model to 3 alternative models. Results showed that across all 5 samples, the standardized factor loadings for the 4-factor model were statistically significant (all p values < .01), and ranged between .58 and .94. Cumulatively, these results support the proposed 4-factor structure."                                                                                                                                                                                                                                                                                                                       
## [331] "Principal Component Analysis: PCA, using orthogonal varimax rotation, examined the sample (n = 319), confirming the construct multidimensionality of the instrument. A 3-factor solution was revealed that accounted for 28.29% of total variance (i.e., 17.05%, 6.62%, and 4.61% for successive factors). Items failing to achieve a minimum factor loading of ≥ 0.35 were removed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [332] "Confirmatory Factor Analysis: The two-factor structure provided a good fit for the data: χ2(19, N = 749) = 68.52, p < .0001, CFI = 0.97, RMSEA = 0.059 [0.044, 0.074]. Measurement Invariance: The results indicated that the SAPS demonstrated impressive measurement invariance between women and men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [333] "Confirmatory Factor Analysis: CFA was conducted for the measurement model with 2 observed indicators (i.e., content and content and user-oriented social media exposures) and 4 latent variables (i.e., personal- and societal-level risk perceptions, intention to take preventive actions, and intention to comply with government-recommended actions). A separate CFA was conducted for the single-item measure (social media exposure) using 2 different risk issues (i.e., micro dust and earthquake) in a nationwide sample (N = 1152). Reasonable fit for the 2 separate CFA models was demonstrated. Measurement Model: The CFA results showed the model fitting the data well: chi-square (59) = 103.17, p < .001, RMSEA = .03 (90% CI = .02 to .04), CFI = .99, TLI = .98, SRMR = .02."                                                                                                                                                                                                                                        
## [334] "Exploratory Factor Analysis: EFA resulted in the removal of several low-performing items. Confirmatory Factor Analysis: CFA resulted in the final 40-item model with 11 scales demonstrating satisfactory fit statistics, chi-square (680, N = 230) = 1102.5, p < .001, Tucker-Lewis index (TLI) = .90, comparative fit index (CFI) = .91, root mean square error of approximation (RMSEA) = .052. All items loaded on appropriate dimensions and were statistically significant with t values above 5.0."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [335] "Exploratory Factor Analysis: EFA extracted four factors for 57.27% of the overall variance. Confirmatory Factor Analysis: The hypothesized four-factor model provided excellent fit to the data: chi-square (113, N = 429) = 215.10, p<.001; RMSEA = .046; CFI = .99; TLI = .99."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [336] "Exploratory Factor Analysis: A sample (n = 384) was used to conduct separate EFAs on each of the 3 facets, to determine factor structure. Facet 1 was comprised of 4 factors (dimensions) that explained 67.62% of the total variance; Facet 2 had 2 factors that explained 70% of the total variance; Facet 3 had 5 factors that explained 78.78% of the total variance. Confirmatory Factor Analysis: A sample (n = 201) was used to conduct separate CFAs. Facet 1 showed the following fit values: GFI = 0.96; AGFI = 0.93; CFI = 0.99; RMSEA = 0.037; RMR = 0.041. Facet 2 showed these fit values: GFI = >0.90; AGFI = >0.90; CFI = >0.90; RMSEA = 0.056; RMR = 0.039. Facet 3 showed these fit values: GFI = 0.96; AGFI = 0.93; CFI = 1; RMSEA = 0.026; RMR = 0.046."                                                                                                                                                                                                                                                              
## [337] "Exploratory Factor Analysis: EFA yielded a 21-item three-factor solution accounting for 46.87% of the variance in the Korean item and a 28-item four-factor solution that accounted for 48.53% of the variance. Confirmatory Factor Analysis: A bi-factor model with 18 items proved to be the most reasonable fit to the data (chi-squared [df = 117, N = 350] = 193.07, p < .001; CFI = .94; RMSEA = .04 [95% CI: .03, .05]; SRMR = .05) in the South Korean sample, and a bi-factor model with 23 items demonstrated acceptable model fit (chi-square [df = 207, N = 350] = 422.80, p < .001; CFI = .91; RMSEA = .06 [95% CI: .05, .06]; SRMR = .06) in the US sample."                                                                                                                                                                                                                                                                                                                                                                
## [338] "Exploratory Factor Analysis: An initial EFA of 24 items resulted in the removal three items due to inconsistent loadings and cross loadings. EFA proposed seven factors. Confirmatory Factor Analysis: A Monte Carlo power simulation was conducted of a seven-factor CFA with standardized loadings at .90 and inter-factor correlations at .50, modeling a sample size at n = 964 (i.e., the smallest country-specific sample size in our sample). This simulation indicated very high power to estimate the structural components of the model (i.e., loadings, correlations, residual variances), with power consistently > .90. A seven-factor solution had configural, metric, and reasonable scalar invariance in multi-group confirmatory factor analysis."                                                                                                                                                                                                                                                                       
## [339] "Exploratory Factor Analysis: A model with five factors was obtained (69 percent of the total variance). Confirmatory Factor Analysis: A second order CFA showed a very good fit (chi-squared (289, n=1,757)=2,748.149, p<0.001; RMSEA=0.070, 95%CI (0.067, 0.072); SRMR=0.038; CFI=0.947; AIC=93,143.086), in which the five factors that were connected with the item indicators are explained by a single second order factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [340] "Confirmatory Factor Analysis: The two-factor model, χ2(19, N = 607) = 50.26, p < .001, showed a better fit, as indicated by the significant difference in the chi-square statistic, Δχ2(1) = 285.44, p < .001. Moreover, the goodness-of-fit indices also revealed an excellent fit for the two-factor model (CFI = .98, RMSEA = .05, SRMR = .03)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [341] "Confirmatory Factor Analysis: A CFA was conducted to evaluate the factorial validity of the three scales (flow, satisfaction-with-event and life satisfaction). The measurement model set the three correlated trait factors to reflect the pattern of correlations between validity and trait factors (Marsh, 1989). The scales were found to be acceptable (chi-square(41, n = 434) = 159.65, p < 0.01, RMSEA = 0.08, NNFI = 0.97, CFI = 0.98, SRMR = 0.03), and the factor loadings ranged from 0.72 to 0.94. Structural Equation Modeling: SEM was used to test a partially mediated model and a fully mediated model. Results revealed that both models performed equally well."                                                                                                                                                                                                                                                                                                                                                     
## [342] "Exploratory Factor Analysis: EFA using principal axis factoring with Promax oblique rotation was conducted on the first half of the sample (n = 209). Initially, five factors were identified having eigenvalues greater than 1.0. Parallel analysis suggested that four factors were to be retained. Confirmatory Factor Analysis: CFA was conducted on the second half of the sample (n = 210), with results showing the four-factor model to have excellent fit overall: chi-square (210) = 34.29; p = .167; CFI = 0.97; RMSEA = 0.036 (95%CI [0.0, 0.07]); SRMR = 0.041."                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [343] "Confirmatory Factor Analysis: Using CFA, the following fit statistics of the three items to the PfC construct were found: chi-square(1, N = 112) = .43, p = .51; comparative fit index (CFI) = .99; and adjusted goodness-of-fit index (AGFI) = .99. Two error statistics were found: root mean square error of approximation (RMSEA) = .01, and root mean square residual (RMR) = .02."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [344] "Exploratory Factor Analysis: A review of both the factor loadings and scree plot revealed that a one-factor solution was the best representation of the data. Confirmatory Factor Analysis: All indices indicated good fit for the 1-factor (i.e. unidimensional) model: chi-square (df = 405, N = 288) = 790.63, p = 0.00; RMSEA = .05, 90% CI = [.05, .06]; CFI = .91; TLI = .90."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [345] "Confirmatory Factor Analysis: Results indicated that the measurement model fit the data well, and thus these results provided evidence for the structural validity. Model fit indices are: chi-square (1, N = 441) = 3.276, p = .070, CFI = .997, RMSEA = .079 with 90% CI [.000, .182], SRMR = .009."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [346] "Confirmatory Factor Analysis: The model presents good fit indices: root mean square error of approximation (RMSEA) = .052, Comparative Fit Index (CFI) = .97, Standardized Root Mean Squared Residual (SRMR) = .056. Although the Chi- Square was significant, (35, n = 545) = 87.02, p < .001, this test assumes multivariate normality and, because of its sensitivity to sample size, leads to a systematic rejection of models with large samples (Hooper, Coughlan, & Mullen, 2008)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [347] "Confirmatory factor analysis: A seven-factor first-order model was specified by assigning item parcels to their corresponding factors and all 7 factors were allowed to correlate freely. Model fit was acceptable, chi-squared (df 149, N=651) =466.05, p<0.001, GFI=0.93, AGFI=0.90, CFI=0.96, NFI=0.94, RMSEA=0.057, 90 % CI [0.051, 0.063]. Two second-order factors were also supported: chi-square = 671.57, df = 162, GFI = 0.90, AGFI = 0.88, CFI = 0.93, NFI = 0.91, RMSEA [90% CI] = 0.070 [0.064, 0.075], AIC = 767.57. Measurement invariance: Both AIC and BCC values, and a negligible change of GFIs upon imposing cross-group constraints (Cheung & Rensvold, 2002), indicated that the best trade-off of model fit and parsimony is obtained by constraining all parametars to be equal across groups. These data suggest the PNI is factorially invariant across gender in this sample."                                                                                                                                
## [348] "Exploratory Factor Analysis: An EFA using principal factors extraction with Promax rotation extracted three factors for 63.84% of the total variance. Confirmatory factor analysis: Results yielded a 3-factor solution: chi-square(55, N = 165) = 78.57, p < .01. CFI = 0.95; TLI = 0.93; RMSEA = 0.08; SRMR = 0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [349] "Factor Structure: Estimation of the GEI MIMIC model provided an excellent fit to the data, chi-square(5, N = 401) = 27.95, p < .001, CFI = .99, TLI = .98, SRMR = .01. Standardized factor loadings ranged from .89 to .98; thus, all 4 items were retained for the substantive analyses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [350] "Exploratory Factor Analysis: For Pre-Event, the EFA extracted three factors for 72.707% of the variance. For Event, the EFA extracted three factors for 75.989% of the variance. For Post-Event, the EFA extracted three factors for 81.689% of the variance. Confirmatory Factor Analysis: The respecified model indicated acceptable model fit for Pre-Event citizen disaster communication: chi-square(198, N = 299) = 558.761, p < .001; CFI = .949; RMSEA: .078, 90% CI: [.071, .086]; TLI: .941. The respecified model indicated good model fit for Event citizen disaster communication: chi-square (48, N = 144) = 86.034, p < .001; CFI = .969; RMSEA: .074, 90% CI: [.048, .099]; TLI: .958. The respecified model indicated good model fit for Post-Event citizen disaster communication: chi-square(71, N = 138) = 129.458, p < .001; CFI = .965; RMSEA: .078, 90% CI: [.056, .098]; TLI: .955."                                                                                                                              
## [351] "Exploratory Factor Analysis: EFA used the Australian sample (n = 192), examining all variables via the unrotated factor solution to check for common method bias. The results revealed the presence of 10 distinct factors with eigenvalues >1 among the measures. The authors noted that while the results do not preclude the possibility of common method variance, they do suggest that such an explanation is unlikely. Measurement Model: Partial least squares in structural equation modeling (PLS-SEM) examined the two samples, with results showing that the fit indices for both to be well within those recommended by Kock (2013) {i.e., p-values < 0.05 for APC and ARS; AVIF ≤ 5, ideally ≤ 3.3)}, thereby indicating a good fit of the models to the data. Overall, the model explained 31% of the variance in the SCA construct in the Australian sample and 29% of the variance in the U.S. sample."                                                                                                                   
## [352] "Item response theory: Items in the final item bank (n = 28) were unidimensional (CFI = 0.95), did not show statistically meaningful levels of LD, and fit well the IRT model. A review of the item response curves generated by the IRT analyses indicated that the five response options functioned adequately for all items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [353] "Exploratory Factor Analysis: EFA using principal factor identified three factors for 65.17% of the total variance. Confirmatory Factor Analysis: The fit statistics for the three-factor oblique model [CFI = .948, SRMR = .059, RMSEA = .068 (90% C.I. .049–.086)] were adequate. Multigroup CFA: Results indicated adequate fit for both groups [men: MLRchi-square(41, n = 100) = 46.92, p = .24, CFI = .986, RMSEA = .038, SRMR = .055; women: MLRchi-square(41, n = 174) = 74.27, p = .001, CFI = .944, RMSEA = .068, SRMR = .066]. Measurement Invariance: Multiple-group CFA results indicate that the RDS demonstrated the strictest level of measurement and structural invariance between men and women."                                                                                                                                                                                                                                                                                                                        
## [354] "Exploratory Factor Analysis: The resulting four factor solution that was extracted obtained 62.0% of the total variance. Confirmatory Factor Analysis: The goodness of the model showed adequate results (χ2(164, N = 314) = 319.9, p < .001; CFI = .942; TLI = .933; RMSEA = .055)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [355] "Confirmatory factor analysis: The CFA with maximum-likelihood estimation analysis yielded an acceptable model fit for the six-factor solution scale, with the following results: chi-square [120, n = 465] = 420.402, p < 0.0001; CFI = 0.93; TLI = 0.91; RMSEA = 0.07; [90% CI, 0.066–0.081]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [356] "Exploratory factor analysis: Results provided evidence for a 4-factor solution, which together explained 59.7% of the total item variance. Confirmatory factor analysis: CFA suggested that the model fits better in a different sample (chi-square /df (N = 321) = 2.147, P < 0.001, GFI = 0.92, TLI = 0.90, SRMR = 0.05, RMSEA = 0.06, NFI = 0.86."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [357] "Confirmatory factor analysis: CFA supported the hypothesized 3-factor solution, S-Bχ2 (167, N = 263) = 544.18, p < .001, RMSEA = .093, 90% CI [.084, .102], CFI = .95, NNFI = .95, AIC = 630.18. Factorial invariance: Configural invariance, metric invariance, scalar invariance, error variance invariance, factor variance invariance, and factor covariance invariance across gender were established. As the male group was treated as the reference group and the factor means in this group were fixed to zero, the factor means in the female group represented tests of mean differences between the two groups. Compared with males, females reported significantly lower passion (t = −2.30, p = .021). The factor means of intimacy and commitment did not differ significantly across gender."                                                                                                                                                                                                                              
## [358] "Confirmatory factor analysis: Results supported a 6-factor model which displayed good fit, chi-square (259, N = 409) = 376.48, p < .001; CFI = .95, TLI = .95, RMSEA = .03, 90% CI [.03, .04], SRMR = .05. Structural equation modeling: The full structural model displayed good fit, chi-square(372, N = 409) = 572.37, p < .001; CFI = .93, TLI = .92, RMSEA = .04, 90% CI [.03, .04], SRMR = .05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [359] "Confirmatory factor analysis: All indicator variables loaded significantly on the latent factors (p < .001) in the CFA of the original three-factor model and it resulted in an acceptable fit in this sample of clinical adults (chi-squared (87, N = 215) = 172.37, p < .001, CMIN/df = 1.98, NFI = .84, IFI = .91, TLI = .89, CFI = .91, RMSEA = .068 (90% CI [.053, .082])). Similar model fit indices with close to acceptable fit (chi-squared (87, N = 159) = 193.66, p < .001, CMIN/df = 2.23, NFI = .79, IFI = .87, TLI = .82, CFI = .87, RMSEA = .069 (90% CI [.056, .082])) were reached using family mean scores for members of 159 clinical families (construct validity)."                                                                                                                                                                                                                                                                                                                                                  
## [360] "Exploratory Factor Analysis: EFA conducted with the study 1 sample (n = 434) revealed a 2-factor structure of interpersonal and intrapersonal dimensions. Confirmatory Factor Analysis: CFA using the maximum likelihood method confirmed the 2-factor structure in the study 2 sample (n = 405), which demonstrated acceptable model fit. Measurement Invariance: Findings suggesed differences at the model level for adolescents, both with and without a history of deliberate self-harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [361] "Exploratory Factor Analysis: A two-factor solution accounted for 54% of the total variance before the oblique rotation. Confirmatory Factor Analysis: The fit statistics for this model were SBSchi-square (26, N = 535) = 66.58, p < .001, CFI = .963, SRMR = .033, and RMSEA = .054 (90% confidence interval .038–.070). Based on general guidelines (Hu and Bentler 1999), the CFI, SRMR, and RMSEA all indicated a good data-to-model fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [362] "Confirmatory Factor Analysis: The model fit of the 2-factor model (N=301) was acceptable, according to the fit indices [chi-square (34)=127.57, p<.001; RMSEA =0.09; SRMR=0.04; CFI=0.95; AIC=6844.95]. Measurement Invariance: Measurement invariance across genders could be established in the present sample. However, full metric invariance was not established but partial metric invariance was established with the free estimation of item 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [363] "Principal Component Analysis: PCA, using varimax rotation, identified 18 factors with eigenvalues > 1.0; But parallel analysis suggested the plausibility of a 6‐factor solution. Exploratory Factor Analysis: EFA discovered that a 5‐factor solution yielded a better structure, with lower correlation between factors. However, due to factor 5 (Resources; RES) having a low number of loaded items (N = 2), it was excluded. As a result, the finalized NCQ included 4 factors and 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [364] "Confirmatory Factor Analysis: CFA, using the MLM estimator to assess the full sample, showed good data fit: chi-square (2, N=87) = 3.562, p = .168, CFI = 0.978, SRMR = 0.043. Analysis also showed all 4 indicators loading positively and significantly onto the latent construct, with the first 3 indicators having a high loading (respectively, λ = 0.77, p < .001; λ = 0.99, p < .001; λ = 0.73, p < .001). The fourth indicator, however, had a lower loading (λ = 0.33, p=.006). Measurement Invariance: To conduct measurement invariance across gender, the metric invariance model to the baseline model, and the scalar invariance model to the metric invariance model (Kühne, 2013) were compared. Partial scalar invariance was established, and compared to the latent means of boys' and girls' intentional acceptance of social robots via the Wald-Test, with no significant differences found."                                                                                                                      
## [365] "Factor Analysis: To eliminate items that did not load together, and to determine whether there were five separate scales, factor analysis was conducted. Results revealed that a 5-factor solution was the most salient, and conceptually consistent with the five functions of identity. However, additional factor analyses were conducted on the study 2 sample (n = 133), to determine whether the 5-factor solution could be replicated with another sample. Results provided partial support for the hypothesis of structural validity suggested in Study 1. A maximum likelihood oblique rotation revealed that a 4-factor solution was the most appropriate. Items corresponding to the fourth function of identity (Harmony) loaded with other factors in this analysis (i.e., Function 1, Structure; Function 2, Goals). As a result 2 items were eliminated, creating a finalized 20-item scale."                                                                                                                              
## [366] "Factor Analysis: Using data from study 2 (n = 332), factor analysis assessed the interrelations between beneficence satisfaction; the psychological need satisfactions concerning autonomy, competence, and relatedness; and subjective well-being. Principal-Component Analysis: PCA conducted on the 12 need satisfaction variables and the 4 beneficence variables showed via scree plot that the 4-factor solution explained the largest amount of total variance, while retaining individual factors that all had significant explanatory power (0.14, 0.14, 0.16 and 0.16), even though its eigenvalue (0.94) was slightly below the conventional 1.0 standard. Confirmatory Factor Analysis: CFA using maximum likelihood estimates showed adequate fit for the proposed 4-factor solution: chi-square = 296.902, p < 0.001, NFI = 0.917, CFI = 0.943, RMSEA = 0.078, 95% CI [0.068, 0.089]."                                                                                                                                      
## [367] "Exploratory Factor Analysis: EFA, using the study 1 sample (n = 322), indicated a 2-factor solution, with the first factor (Public Support for Gender Equality) accounting for 25% of the total variance, and the second factor (Domestic Support for Gender Equality) accounting for 19%. Further analysis showed that 9 items loaded onto the first factor, while 7 items loaded onto the second factor. Confirmatory Factor Analysis: CFA, using the study 2 sample (n = 358), evaluated the 16 retained items, using 1-, 2-, and 3-factor solutions. Results showed the 2-factor solution to be the simplest model that describes the data well (Myung & Pitt, 1997)."                                                                                                                                                                                                                                                                                                                                                                
## [368] "Exploratory Factor Analysis: EFA conducted on the 19 retained items revealed a 5‐factor structure that explained 57.628% of the variance, and had a factor loading value above 0.40. Confirmatory Factor Analysis: CFA found the chi-square test to be positive (chi-square = 312.92, N=550, df=142, P= 0.000). Moreover, CFA determined that the factorial model was an excellent fit to the data: RMSEA = 0.047, GFI = 0.94, AGFI = 0.92, NFI = 0.90, CFI =0.94, NNFI = 0.93, and SRMR = 0.0048."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [369] "Exploratory Factor Analysis: Results of the parallel analysis indicated a clear two-factor solution to these data. Extraction of two dimensions with principal axis factoring accounted for 61.0% of the covariation across items. Confirmatory Factor Analysis: Results provided consistent evidence of close fit for the hypothesized two-factor model, chi-square(76, N = 398) = 184.7, p < .001, CFI = 0.97, TLI = 0.96, RMSEA = 0.06, 90% CI [0.05, 0.07], SRMR = 0.035. Results failed to identify a one-factor model as a plausible solution to these data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [370] "Exploratory Structural Equation Modeling: The hypothesized five-factor ESEM model provided a reasonable fit to the data, according to previously mentioned criteria: WLSMV-based w2(61, N = 452) = 56.959, p = .623; CFI = 1.00; TLI = 1.00; RMSEA = .000, 90% CI [.000, .025], p = 1.00; WRMR = .300. Confirmatory Factor Analysis: A CFA model with the five hypothesized factors, in which each item loaded onto the respective factor (WLSMV-based w2(109, N = 452) = 271.770, p < .001; CFI = .978; TLI = .973; RMSEA = .059, 90% CI [.049, .066], p = .074; WRMR = 1.075) was supported over alternative models resulting in non-acceptable model fits. Measurement Invariance: All in all, metric, scalar, strict, and variance-covariance invariance were supported."                                                                                                                                                                                                                                                             
## [371] "Confirmatory Factor Analysis: CFA conducted with the sample (n = 114) confirmed that a one-factor model explained data adequately (chi-square [10, N = 116]) = 16.26, p = 0.003, NNFI = 0.90, CFI = 0.95, SRMR = 0.04). Moreover, all factor loadings proved to be significant (ranging from 0.69 to 0.81). The results were used to establish construct validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [372] "Exploratory Factor Analysis: EFA using maximum likelihood extraction was conducted with a subsample of participants (n = 758). Thirteen EFA iterations of the CSCS were conducted, resulting in the removal of 22 items (from the initial 42 items), for a finalized 20 items. Also, 2 factors statistically merged with another, reducing the number from 6 factors to 4, which explained 51.22% of the variance. As expected, the factors were moderately to strongly correlated (between 0.46 and 0.57), reflecting a moderate to strong relationship. Confirmatory Factor Analysis: CFA, using maximum likelihood estimation, was conducted with a subsample of participants (n = 339). First and second order models, having either a 4- or 5-factor structure, were tested. Results confirmed that both models, with either 4 or 5 factors, were appropriate, with all models demonstrating acceptable fit."                                                                                                                        
## [373] "Confirmatory Factor Analysis: The reduced model of 15 items showed better goodness-of-fit indices for the 2-factor model than with 16 items (Chi-squared(85) = 514.098; p < 0.001; n = 586; CFI = 0.986; CFIscaled = 0.937; NFI = 0.984; TLI = 0.983; SRMR = 0.064; RMSEA = 0.093). The second-order latent factor model also presented an acceptable fit (Chi-squared(85) = 514.098; p < 0.001; n = 586; CFI = 0.986; CFIscaled = 0.937; NFI = 0.984; TLI = 0.983; SRMR = 0.064; RMSEA = 0.093). Measurement Invariance: The fit to the data of each individual group was globally acceptable. Results supported the structural invariance of the OLBI between Portugal and Brazil. The measurement invariance for OLBI among sexes was obtained, since full uniqueness measurement invariance was observed with the support of the Cheung and Rensvold (2002) criterion and of the Chen (2007) criterion."                                                                                                                              
## [374] "Exploratory Analysis: EFA yielded 2 factors that explained 52.42% of the variance (32.42% for first factor; 20% the second factor). Confirmatory Factor Analysis: CFA conducted on the sample (n = 310) demonstrated good fit to the data: chi-square/sd = 2.43, RMSEA = 0.68, GFI = 0.935, AGFI = 0.905, NFI = 0.902, CFI = 0.94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [375] "Principal Component Analysis: PCA using Varimax rotation revealed 3 factors that paralleled the theoretical dimensions of destination brand authenticity. After eliminating 3 low-loading items (< 0.40), the remaining 9 items (3 per factor) explained a total of 77% of the variance. Confirmatory Factor Analysis: CFA, using maximum likelihood estimation for the study 2 sample (n = 99; Spanish tourists), demonstrated satisfactory fit: chi-square = 29.61, df = 24, chi-square/df = 1.23, p = 0.198, CFI = 0.98, GFI = 0.93, AGFI = 0.88, SRMR = 0.06, RMSEA = 0.04. CFA was also conducted with the entire study 3 sample (n = 508; US and UK tourists), showing similarly satisfactory model fit values. Measurement Model: Partial least squares structural equation modeling (PLS-SEM) of the causal-predictive model showed a positive, and direct influence on behavioral intentions (Beta = 0.282, p < 0.001), and on destination brand authenticity (Beta = 0.688, p < 0.001)."                                        
## [376] "Exploratory Factor Analysis: EFA, using principal axis factoring, was conducted on a split sample (sample 1; n = 200). Results of parallel analysis indicated a 2-factor solution accounting for 75% of the variance. Three items tapping into the college response to LGBTQ students loaded onto Factor 1 (eigenvalue = 3.43), and accounted for 57% of the variance. Three items tapping into LGBTQ stigma on campus loaded onto Factor 2 (eigenvalue = 1.07), and accounted for 18% of the variance. Confirmatory Factor Analysis: CFA was conducted on a split sample (sample 2; n = 446). Results demonstrated excellent fit to the data: chi-square (8) = 9.89, p = .27, CFI = .999, TLI = .997, RMSEA = .023 (PCLOSE = .84), and RMR = .046. Moreover, all factor loadings were statistically significant, with standardized values ranging from .76 to 87."                                                                                                                                                                       
## [377] "Principal Component Analysis: PCA examined the latent structure of the items using the first-round data, which revealed an 11-factor solution having 66 items. Exploratory Factor Analysis: EFA, using a sample of participants from a polytechnic college and the hospitality industry (n = 600), found a 6-factor solution having 33 items. Item Response Theory (IRT) further reduced the scale based on the highest value of discrimination parameters, to gain the most test information. The resulting 24 items underwent to a final EFA, producing a more robust structure within a 6-factor solution. Confirmatory Factor Analysis: CFA used the second-round sample (n = 440) to test the factor loading structure. Results supported the 6-factor solution, which compared more favorably to a more parsimonious model where all 24 items load onto a single latent factor, a 2-factor model, and a 3-factor model."                                                                                                            
## [378] "Confirmatory Factor Analysis: The model consisting of 12 subscales loading onto four dispositions and 36 observed factors (questionnaire statements/questions) was tested. The obtained results confirmed the structure of the questionnaire: χ2 (DF = 528, N = 935) = 2411.78, p>0.05; RMSEA = 0.062; SRMR = 0.06; CFI = 0.93; NFI = 0.91; and GFI = 0.92. In the second stage, 12 sub-factors as measured variables and four latent factors were employed. The degree of model fit was assessed using several criteria, the combination of which brought informed judgments about the overall adequacy of the model fit: χ2 (DF = 50, N = 935) = 351.64, p>0.05; the standardized root-mean-square error of approximation (RMSEA) = 0.079; standardized root mean square residual (SRMR)=0.053; comparative fit index (CFI) = 0.94; normed fit index (NFI) = 0.95; and goodness of fit index (GFI) = 0.94."                                                                                                                             
## [379] "Exploratory Factor Analysis: EFA using principal axis factoring and Promax rotation was conducted on a subsample of the total sample, matched for both gender and age. Results indicated a 3-factor latent structure that explained 47.39% of the variance. Confirmatory Factor Analysis: CFA conducted on a subsample of the total sample, matched for both gender and age, demonstrated good model fit: Comparative Fit Index (CFI) = 0.91, Tucker-Lewis Index (TLI) = 0.91, Root Mean Square Error of Approximation (RMSEA) = 0.04, and Standardized Root Mean Square Residual (SRMR) = 0.06. A second CFA conducted on the entire sample (n = 1707) revealed the same 3-factor latent structure identified in the EFA and in the first CFA. Moreover, all the items showed they had only one significant loading (i.e., higher than 0.40) in only one of the three latent dimensions. Goodness of fit was presented as CFI = 0.92, TLI = 0.91, RMSEA = 0.04, SRMR = 0.05."                                                            
## [380] "Exploratory Factor Analysis: EFA for the Student Maltreatment by Teachers scale suggested the scale was unidimensional. EFAs for the Student Violence against Students and School Victimization by School Peers scales extracted three subscales for both. Structural Equation Modeling: The results of the analysis, based on the total sample, provided a good fit to the data [chi-square (67, N = 1,376) = 420.33, p<.001, and with NFI = .95, IFI = .96, CFI = .96, and RMSEA = .06]. This suggested that the model is a good one."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [381] "Confirmatory Factor Analysis: The independent two-factor model yielded a slightly better fit to the data than did the correlated two-factor model (r = .07, p = .14), chi-square (34, n = 606) = 98.59, p < .01; RMSEA = .056 with a 90% CI [.043, .069]; CFI = .98; and TLI = .97. Measurement Invariance: The scalar invariant model across genders was supported and male students reported using suppression to a greater degree than female students."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [382] "Exploratory Factor Analysis: Four factors were extracted for 62.88% of the variance. Confirmatory Factor Analysis: CFA results indicated that the four-factor model has a very satisfactory fit to the data. Measurement Invariance: The four-way model EMAC-E factors show a good fit for the group in condition for success (n = 162), χ2 = 63.25, dof = 48, RMSEA = .04, IC 90% = .00-.07, SRMR = .06, CFI = .95, TLI = .93 and for the group in failure condition (n = 148), χ2 = 44.51, dof = 48, RMSEA = .00, 90% CI = .00-.05, SRMR = .05, CFI = 1.00, TLI = 1.00. The configural model presents very satisfactory adjustment indices (see Table 3) signifying that the factor structure can be considered similar in the two groups (Meredith, 1993; Vandenberg & Lance, 2000). The comparison between the metric invariance model and the configural model, indicates that the addition of invariance constraints on the factorial weights does not have did not result in a significant decrease in model fit."                 
## [383] "Confirmatory Factor Analysis: During CFA to assess the SLA-SF-46E (Shek et al., 2018a), the authors restored one factor -- Implicit theory of leadership -- omitted due to low item-total correlation values. This factor (renamed in the SLA-SF-46 as \"Unchangeable and dark human nature\") and its 7 items were added back to SLA-SF-46E, to form an 8-factor, 53-item model (i.e., Model 2). Additional CFA refinement resulted in a finalized 46 items with 8 factors (i.e., Model 3), which underwent a final CFA. Results showed adequate model fit [chi-square (961) = 5773.33, p < 0.001, CFI = 0.91, TLI = 0.90, RMSEA (90% CI) = 0.047 (0.046, 0.049), SRMR = 0.06]. Measurement Invariance: The SLA-SF-46 was tested across gender, and across two sub-samples that were split based on odd and even case numbers of the total sample (n = 2,240). Model fit for each test was acceptable. Measurement invariance across gender and for the \"odd\" and \"even\" groups suggested that all shared the same factor structure."
## [384] "Exploratory factor analysis: EFA revealed a 3-factor solution that explained 31% of the variance. Rasch analysis: Results found 6 items to be potentially misfit leading up to CFA. Confirmatory factor analysis: Among the various models tested, Model 5, which excluded the negative items from the model and retained the 18 positively phrased items, was the best model that adequately explained the observed data, as shown by the fit indices: SBS-χ2 = (132, N = 672) = 320.828 and p < .001; RMSEA = 0. 045; CFI = 0.911; SRMR = 0.0493; and chi-square/degrees of freedom ratio = 2.43."                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [385] "Confirmatory Factor Analysis: Two separate CFAs were conducted, in an attempt to replicate the original 5-factor structure of the PAIR (Model 1: Schaefer & Olson, 1981), and the proposed 3-factor structure (Model 2: Moore, McCabe, & Stockdale, 1998). Both CFAs used a sample of individuals involved in same-sex couple relationships (n= 350), and focused on the most commonly reported fit indices (i.e., CFI and RMSEA) to determine the most appropriate factor structure for the sample population. A CFI value greater than .95 and a RMSEA value lower than .06 are both indicative of good model for the data (Tabachnick & Fidell, 2007). Results showed poor fit for Model 1 (CFI = .56, RMSEA = .12), but better fit for Model 2 (CFI = .79, RMSEA = .086); only one item (Item 28) failed to achieve a factor loading of at least .20, and was therefore eliminated. After further examination, covariance terms were added to Model 2, resulting in fit indices remaining largely unchanged, forming Model 3."        
## [386] "Principal Component Analysis: PCA was conducted on the 12 A-ToM items (6 social, 6 physical) for the entire sample (n = 243). Results indicated the presence of 3 components that explained 25.4%, 11.6%, and 8.6% of the variance. Parallel analysis was conducted to confirm the number of components, extracting a 2-component solution. Factor loadings for the first factor ranged from 0.36 to 0.70, and from 0.41 to 0.59 for the second factor. Item analysis reduced the pool of items to a discriminating sub-set to a more manageable number for a test administration, which resulted in 6 Social component items and 6 Physical component items."                                                                                                                                                                                                                                                                                                                                                                            
## [387] "Confirmatory Factor Analysis: Single-factor models revealed an adequate fit to the data. The multidimensional structure of adaptive coping provided good fit to the data, chi-square(264) = 431.99, p < .001, chi-square/df = 1.64, CFI = .94, TLI = .93, RMSEA = .05, 90% CI = [0.04, 0.06], SRMR = .07. The multidimensional structure of maladaptive coping also provided good fit to the data, chi-square(389) = 597.86, p < .001, chi-square/df = 1.54, CFI = .94, TLI = .93, RMSEA = .05, 90% CI = [0.04, 0.06], SRMR = .07. Measurement Invariance: The multidimensional structures of adaptive, chi-square(264) = 569.43, p < .001, chi-square/df = 2.16, CFI = .95, TLI = .94, RMSEA = .05, 90% CI = [0.05, 0.06], SRMR = .06, and maladaptive coping, chi-square(389) = 792.96, p < .001, chi-square/df = 2.04, CFI = .94, TLI = .93, RMSEA = .05, 90% CI = [0.04, 0.06], SRMR = .06, were tested with data from the overall sample (N = 459), revealing good fit to the data."                                                 
## [388] "Exploratory Factor Analysis: The variance explained was 16.26% for trust, 15.13% for profit, 23.22% for social, and 19.46% for learning, and the highest explanatory power was for social. The total variance explained was 74.07 > 50.0%, indicating that the first part of the questionnaire had good validity and explanatory power. Confirmatory Factor Analysis: CFA revealed the following results: Chi-squared(98, N = 458) = 400.375, P = 0.001, Chi-squared/df = 4.058 < 5, GFI = 0.90 > 0.9, AGFI = 0.86 > 0.8, CFI = 0.94 > 0.9, NNFI = 0.92 > 0.9, IFI = 0.94 > 0.9, RMSEA = 0.08 < 0.1, indicating that the model’s fit could be accepted (Bagozzi & Yi, 1988)."                                                                                                                                                                                                                                                                                                                                                             
## [389] "Rasch Analysis: One-, three- and six-dimensional models were evaluated. Results indicated that the fit of the three-dimensional model was significantly better than that of the one-dimensional mo-dells (χ2 [5, N = 581] = 187.58, p <.001) and the fit of the six-dimensional model was significantly better than that of the three-dimensional model (χ2 [15, N = 581] =169.89, p <.001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [390] "Exploratory Factor Analysis: EFA was conducted using a random selection of cases, with a subsample (n = 269). Horn's Parallel Analysis suggested retaining two factors, provided that the real eigenvalue exceeds the random eigenvalue. This resulted in an EFA that used only nine of the 15 items from Rubio et al. (1998). The two factors explained 53% of the common variance. Confirmatory Factor Analysis: CFA was conducted on a different subsample (n = 237). Results demonstrated very good fit [chi-square S-B = 26.36, gl = 26, p = 0.34; NNFI = 1.0, CFI = 1.0, RMSEA = 0.02, IC 90% (0.00, 0.05)]."                                                                                                                                                                                                                                                                                                                                                                                                                       
## [391] "Exploratory Factor Analysis: EFA with varimax rotation suggested a 3-factor model, with 69% of the total item variance accounted for. Two items had to be deleted: 1 (due to strong negative loading) and 6 (due to double loading on multiple factors). Confirmatory Factor Analysis: Confirmatory factor analysis was conducted at T2 using the same item breakdown for each scale found at T1. After modifications were made in which the error terms for four items were allowed to be correlated, model fit was deemed to be acceptable: χ²(28, N = 278) = 253.71, p < .01; CFI = .96, TLI = .94, SRMR = .10, and RMSEA = .10."                                                                                                                                                                                                                                                                                                                                                                                                      
## [392] "Confirmatory factor analysis: A CFA was estimated with six factors, targeting the main dimensions of r-RST: chi-square(2,000, N = 603) = 6,601.374, p < .001, CFI = .807, RMSEA = .062. The fit indices1 revealed a similar fit as the English RST-PQ (Corr & Cooper, 2016; CFI = .87)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [393] "Exploratory Factor Analysis: The factorial solution derived from the MRFA factor analysis revealed that this two-factor structure explained 52.66% of the total variance of the questionnaire. Confirmatory Factor Analysis: The model presented a good fit, chi-square (349, N = 271) = 618, RMSEA = 0.053, 90% confidence interval [0.046, 0.060], NNFI = .953, CFI = .957. All the factorial loadings of the items were statistically different from zero (t > 1.96)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [394] "Exploratory factor analysis: EFA with maximum likelihood estimation method revealed a 4-factor solution (N = 152, χ2 (152) = 255.91 p <0.001, SRMR = 0.04, RMSEA = 0.67 [90% CI = 0.048, 0.069])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [395] "Confirmatory Factor Analysis: CFA results showed good fit to data (Satorra–Bentler Scaled χ² [269, N = 410] = 306.94, p = 0.05; CFI = 0.91; NNFI = 0.89; IFI = 0.91; RMSEA = 0.019; RMSEA 90% interval [0.000, 0.027]). Measurement Invariance: Multiple-group measurement invariance tests were performed on the SJT and gamified SJT scales, to assess cross-validation among samples. Findings showed that chi-square differences were relatively large; however, invariant factor variances are considered the least important in testing measurement property invariance across groups (Bollen, 1989; Marsh, 1995). Therefore, some evidence of partial measurement invariance was apparent across the samples."                                                                                                                                                                                                                                                                                                                     
## [396] "Exploratory Factor Analysis: EFA using principal component analysis was applied to extract the factors of 29 items of the ISMI scale. Findings indicated that the Indonesian version of the ISMI scale contains five factors, namely stereotype endorsement, social withdrawal, alienation, discrimination experience, and stigma resistance–all similar to the case in the original scale by Boyd Ritsher et al. (2003). Confirmatory Factor Analysis: The model structure was examined by measuring data compatibility on the basis of several fit indices. CFA indicated adequate fit through a number of these indices, chiefly chi-square(702.03, N = 280) = 1.91, p < .001, GFI = 0.85, AGFI = 0.82, IFI = 0.96, TLI = 0.95, CFI = 0.96, RMSEA = 0.06, and SRMR = 0.02. Additionally, all factors of the ISMI scale indicated adequate factor loading from .51 to .94."                                                                                                                                                             
## [397] "Exploratory Factor Analysis: EFA identified two factors had eigenvalues greater than one. The first factor explained 64% of variance, and the second factor explained 6.84% of the variance. An examination of the factor loadings indicated that item #13 (“I don’t feel very good about the way my health care practitioner talks to me about my health”) did not meet the threshold of .40 or higher and was eliminated from the CFA. Confirmatory Factor Analysis: A one-factor model and a two-factor intercorrelated model for the HCCQ were tested using CFA. The two-factor model showed a slightly better fit, chi-square = (91, N = 186), = 211.21, chi-square/df = 3.56, CFI = .95, TLI = .94, BIC = 8,827.57, and RMSEA = 0.09, 90% CI [0.08, 0.11]. Overall, the results support the two-factor model as the fit indices showed a better fit for the model than the one-factor model."                                                                                                                                       
## [398] "Exploratory Factor Analysis: EFA indicated a single factor which explained 62.7% of the total variance. Confirmatory Factor Analysis: For the proposed factor model, the goodness-of-fit indices yielded the following values: chi-square (170, N = 176) = 452.856, p < 0.001; Normed Chi-Square (chi-square/Df) 452.856/170 = 2.66; CFI = 0.96; TLI = 0.95; and RMSEA = 0.09 (CI 90% = 0.086, 0.01), which generally indicated a good fit of the model. The validity of the measurement model is supported by both theoretical criteria based on a deep conceptual review and expert opinion and semi-structured interviews with professionals and a primary caregiver of palliative patients, as well as the confirmatory factor analysis, which shows the suitability of the model to the goodness-of-fit criteria, with the exception of the RMSEA approximation error rate."                                                                                                                                                         
## [399] "Exploratory Factor Analysis: EFA examined the 14 items meeting content criteria with a sample of individuals recruited via Amazon's MTurk (n = 100). Principal Component Analysis: PCA using Varimax rotation revealed a 2-component solution that explained 85.91% of the variance. Confirmatory Factor Analysis: CFA, using a second sample of individuals recruited via Amazon's MTurk (n = 301), removed 8 items due to their highly correlating with multiple items or other constructs. The remaining 6 items fit the data well: The overall model fit with the remaining 6 items was almost perfect (chi-square = 4.56, p = .80, df = 8, chi-square /df ratio = .57, NFI = 1.00, IFI = 1.00, TLI = 1.00, CFI = 1.00, RMSEA = .00, SRMR = .01."                                                                                                                                                                                                                                                                                     
## [400] "Principal Component Analysis: PCA with varimax rotation used a subsample (n = 253) to conduct exploratory factor analysis. The results showed that 5 factors were extracted from a total of 15 items. The 5-factor solution explained 76.95% of the total variance. Confirmatory Factor Analysis: CFA used structural equation modeling (SEM) to test the measurement model with the same subsample (n = 253) as was used for EFA. Measurement Model: The results of analysis showed that model fit indices satisfied all acceptable criteria, fitting the data well."                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [401] "Exploratory factor analysis: EFA revealed a single-factor construct explaining 51.9% of the total variance. Confirmatory factor analysis: The results of the confirmatory factor analysis indicated that the model is around the borders of admissible fit index and factor loads varied between 0.51 and 0.83. The model was deemed within the limits of goodness of fit index as the RMSEA value of the model was 0.91; chi-square was statistically significant (χ2 = 486; n = 155, sd = 214 p = 0.00), χ2/sd = 486/214 = 2.28, CFI value was 0.945 and GFI value was 0.927."                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [402] "Confirmatory Factor Analysis: The current task was analyzed along with other measures of WMC. In comparison with two- and three-factor models, the fit of the one-factor model was very good: Chi-squared (5, N = 236) = 9.87, Chi-squared/df = 1.97, CFI = .99, NFI = .98, NNFI = .98, SRMR = .02. Although the two-factor model appeared to fit the data slightly better than did the one-factor model, the difference in chi-square values for the two models was non-significant by a chi-square difference test. Thus, the hypothesis for a domain-general WMC construct could not be rejected."                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [403] "Confirmatory Factor Analysis: The current task was analyzed along with other measures of WMC. In comparison with two- and three-factor models, the fit of the one-factor model was very good: Chi-squared (5, N = 236) = 9.87, Chi-squared/df = 1.97, CFI = .99, NFI = .98, NNFI = .98, SRMR = .02. Although the two-factor model appeared to fit the data slightly better than did the one-factor model, the difference in chi-square values for the two models was non-significant by a chi-square difference test. Thus, the hypothesis for a domain-general WMC construct could not be rejected."                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [404] "Confirmatory Factor Analysis: The current task was analyzed along with other measures of WMC. In comparison with two- and three-factor models, the fit of the one-factor model was very good: Chi-squared (5, N = 236) = 9.87, Chi-squared/df = 1.97, CFI = .99, NFI = .98, NNFI = .98, SRMR = .02. Although the two-factor model appeared to fit the data slightly better than did the one-factor model, the difference in chi-square values for the two models was non-significant by a chi-square difference test. Thus, the hypothesis for a domain-general WMC construct could not be rejected."                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [405] "Exploratory Factor Analysis: An initial EFA was conducted on the items using a subsample (Sample A; n = 251), revealing 6 factors with eigenvalues > 1; however, the scree plot and parallel analysis suggested a 4-factor solution. After removing weak (< .40) and cross-loading items, the remaining 4 factors, with 16 items and eigenvalues > 1, accounted for 74.8% of the variance. Confirmatory Factor Analysis: CFA was conducted using a second subsample (Sample B; n = 260) to assess the 4-factor model found via EFA, and also a 1-factor model, a 2nd-order model (i.e., with a general factor representing the 4-factor model, to determine support for a hierarchical structure), and a bifactor model (i.e., a general factor plus the 4 factors identified in the EFA). All models except the 1-factor model demonstrated satisfactory fit. Of the remaining models, the bifactor model demonstrated the best fit to the data."                                                                                        
## [406] "Confirmatory Factor Analysis: CFA assessed the unidimensionality of the SBPS in the Study 3 sample (n = 2,592). As in Study 2, fit indices indicated a good fit of the single factor model to the observed data: CFI = .978, TLI = .970, RMSEA = .061, SRMR = .025, with the exception of the chi-square result, chi-square (20) = 205.57, p < .001; however, the authors noted that use of the chi-square test may be problematic for large samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [407] "Principal Components Analysis: PCA was initially used to assess the number of factors for the RMQ, revealing 3 factors with eigenvalues greater than 1. Factor Analysis: Using the Study 2 sample (n = 264), it was reported that Factors 1 (Personal Control), 2 (External Control), and 3 (Stability) accounted for 26.74%, 20.62%, and 15.31% of the total variance, respectively (62.68% of total variance overall)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [408] "Exploratory Factor Analysis: EFA was conducted on the 16 items administered to the convenience sample (n = 509). Results indicated a unifactorial structure that explained 51% of the variance. Subsequently, 9 items meeting elimination criteria were progressively removed. A second EFA conducted on the remaining 7 items again indicated a unifactorial structure, which in this second iteration explained the 57% of the variance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [409] "Confirmatory Factor Analysis: CFA was conducted on the 7-factor structure identified through the literature review (n = 644). CFA also tested a 1-factor model, with all items loading onto it. Results showed the 7-factor structure as demonstrating the best fit for the data, with the items measuring the factors they were proposed to measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [410] "Confirmatory Factor Analysis: The results of the CFA supported the hypothesized five-factor structure of the 19-item scale. The fit statistics met the criteria for an acceptable fitting model, chi-square (142, N = 281) = 292.08, p < .001, CFI = .98, IFI = .98, SRMR = .06, and RMSEA = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [411] "Exploratory Factor Analysis: EFA was conducted on the initial 29 items using participants in Wave 1 of instrument development (n = 135). Three factors were extracted that explained 62.39% of the variance. A second EFA was conducted to reduce the number of items, resulting again in the same 3-factor solution, with factor loadings at .45 or higher and no significant cross-loadings (i.e., > .32). The model explained 81.78% of the variance and contained 21 items. Confirmatory Factor Analysis: CFA was used to confirm the factor structure identified through EFA using data collected during Wave 2 (n = 307). The resulting fit indices showed that the model was a good fit for the data: chi-square (24) = 55.31, p < .001, NNFI = .973, CFI = .982, SRMR = .027, RMSEA = .065 (90% confidence interval [.043, .089], p = .125)."                                                                                                                                                                                     
## [412] "Exploratory Factor Analysis: An exploratory factor analysis using a minimal residual (ordinary least squares) factoring method and oblimin rotation was conducted to examine the structure of the questionnaire. Visual examination of the screen plot and parallel analysis revealed a four-factor structure: χ² (df = 101,N = 138) = 148.21,p < .0016, Tucker-Lewis Index of factoring reliability = .918, root mean square error of approximation = .065 (10% confidence interval = .037, .078), root mean square of the residuals = .04. Three items (Q7, Q8, and Q19) were removed due to low or cross factor loadings."                                                                                                                                                                                                                                                                                                                                                                                                             
## [413] "Confirmatory Factor Analysis: The measurement model fitted the data well across all countries (χ2 (207, N = 4591) = 1218.61, p < .001, χ2/df = 5.89, CFI = 0.99, TLI = 0.98, RMSEA = 0.03 (90% CI [0.03, 0.03], SRMR = 0.03)). Measurement Invariance: The model equally fitted the data well in each country, confirming configural invariance. Metric and scalar invariance were also established."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [414] "Exploratory Factor Analysis. EFA was conducted on the 89 initial items, using a subsample of the participants (Study 1: n = 203). The scree plot results revealed a 3-factor model that accounted for 52.85% of the total variance. Cross-loading and nonsignificant loading items were sequentially removed until a simple structure was reached that was comprised of 18 items. Confirmatory Factor Analysis: CFA was conducted using a subsample of the participants (Study 2: n = 199) to assess the 3-factor, 18-item structure. Results showed the model to have good fit: chi-square (df = 132) = 192.78, comparative fit index (CFI) = .90, goodness of fit index (GFI) = .95, Tucker–Lewis index (TLI) = .96, and root mean square error approximation (RMSEA) = .05."                                                                                                                                                                                                                                                           
## [415] "Confirmatory Factor Analysis: Findings supported the structure of the four-factor hypothesized model. The chi-square value for the model was χ²(164, N = 142) = 521.30, p < .001. In addition, the comparative fit index (CFI) = .91, the Bentler-Bonett normed fit index (NFI) = .88, the Bollen's incremental fit index (IFI) = .91, the Tucker–Lewis index (TLI) = .90, the root mean square error of approximation (RMSEA) = .10, and the standard root mean square residual (SRMR) = .05 were obtained."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [416] "Exploratory Factor Analysis: EFA revealed 3 factors. The first factor, (A/U), contained 10 items and explained 48.98% of the variance. The second factor, (E/A), contained 8 items and explained 5.3% of the variance. The third factor, (F/A), contained 6 items and explained 3.63% of the variance. This version the CORS (the CORS-24) consisted of 24 items that were theoretically consistent with the authors' definition of clericalism. Confirmatory Factor Analysis: CFA assessed the 3-factor structure found via EFA. After removing 6 items the loaded poorly, results revealed a finalized 18-item measure (the CORS-18). Moreover, the 3 factors were determined to be first-order factors that loaded onto a second-order factor (CORS). The second-order CORS model supported a total CORS score and demonstrated good fit: 2(129, N = 391) = 308.572, p < .001, (SRMSR = .05, CFI = .97, RMSEA = .06, 90% confidence interval [.05, .07])."                                                                             
## [417] "Confirmatory Factor Analysis: Confirmatory factor analysis (CFA) revealed an inadequate fit for the original EDE-Q structure but revealed a good fit for an alternative structure suggested by recent research with predominately overweight/obese samples (i.e., Hrabosky et al., 2008; Grilo et al., 2010, 2012, 2013). CFA supported a modified seven-item, three-factor structure; the three factors were interpreted as dietary restraint, shape/weight overvaluation, and body dissatisfaction. Measurement Invariance: Factor loadings and item intercepts were found to be invariant across sex (all p's > .120) and overweight (BMI ≤ 25 vs.> 25; N = 205 with BMI > 25) status (all p's > .150). However, residual item variances and factor means were significantly higher for females (all p's < .0001) and those with BMI > 25 (all p's < .035)."                                                                                                                                                                           
## [418] "Confirmatory Factor Analysis: The results showed the model closely fitting the data: χ² (524, n = 2,098) = 2,226.47, RMSEA = .04, 90% confidence interval (CI) [.038, .041], CFI = .97. All hypothesized factor loadings were substantial and significant. Measurement Invariance: Three CFAs were conducted on successive CFA models, to successively evaluate configural, weak, and strong invariance (Little, Preacher, Selig, & Card, 2007). All three tests indicated measurement equivalence. CFA also evaluated the hypothesized measurement structure of the longitudinal model, including the T1 contextual measures (socialization, beliefs, and perceived parental SES), the T1 financial identity, and the T2 measures of financial identity."                                                                                                                                                                                                                                                                                
## [419] "Principal Component Analysis: PCA was conducted to find the common dimensions in the 15 care dependency items. For the total sample (n = 525), the first factor had an eigenvalue of 9.28, which explained 61.9% of the variance. Factor extraction for the four combined countries demonstrated that all 15 items loaded on the first factor. Factor loadings ranged from 0.66 to 0.86. As none of the items had a factor loading lower than 0.40, no item reduction occurred. Individually, each of the four countries showed corresponding findings on the first factor. The results supported a one-factor solution both for each country and for the four data sets combined."                                                                                                                                                                                                                                                                                                                                                       
## [420] "Exploratory Factor Analysis: EFA assessed factor structure by using principal axis factoring and orthogonal (Varimax) rotation in a subsample (n = 295). The Kaiser criterion indicated a 3-factor structure that explained 74.27% of the total variance, with 3 items loading onto each factor. Confiirmatory Factor Analysis: CFA using a different subsample (n = 285) demonstrated good model fit: chi-square /df = 2.02 (chi-square 24, N=285 = 48.5; p < .001), TLI = 0.95, CFI = 0.97, RMSEA = 0.59 (90% CI = between 0.30 and 0.90)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [421] "Exploratory Factor Analysis: EFA revealed a 4-factor solution that explained 59.83% of the variance. Correlations among the 4 factors showed strong associations among the first 3 factors. But the fourth factor (Patient involvement) showed only significant correlation with the second factor (Interaction and support). Confirmatory Factor Analysis: CFA showed the Patient involvement construct having a low loading of 0.12 on the higher-order perceptions of the handover construct, which explained only 1% of its variance; consequently, this factor was removed. The remaining 3 factors underwent additional analysis and modification using a validation sample (n = 170). The replication model provided adequate fit to the data (χ² = 140.94, df = 68, p = 0.000, RMSEA = 0.08, with an associated 90% confidence interval of 0.06–0.09, SRMR = 0.07 and CFI = 0.91). As 6 of the 20 original HES items (O'Connell, MacDonald, & Kelly, 2008) were removed, a finalized 14-item revised instrument resulted."        
## [422] "Exploratory Factor Analysis: A one-factor solution was accepted with an Eigenvalue of 14.5, accounting for 68.8% of the variance. Confirmatory Factor Analysis: The resulting model was a robust fit to the data as follows: χ2 (2, N = 1973) = 7.47, p = 0.024, RMSEA = 0.04, TLI = 0.99, CFI = 1.00. Significant factor pattern coefficients were found indicating that the construct was well captured by the individual items retained."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [423] "Exploratory Factor Analysis: A one-factor solution was accepted with an Eigenvalue of 4.98, accounting for 71.2% of the variance. The factor loadings ranged from 0.69 to 0.92 and were all retained. Confirmatory Factor analysis: Following the removal items, the model exhibited good fit: χ²(5, N=1973)=28.36, p<0.001, RMSEA=0.05, TLI = 0.99, CFI = 0.99 (despite the significant chi-square test due to the large sample size)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [424] "Confirmatory factor analysis: For the treatment-seeking sample (English YSL-SF), fit indices showed a better fit for the model containing two correlated factors, χ2(19, N = 95) = 29.58, p > .05, CFI = 0.952, RMSEA = 0.077, than the one‐factor model, χ2(20, N = 95) = 34.55, p < .05, CFI = 0.934, RMSEA = 0.088. The two‐factor solution was also favored by a significant χ2 difference test, Δχ2(Δdf) = 4.99 (1), p < .05. For the community samples (Dutch and German YSL-SF), a one-factor model provided a good fit (chi-square (df) = 34.55, p < .05, CFI = 0.934, TLI = 0.908, RMSEA = 0.088, SRMR = 0.047)."                                                                                                                                                                                                                                                                                                                                                                                                                
## [425] "Exploratory Factor Analysis: Exploratory factor analyses revealed a clear six-factor structure. Confirmatory Factor Analysis: The final 6-factor model with free covariances between items showed a better-fitting model than all previously tested models, χ2 = 1005.38, df = 306, p < .001, CFI = .94, TLI = .93, RMSEA = .05. The higher order model with broadband positive and negative factors also demonstrated good fit, χ2 (317, N = 1,066) = 1082.16, p > .10, RMSEA = .048, 95% CI [.044–.051], CFI = .92, SRMR = .061. Measurement Invariance: Strong to strict measurement invariance for child gender, parent gender, and child age were found."                                                                                                                                                                                                                                                                                                                                                                            
## [426] "Exploratory Factor Analysis: A varimax rotated factor analysis of the 12 items identified for inclusion resulted in a four-factor solution (these factors were not labeled by the authors), with 10 of the items loading well. While communalities on three of the items were very low, they still shared at least 23% of the variance with the extracted component. Confirmatory Factor Analysis: A satisfactory fit was obtained (Chi-square (51, N=1540) = 255.419, p=0.0001; Adjusted Goodness of Fit Index = 0.960; Comparative Fit Index = 0.957; Root Mean Square Error of Approximation = 0.050)."                                                                                                                                                                                                                                                                                                                                                                                                                                
## [427] "Exploratory Factor Analysis: Using a subsample (n = 136) for analysis, EFA results indicated a 5-factor solution. Confirmatory Factor Analysis: CFA used a second subsample (n = 204) to assess the 5-factor solution found via EFA. Analysis also considered a second-order model. While the second-order model showed good fit to the data, the 5-factor first-order model showed slightly better fit indices: CFI = 0.956; TLI = 0.948; SRMR = 0.045; RMSEA = 0.038 [90% CI: 0.020, 0.053]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [428] "Exploratory factor analysis: EFA supported a 3-factor solution (CFI = .960; RMSEA = .041; chi-square (348, N = 2285) = 1662.065, p < 0.001; TLI = .951). Confirmatory and SEM: The orthogonal, two-factor model above was employed in a CFA, resulting again in fit parameters just short of conventional thresholds (CFI = .946; RMSEA = .042; chi-square (405, N = 3377), p < 0.001; TLI = .942). Valences of all loadings were as predicted. Again, the threefactor model was a better fit (CFI = .970; RMSEA = .032; chi-square (395, N = 3377) = 1782.342, thus confirming the great tradition/little tradition model of Burmese Buddhist religiosity in its three-factor form."                                                                                                                                                                                                                                                                                                                                                     
## [429] "Exploratory Factor Analysis: EFA with Promax rotation resulted in the removal of items 11 and 12, as they were identical to Items 1 and 2, respectively. Eight of the remaining items loaded on the first factor which explained 37.892% of the postrotation variance and, 2 items loaded on the second factor with 11.329% of the postrotation variance. Confirmatory Factor Analysis: CFA confirmed the factor structure obtained from EFA with good fit indices: chi-square (31, N = 252) = 75.794, p<.001; chi-square/df = 2.445, adjusted goodness-of-fit index = .900, goodness-of-fit index = .943, comparative fit index = .933, Tucker–Lewis index = .903, incremental fit index = .934, standardized root mean square residual = .0545, and root mean square error of approximation = .076 (90% confidence interval = .054–.098)."                                                                                                                                                                                              
## [430] "Confirmatory Factor Analysis: CFA revealed mediocre fit for a one-factor structure of the PHQ-9, regardless of diagnostic status (chi-square 27[N = 762]. 211.188; p = 0.00; CFI = .95; TLI = .94; RMSEA = 0.095; [0.08–0.11]; SRMR = 0.107)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [431] "Exploratory Factor Analysis: EFA was conducted on a random half of the sample (n= 740). The scree plot suggested a 5-factor solution. Analyses with 4-, 5-, and 6-factor solutions indicated that a 4-factor solution would yield the most parsimonious fit. EFA results also showed that the 2 JVQ items related to accidents and illnesses of loved ones yielded negative loadings on child maltreatment, and were the only items with negative loadings on any factor. Once these items were removed from further analysis, a 4-factor model with 31 items resulted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [432] "Exploratory Factor Analysis: After the elimination of the anomalies under the multivariate outlier analysis and subsequent exploratory factor analyses in the context of sample 2 with the remaining cases (n = 2443), an interpretable model with k = 6 factors and 15 items was chosen. Confirmatory Factor Analysis: The p-value of the chi-square test is <0.001. The RMSEA is 0.044 (95% confidence interval (0.040; 0.048)). After Hu and Bentler (1998) indicates a RMSEA <0.06 a high model quality. The value of the SRMR is 0.032, the Tucker Lewis Index (TLI) is 0.947, the Comparative Fit Index (CFI) is 0.962. These three parameters also indicate a high model quality (ibid.). This appears when all relevant parameters are taken into account Overall model adequate and acceptable."                                                                                                                                                                                                                                 
## [433] "Exploratory Factor Analysis: In total, the six factors explained 71.4% of the sample variance. The number of items for each factor was reduced to 4 by selecting the items that loaded exclusively on their appropriate factor, and that the highest coefficients (all above .30). Confirmatory Factor Analysis: This final 6-factor model revealed an adequate fit; χ2(234, N = 339) = 531.97 p<.001, CFI = .92, IFI = .92, RMSEA = .06, and PCFI = .78. All estimated parameters of the model were significant and within an acceptable range."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [434] "Confirmatory Factor Analysis: After the deletion of Item 9, the confirmatory factorial analysis suggested a good model fit for the three factors: χ2 = 142.357 (DF = 18, N = 856), CFI = 0.96, GFI = 0.96, TLI = 0.93, RMSEA = 0.08, RMR = 0.02."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [435] "Principal components analysis: PCA for the final set of 17 items yielded three components with eigenvalues over 1.00, cumulatively accounting for 56.72% of the total variance. Confirmatory factor analysis: After adding correlations between several pairs of error factors, the model appeared to be a good fit to the data based on the fit indexes used. While the chi-square value was statistically significant (105, N = 448) = 222.99, p = .001, the Goodness of Fit (GFI), Incremental Fit Index (IFI), Tucker–Lewis Index (TLI), and Comparative Fit Index (CFI) were .944, .965, .954, and .965, respectively, and the Root Mean Square Error of Approximation (RMSEA) was .050 [90% CI(.041–.060)]. These results suggest that the subscales Cultural Presentation Appropriateness, Language Appropriateness, and Appealing to the White Ideal are reasonable measures of Latina American shifting."                                                                                                                        
## [436] "Exploratory Factor Analysis: EFA, using a sample of primary and secondary school students (n = 236), assessed the teachers' (Moreno-Murcia et al., 2008), parents', and peers' Spanish language versions (Gonzalez-Cutre et al., 2014) of the original Perceived Autonomy Support Scale for Exercise Settings (PASSES; Hagger et al, 2007). Results showed that only items 5, 9, 10, and 12 of the three versions met Hair et al.'s (2018) proposed psychometric requirements; consequently, the PASS-ACS resulted in a one-factor solution with 12 items spread across three sections (i.e., teachers, parents, and peers). Confirmatory Factor Analysis: CFA used a different sample of primary and secondary school students (n = 712) to assess the one-factor solution found via EFA. Results showed good fit to the data for each of the three sections. Measurement Invariance: Multi-group factor analysis showed no statistically significant difference (p > .05), resulting in a null hypothesis of invariance across gender." 
## [437] "Exploratory Factor Analysis: EFA was conducted on the combined data from Studies 1 and 2 (N = 103), to determine the number of reliable factors that could be extracted from the data. As expected, the results showed that only one reliable factor could be extracted, which explained 54% of the variance; these results mirrored the unidimensionality of the dementia version of the BRCM (Riley et al., 2013)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [438] "Exploratory Factor Analysis using the maximum likelihood method with an oblimin rotation revealed a parsimonious 2-factor solution that explained 63.65% of the total variance and was comprised of 19 items designed to measure the 2 proposed dimensions of escapism. Low loading items were removed, resulting in 11 retained items. Confirmatory Factor Analysis with maximum likelihood estimation, conducted on a second subsample revealed an adequate factorial structure: χ² (43, N = 151) = 198.6, NFI = .904, CFI = .923, RMSEA = .01. Moreover, all factor loadings were reported to be greater than .56 on their respective factor. Good fit indices were also noted: χ² (43, N = 302) = 123.2, NFI = .931, CFI = .954, RMSEA = .079."                                                                                                                                                                                                                                                                                       
## [439] "Exploratory Factor Analysis: EFA using principal axis factoring with oblique rotation was conducted on the CORSI's initial 30 items, using a subsample of the undergraduate sample (n = 813). Five interpretable factors were revealed after removing four complex items. Confirmatory Factor Analysis: CFA used a second subsample of the undergraduate sample (n = 813). The results confirmed the five-factor model, which demonstrated good fit following the addition of four covariance terms (goodness of fit index = .897, comparative fit index = .918, Tucker–Lewis index = .907, root mean square error approximation = .061). After CFA, the finalized CORSI had 26 items."                                                                                                                                                                                                                                                                                                                                                   
## [440] "Confirmatory Factor Analysis: For Standard A: Welcoming and meeting culture, the CFA results showed good model fit indices, χ2 (49, N = 309) = 145.86, CFI = 0.95, SRMR = 0.05, RMSEA = 0.08. For Standard B: Various and respectful communication, the CFA results demonstrated good model fit indices, χ2 (85, N = 309) = 261.88, CFI = 0.92, SRMR = 0.05, RMSEA = 0.08. For Standard C: Educational cooperation, the CFA results showed good model fit indices, χ2 (260, N = 309) = 681.166, CFI = 0.90, SRMR = 0.05, RMSEA = 0.07. For Standard D: Parent participation, the CFA results revealed good model fit indices, χ2 (69, N = 309) = 203.70, CFI = 0.95, SRMR = 0.05, RMSEA = 0.08. The results showed that the measurement models of the four subscales exhibited good fits to the data."                                                                                                                                                                                                                                    
## [441] "Principal Axis Factor Analysis: Following the removal of items due to cross-loadings, the principal axis factor analysis for the final set of 12 items yielded two factors with eigenvalues over 1.00, and one factor yielding an eigenvalue of .95, cumulatively accounting for 65.17% of the total variance. Confirmatory Factor Analysis: CFA was performed on the 12-item AsAWSS items to evaluate the hypothesized three-factor structure. The model appeared to be a good fit to the data. The initial analysis resulted in a statistically significant chi-square value of 97.690 (51, N = 247) p < .001, but due to the sensitivity of this measure to sample size, other fit measures were used. The GFI (Goodness of Fit Index: .936), IFI (Incremental Fit Index: .960), TLI (Tucker Lewis Index: .947), CFI (Comparative Fit Index: .959), and RMSEA (Root Mean Square Error of Approximation: .061, 90% CI: .042–.079) taken together suggested an adequate to good fit of the model to the data."                           
## [442] "Confirmatory Factor Analysis: CFAs yielded a satisfactory fit for the two-factor model: χ2 [15, N = 538] = 62.104, p < .001, CFI = .986, SRMR = .028 and RMSEA = .076. CFAs were also employed separately for different subsamples, namely those respondents who were finally selected for the fMRI study as well as those remaining respondents who were not selected. In accordance with the findings for the whole sample, a satisfactory model fit was only obtained for the two-factor model. Factor-analytical findings were confirmed for the data of an independent sample of respondents who completed the PPES in a further evaluation study (two-factor model: CFI = .986, RMSEA = .073, SRMR = .036, factor intercorrelation = .729; one-factor model: CFI = .822, RMSEA = .246, SRMR = .087)."                                                                                                                                                                                                                               
## [443] "Exploratory Factor Analysis: EFA was conducted on a sample of parents of adolescents aged 11–18 years (n = 256). The Resulting 21-item measure comprised a 3-factor solution that explained 59.69% of the variance. Confirmatory Factor Analysis: CFA assessed a 19-item version of the PARS, due to errors in online survey; 2 items were removed. Further analysis removed 4 non-fitting Connectedness items, resulting in a 15-item instrument across all groups. Measurement Invariance: Structural equation modeling (SEM) assessed measurement invariance across the 3 parallel 15-item versions (parent, adolescent, emerging adult). One-factor congeneric models for each subscale tested the multi-factor measurement model. Measurement Invariance: The latent variables and indicators were tested across groups, with results showing that one-factor congeneric modeling provided support for the 3-factor, 15-item PARS structure for both adolescent and emerging adult samples."                                         
## [444] "Exploratory Factor Analysis: Exploratory cluster analysis identified eight factors. Confirmatory Factor Analysis: In the CFA of the final 37 items in the other half of the split sample (n = 545), two indices, namely RMSEA and SRMR, met the fit requirements: RMSEA = .055 (95% Confidence Interval .052 - .058; CFI = .860; TLI = .845; SRMR = .064; and Chi-square = 1597.7 (df 601, p < .0001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [445] "Confirmatory Factor Analysis: The six-factor solution showed a chi-square of 231.36 (df = 120, N = 209), a Root Mean Square Error of Approximation (RMSEA) of 0.068, a Comparative Fit Index (CFI) of 0.88, a Non-Normed Fit Index (NNFI) of 0.85, and a Goodness of Fit Index (GFI) of 0.89."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [446] "Exploratory Factor Analysis; EFA assessed a sample of employees (Sample 1; n = 328) using principal axis factoring and promax rotation. The results showed the 7 retained items loading on one factor, explaining 71.05% of the total variance. Moreover, all factor loadings exceeded .60. Confirmatory Factor Analysis: CFA was conducted with different sets of conceptually relevant constructs to assess Samples 2 (n = 243), 3 (n = 279), and 4 (n = 267). Measurement Model: Seven measurement models (from 1- to 10-factors) were used to evaluate six types of unethical business practices. Across all samples, the results demonstrated that the hypothesized 5-factor model fit the data significantly better than the other models across the samples in both studies."                                                                                                                                                                                                                                                      
## [447] "Confirmatory Factor Analysis: The 24-item six-factor correlated model obtained a good fit chi-square(237, N = 478 = 553.25, p<.001; chi-square/df 2.33; CFI = .93; TLI = .92; IFI = .93; SRMR = .047; RMSEA = .053 (90% CI = .047, .059). Measurement Invariance: The results from the two multi-group analyses provide support for the instrument’s invariance across gender and age."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [448] "Exploratory factor analysis: Based on EFA results, 15 items across four factors were identified, yielding adequate fit indices: chi-square (df 91, N = 236) = 1162.555, p < 0.001; CFI = 0.943; TLI = 0.874; SRMR = 0.025."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [449] "Exploratory Factor Analysis: EFA used a subsample (n = 350) to assess factor structure, extracting one factor. Confirmatory Factor Analysis: CFA, using a subsample (n = 350), confirmed the one-factor result found via EFA."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [450] "Exploratory Factor Analysis: EFA used a subsample (n = 350) to assess factor structure; a one-factor solution was extracted. Confirmatory Factor Analysis: Using a subsample (n = 350), CFA confirmed the one-factor solution found via EFA."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [451] "Exploratory Factor Analysis: EFA used a sample of MTurk participants (n = 594) and a sample of Canadian undergraduates (n = 540) to test the 19 items. In both samples, inspection of the eigenvalues, scree plot, and factor loadings a 2-factor solution was suggested that had eigenvalues greater than 1.0. Nine items were removed for not meeting loading criteria, resulting in 10 retained items. Confirmatory Factor Analysis: CFA was conducted on the 10 retained items from EFA, using a sample of MTurk participants (n = 392); both a 2-factor model and a one-factor model were compared. The results showed the 1-factor model to have good fit to the data (CFI = .96, RMSEA = 0.07, SRMR = .05). For the 2-factor model, the items from each factor were combined to form a more parsimonious composite measure. The moderate-to-high correlations observed between the 2 factors across 3 samples suggest that the 2 subdimensions can be justifiably treated as a single dimension for theory-testing purposes."      
## [452] "Exploratory Factor Analysis: EFA using maximum likelihood and oblimin rotation, eliminated items with cross loadings above 0.40 and weak loadings below 0.30 (Tabachnick & Fidell, 1989). Ultimately, 22 items remained. A second EFA conducted with the remaining 22 items revealed a 4-factor solution with eigenvalues of 8.23, 2.52, 2.15, and 1.59; these represented 37.42%, 11.47%, 9.78% and 7.26% of the variance, respectively, explaining 66% of the total variance (no cross-loadings were observed for any of these items). Confirmatory Factor Analysis: CFA used the raw data for the 22 items as a basis for the measurement model. Measurement Model: A hypothesized hierarchical model with one latent dimension and four method dimensions was analyzed. Results showed the model yielding a good fit to the data: chi-square (192, N = 610) = 553.61, p < .001), with a comparative fit index (CFI) = 0.95, an incremental fit index (IFI) = 0.95, and a root-mean square error of approximation (RMSEA) = 0.05."     
## [453] "Exploratory Factor Analysis: EFA performed on Sample 1 (n = 1,540) revealed a 5-factor structure for the MET that correspond to the five pillars. Confirmatory Factor Analysis: CFA performed on Sample 2 (n = 1,083) confirmed the 5-factor structure and demonstrated excellent fit (RMSEA = 0.051; pClose = 0.408; CFI = 0.950; TLI = 0.936)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [454] "Confirmatory Factor Analysis: Results showed a good fit of the measurement model [chi-square(246, n = 367) = 578.222 (p <.001); chi-square/gl = 2.35; RMSEA = .062 (CI = .055- .069); CFI = .94; GFI = .88; TLI = .93; IFI = .94], with all indices considered within the acceptable range."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [455] "Principal Component Analysis: PCA identified three factors. Confirmatory Factor Analysis: Model fit: chi-square (62, n = 197) = 106.936, p < .05, chi-square/df = 1.72, RMSEA = .063 (90% CI: .042–.082), SRMR = .072, CFI = .914, and TLI = .891."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [456] "Exploratory Factor Analysis: Following parallel analysis and the removal of items due to low- and cross-loadings, principal axis factor analysis with promax rotation suggested a three-factor solution. Visual inspection of the scree plot, eigenvalues, and percent of variance accounted for also suggested three factors. The first factor accounted for 45% of variance in the data and the second and third factor accounted for 6% and 5% of additional variance in the data, respectively. Confirmatory Factor Analysis: CFA confirmed a 17-item higher order model with three specific factors and one higher order general factor. Fit for this model was as follows: 𝜒² (116, N = 201) = 190.300, p < .001, CFI = .954, SRMR = .045, RMSEA = .056 (90% CI: .042, .071), AIC = 8137.515, BIC = 8315.893."                                                                                                                                                                                                                      
## [457] "Exploratory Factor Analysis: The three-factor solution with 16 items accounted for 43.96% of the variance in the SKAMMS items. Confirmatory Factor Analysis: The fit statistics for this three-factor oblique model were acceptable, chi-square (101, n = 537) = 298.426, p < .05, CFI = .90, TLI = .88, SRMR =.061, and RMSEA = .060, 90% CI [.052, .068]. Multigroup Confirmatory Factor Analysis: Results indicated that the three-factor bi-factor model provided adequate fit for both groups: for online sample and the in-class sample. Measurement Invariance: Results provided evidence of partial scalar invariance."                                                                                                                                                                                                                                                                                                                                                                                                           
## [458] "Exploratory Factor Analysis: EFA, using Subsample A (n = 1057), conducted Principal Axis Factoring (PAF) for the 30 draft items. Both a 7- and a 3-factor solution were tested. The 3-factor solution results showed that almost all items loaded > .4 onto a factor and no items cross-loaded > .4 onto a second factor. Item reduction from 30 to 14 was based on low communalities, factor loadings, and content validity results. Confirmatory Factor Analysis: CFA, using Subsample B (n = 1041), confirmed the 1–4 factor solutions found in the EFA. A higher order CFA tested a bi-factor CFA model with 3- and 4-factor solutions, where items load onto a general factor and specific sub-factors. A second-order CFA was run on the 3-factor solution in which items were indicators of anhedonia sub-factors, and these sub-factors were indicators of an overall factor. Both analyses indicated that the 3-factor solution can measure one underlying construct, as well as a multidimensional measure."                    
## [459] "Confirmatory factor analysis: Analyses demonstrated that the three-factor CFA model obtained better psychometric properties than three other models tested for the BPNS-ACS. Structural equation modeling CFA: The results showed adequate fit indexes: chi-square (78, N=675) = 163.11, p < .001, chi-square/df = 2.09; CFI = 0.98; TLI = 0.98; SRMR = 0.036; RMSEA = 0.040 (90% CI = 0.032, 0.049; p-close = .969)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [460] "Confirmatory Factor Analysis: Although the tested unidimensional model did not obtain the required chi-square value, chi-square(152) = 375.23, p < .001, N = 1,161, the model-to-data fit indices were very high: RMSEA = .036 (90% CI [.031, .040]), SRMR = .057, CFI = .99, and TLI = .99. Measurement Invariance: The results demonstrated a very good data fit for configural invariance across gender. The results showed full metric invariance with satisfactory model indices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [461] "Confirmatory Factor Analysis: Results from confirmatory factor analyses of the IPEMS indicated acceptable-to-good fit of the factors to the data chi-square (df = 190, N = 238) = 5063.86, p < 0.000; RMSEA = 0.08 (90% CI 0.073, 0.092); CFI = 0.95; TLI = 0.94."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [462] "Confirmatory Factor Analysis: The index of fit of the factor structure model indicated a good fit, with the following indices: chi-square (5, N= 1,013)= 1.102, p= .954, TLI= .999, CFI= .999, SRMR= .017, and RMSEA= .001 (CI 95%=.010-.050). Measurement Invariance: Multi-group analyses showed the invariance of the factor structure of FSII-S across gender and age."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [463] "Exploratory Factor Analysis: EFA was conducted on the 38 items that resulted from expert panel review, using a sample of undergraduates (n = 340). Six factors were initially extracted via the minimum residual method (Harman & Jones, 1966). Using the orthogonal \"varimax\" rotation criterion to clarify item selection resulted in 4 interpretable factors. Confirmatory Factor Analysis: CFA resulted in 3 correlated factors, with no correlated errors, for a final 15 items within a 3-factor model. Model fit indices indicated that the correspondence between the 3-factor model and sample covariance matrix was satisfactory: chi-square (87) = 277.08, p) = .000, RMSEA ) = .09, SRMR) = .07, TLI) = .88, CFI) =.90."                                                                                                                                                                                                                                                                                                    
## [464] "Confirmatory Factor Analysis: An item-level CFA was used to create parcels for a just-identified measurement structure. Parcels were created by pairing items having higher loadings with those having lower loadings (Little et al., 2013). Factor loadings for each construct were constrained to average to one (Little et al., 2006). Fit indices indicated a fairly good fit to the model, χ² (24, n = 307) = 51.040, p = .001; RMSEA = .059, 95% CI [.048–.69]; CFI = .958; TLI = .937; SRMR = .049. All specific dimensions were well-defined, with standardized factor loadings above .500. The Face and Dignity constructs remained significantly correlated, while Face and Honor were negatively correlated. Honor and Dignity were shown to not be related."                                                                                                                                                                                                                                                                  
## [465] "Exploratory Factor Analysis: EFA used principal-axis factoring (PAF) with oblimin rotation on a subsample (n = 331) of participants. The results indicated a 2-factor solution as per the screen test. Factor 1 (Pro-trait protection) contained 9 positively worded items that explained 46.90% of the original data set variance; Factor 2 (Con-trait protection) contained six negatively worded items that explained 14.76% of the original data set variance. Based on the PAF results, and to balance the pro-trait and con-trait items, the initial 15-item scale was reduced to 10 items (5 pro-trait; 5 con-trait) that included the 5 highest factor loadings on each of the factors. Confirmatory Factor Analysis: A CFA using maximum likelihood was performed on the hold-out sample (N = 326), to confirm the 2-factor, 10-item model retained from the PAF. The results yielded an acceptable fit to the data. Also, as expected, the 2 factors were quite strongly related (β = .69)."                                    
## [466] "Exploratory Factor Analysis: EFA used geomin oblique rotation to assess the first half of the sample (n = 652); solutions based on the correlation matrix extracted one to five factors. Analysis focused on a two- and a four-factor solution, with the four-factor solution ultimately being selected. Confirmatory Factor Analysis: CFA used the second half of the sample (n = 698) to assess the model fit of the selected four-factor solution. The results showed strong model fit: χ²(59) = 157.84, p < .01; AIC = 23,369.40; BIC = 23,573.81; RMSEA = .05; CFI = .97; TLI = .96, SRMR = .03. Measurement Invariance: The MSECT used equal-form invariance (Kline, 2011) to calculate separate models for men and women; there were no nonbinary instructors in the sample. Due to an error with identification, the model was rerun, resulting in well-fitting data across gender groups: n = 1,216; χ² (136) = 360.11, p < .01; AIC = 40,491.15; BIC = 40,858.59; RMSEA = .05; CFI = .95; TLI = .94, SRMR = .05."               
## [467] "Exploratory Factor Analysis: Across both samples, the eigenvalues suggested the presence of five factors, which were clearly interpretable. The five factors accounted for a substantial portion of the total variance (undergraduates: 69.50%; community adults: 74.67%). Confirmatory Factor Analysis: The data fit a five‐factor structure well, χ2(109, N = 302) = 416.9, p = 0.00, RMSEA = 0.09, 90% CI [0.08, 0.11], CFI = 0.90, SRMR = 0.09."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [468] "Exploratory Factor Analysis: EFA, with principal-axis factor (PAF) analyses and direct oblimin rotation, assessed factor structure in an early adolescent subsample (n = 759). Items with loadings of .40 or less were removed. The scree plot, parallel analysis, and the minimum average partial (MAP) test indicated a 3-factor solution with 16 items, accounting for 43.75% of the total variance. Two structural models were tested: 1) a 3-factor correlated model and 2) a hierarchical model which predicted that the 16 items could be clustered into the 3 factors, combining the 3 first-level factors into a single second-order factor. The results showed good model fit for the 3-factor correlated model. Measurement Invariance: Multiple-Group Confirmatory Factor Analysis (MGCFA) tested for measurement invariance in a sample of Italian middle school students (n = 490). Across gender, the VAF was shown to measure optimism, pessimism, and hope equivalently in boys and girls, and with equal meaning."      
## [469] "Confirmatory Factor Analysis: After the deletion of one item, the modified Spanish TDEQ-5 showed adequate fit for the five-factor model: χ2 (df = 305; N = 322) = 499.64, p<0.01, CFI = .90, RMSEA = .045, SRMR = .055)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [470] "Exploratory Factor Analysis: EFA was conducted on 45 retained items, using the Study 1 sample (n = 208) to test factorial solutions from two to six factors. The results showed that only the two-factor solution satisfied all a priori criteria. The factors were distinct, showing no cross-loading items and a low correlation between the two factors (r = 0.17). Moreover, the factors had adequate intra-factor loadings (greater than 0.40). The two-factor solution contained 22 items. While both direct and indirect items were created equivalently for the two factors, only indirect or reversed scored statements were kept in the Impermanence Acceptance factor after EFA. Confirmatory Factor Analysis: Using the Study 2 sample (n = 334), CFA tested the 22-item two-factor solution across five stages to confirm factor structure. Items that loaded below 0.50 were removed. This significantly improved model fit for the finalized 13-item IMAAS: Δ χ² (57) = 466.17, p < 0.05."                                 
## [471] "Exploratory Factor Analysis: EFA was used to evaluate the structure of the DSI among an initial sample of participants (n = 440). The results revealed a 2-factor solution having eigenvalues greater than 1. Cross-loading items were dropped individually until no items loaded on a second factor ≥ .32; Once all cross-loading items were removed, 7 items (1-4, 9, 10, 13) loaded on Factor 1 and 3 items (15, 16, 19) loaded on Factor 2. Together, these 2 factors accounted for 67% of the variance. Confirmatory Factor Analysis: Item response theory (IRT), using robust maximum likelihood (MLR), assessed each factor separately. For DSPCC, examination of alpha parameters revealed that all items other than item 1 exceeded very high discrimination. Item 1 only achieved moderate discrimination (alpha = .84); therefore, item 1 was removed from further analysis, resulting in a finalized 9 items."                                                                                                                
## [472] "Exploratory Factor Analysis: EFA was performed on the first sub-group (n = 172). Based on an analysis of the scree plot, a 4-factor solution was identified that accounted for 79.7% of the variance. Confirmatory Factor Analysis: CFA was performed on the second sub-group (n = 172). The results showed satisfactory fit to the data: Chi-square = 118.715 df = 48, p < .01, CFI = 0.98, TLT = 0.97, RMSEA = 0.066 (90% confidence interval [CI] 0.051–0.080, p = .042), SRMR = 0.028."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [473] "Exploratory Factor Analysis: EFA and parallel analysis found a a one-factor solution was supported as the sample eigenvalue was less than the random eigenvalue for the second factor. This first factor accounted for 56.33% of the variance in the items. Confirmatory Factor Analysis: The CFA of the one-factor model with the two correlated error items provided an acceptable !t to the data: Satorra-Bentler chi-square (63, N = 1,012) = 282.53, < p .0001; CFI = .941; RMSEA = .059, 90% CI (.052, .066); SRMR = .042. All items loaded saliently (.524 = λ = .830) onto the single common factor. The correlation of the errors for Items 10 and 11 was .317 and for Items 12 and 13 was .467 (both ps < .001). Measurement Invariance: Support was found for scalar invariance across each group, suggesting that the SRSCUD is equivalent across these groups; thus, mean differences were able to be interpreted as reflective of true differences on the latent construct rather than measurement artifact."               
## [474] "Exploratory Factor Analysis: Principal components analysis with oblimin rotation identified three factors emerged that explained together 58.83% of the variance. Confirmatory Factor Analysis: The three-factor model seemed not to fit adequately the data (RMSEA = 0.080, CFI = 0.889). Because of the high correlation between the item 13 and item 40 in comparison with the other items that loaded on the same factor, the model was re-specified, including an error covariance between item 13 and item 40. This new model seemed to fit adequately the chi-square(50, N =223) = 110.17, < .001, chi-square/df = 2.20, RMSEA = .074 (90% CI = .055–.092), SRMR = .063, TLI = .878 and CFI = .907."                                                                                                                                                                                                                                                                                                                               
## [475] "Confirmatory Factor Analysis: The items from the five common dimensions (the ones common to both tribes) were subjected to confirmatory factor analysis. This measurement model provided a good fit, χ2 (106, N = 500) = 275.70, p < .001, CFI = .93, TLI = .96, RMSEA = .06. A second-order factor analysis was completed to further demonstrate the distinctiveness of the subscales. The results demonstrated good model fit, χ2 (5, N = 500) = 16.86, p < .001, CFI = .98, TLI = .96, RMSEA = .04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [476] "Exploratory Factor Analysis: EFA examined the 33 initial items using the community sample (n = 206), with the hypothesis that the items would load onto 2 factors (Personalized and Socialized nPower). Contrary to the hypothesis, the scree plot showed a 3-factor solution that accounted for 49.4% of the variance after rotation. Seven Personalized nPower and 8 Socialized nPower items were subsequently removed, due to high cross-loadings or loading onto the incorrect factor. A second EFA for the remaining items, showed 2 factors that accounted for 50.47% of the variance after rotation. Confirmatory Factor Analysis: CFA was conducted using the student sample (n = 130) to test both a 2-factor and a 1-factor solution. The results showed the 2-factor solution, which specified that the latent variables were correlated, was adequate according to model fit conventions: χ²(19) = 39.15, p = .004, CFI = .94, RMSEA = .09, SRMR = .08; by contrast, the 1-factor solution showed poor model fit."            
## [477] "Confirmatory Factor Analysis: The three-factor structure originally proposed and confirmed by Hooper et al. (2011) was used as the basis for the CFA analysis. Results indicate that the three-factor structure was a poor fit for the PI-SV, chi-square(209, N = 279) = 1,195.95, p < .001; root-mean-square error of approximation = .13; goodness-of-fit index = .71. Because of the poor fit, EFA was conducted. Exploratory Factor Analysis: Following the removal of several items (due to low and complex loadings), three distinct factors were produced. The resultant three interpretable rotated components explained 50.4% of the total variance."                                                                                                                                                                                                                                                                                                                                                                            
## [478] "Exploratory Factor Analysis: EFA results clearly supported a one-factor solution in the undergraduate sample (n = 386; first eigenvalue = 6.36, all other values < 1) and the clinical sample (n = 400; first eigenvalue = 5.83, all other values < 1), explaining 63.6% and 58.3% of the variance, respectively. The results were consistent with research using the state version (McEvoy et al., 2010)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [479] "Confirmatory Factor Analysis: The goodness of fit indices of the model with two correlated factors in Study 1 was good: χ²(134) = 153.30 (p = .122), CFI = .98, TLI = .98, SRMR = .07, RMSEA = .02 (p = 1.00). The goodness of fit indices of the model with two correlated factors was also good in the overall sample: χ²(134) = 325.32 (p < .001), CFI = .97, TLI = .97, SRMR = .05, RMSEA = .03 (p = 1.00); the two factors correlated at ρ = .42 (p < .01). Measurement Invariance: Using χ²-difference tests and ΔRMSEA, the invariance of slopes and thresholds were confirmed when comparing the development sample (N = 348) with the other samples (N = 1,219; Δχ² = 18.13, Δdf = 16, p = .317, ΔRMSEA < .01) and when comparing women (N = 905) and men (N = 604, Δχ² = 20.94, Δdf = 16, p = .181, ΔRMSEA < .01)."                                                                                                                                                                                                             
## [480] "Confirmatory Factor Analysis: The respecified 12-item three-factor correlated model meaningfully improved the fit to data: χ²(N=282, df = 50) = 170.62, p<.001; χ²/df = 3.41; CFI = .952; IFI = .953; SRMR = .059; RMSEA = .093 (90% CI = .078–.108). Measurement Invariance: The results of multi-group analysis revealed measurement invariance of the 12-item three-factor correlated model across gender."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [481] "Confirmatory Factor Analysis: The model satisfactorily fit the data (n = 2533, RMSEA = .071 [90% confidence interval = .068, .075], SRMR = .039, CFI = .98, GFI = .94), also from the comparison with the original validation data of the instrument (n=31,966, RMSEA = .064 [90% confidence interval = .063, .065], SRMR = .031, CFI = .97, GFI = .96)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [482] "Principal Component Analysis: The best eight items for each dimension were selected using principal component analyses (PCA) and extension factor analysis (EFA). Confirmatory Factor Analysis: Results confirmed that the 6-factor model had sufficient fit indices, RMSEA = .06; 90% CI [.05, .06]; CFI = .88, ML χ²(1,065, N = 1,058) = 4,514.16, p < .001. Similar results were observed for the HEXACO-MSI-Obs. Results confirmed that the 6-factor model had adequate fit indices, RMSEA = .051 90% CI [.049, .053]; CFI = .869, ML χ²(1,065, N = 1,058) = 3,637.63, p < .001. Measurement Invariance: The results showed a full metric invariance across random groups, gender, and classes."                                                                                                                                                                                                                                                                                                                                      
## [483] "Confirmatory factor analysis: CFA in the framework of structural equation modeling was used. The unconstrained model, chi-square(36, N = 88) = 70.32, p < .001, CFI = .980, TLI = .960, RMSEA = .048, 90% confidence interval (CI) of RMSEA (.031, .064), and the constrained model, chi-square(44, N = 88) = 80.77, p < .001, CFI = .979, TLI = .965, RMSEA = .045, 90% CI of RMSEA (.029, .060), both fit the data well. Moreover, the fit of the constrained model did not differ from that of the unconstrained model, chi-square(8, N = 88) = 10.45, ns, reflecting the equivalence of the scales across the two countries. Measurement invariance: Despite this perfect fit, the constrained model, Δchi-square(4, N = 28) = 5.82, ns, CFI = .997, TLI = .985, RMSEA = .033, 90% CI of RMSEA (.000, .086), fit the data well and did not differ from that of the unconstrained model, Δchi-square(4) = 5.82, ns, indicating measurement equivalence in terms of the factor loadings and intercept."                                 
## [484] "Measurement Invariance: Measurement invariance analyses were conducted using CFA with two-group nested SEM to ensure valid comparisons between China and the United States (e.g., Chen, 2008; Little, 1997). Comparison of the configural and metric model, chi-square (57, N = 396) = 94.00, CFI = .97, TLI = .95, RMSEA = .06, indicated metric invariance as the chi-square differences in fit were less than .01. The unconstrained model for the success-oriented responses measure fit adequately, chi-square (48, N = 396) = 89.98, CFI = .97, TLI = .94, RMSEA = .07, indicating configural invariance. The differences in fit between the configural and metric model, were less than .01, indicating metric invariance. However, the differences in fit between the metric and scalar model were greater than .015. After freeing the intercepts of 4 items, results yielded differences in fit less than .01, chi-square (62, N = 396) = 130.74, CFI = .95, TLI = .92, RMSEA = .08."                                           
## [485] "Measurement Invariance: The unconstrained model for the Self-Improvement Goals measure fit adequately, chi-square (36, N = 395) = 63.91, CFI = .98, TLI = .97, RMSEA = .06, indicating configural invariance. The differences in fit between the configural and metric model, were less than .01, indicating metric invariance. When the two items that affected model fit the most were freed, the differences in fit between the metric and scalar model, were less than .01, indicating partial scalar invariance. The unconstrained model for the Self-Worth Goals measure also fit adequately, chi-square (12, N = 395) = 25.03, CFI = .99, TLI = .97, RMSEA = .07, indicating configural invariance. When the factor loadings of the three items that contributed most to noninvariance were unconstrained, the differences in fit were less than .01. The differences in fit of the partial scalar model, chi-square(16, N = 395) = 33.28, CFI = .99, TLI = .97, RMSEA = .07, from the partial metric model were less than .01."   
## [486] "Exploratory Factor Analysis: Exploratory factor analyses indicated that the scale items loaded onto two separate factors (TBI accounted for 25% of the variance in responses, and TBG accounted for 16% of the variance). Confirmatory Factor Analysis: The one-factor model did not fit the data well (goodness-of-fit index [GFI] = .88, adjusted goodness-of-fit index [AGFI] = .83, root mean square error of approximation [RMSEA] = .10, 90% confidence intervals [CIs] = 0.09, 0.10), whereas the two-factor model fit significantly better (GFI = .95, AGFI = .93, RMSEA = .057, 90% CIs = 0.05, 0.06), Δχ²(1, N = 1251) = 492.41, p < .001"                                                                                                                                                                                                                                                                                                                                                                                      
## [487] "Confirmatory Factor Analysis: CFA results initially suggested poor model fit to the data, χ2 (681, N = 211) = 1686.05, p < 0.001, RMSEA = 0.08, CFI = 0.88, TLI = 0.86. Inspection of the correlation matrix indicated that the Norms Against Youth Substance Use measure appeared to be multidimensional; that is, it could be split into two correlated factors. A subsequent CFA, with the two sets of items indicating two correlated factors, demonstrated substantially improved model fit, χ2 (674, N = 211) = 1172.41, p < 0.001, RMSEA = 0.06, CFI = 0.94, TLI = 0.93. The authors then tested a higher order molar readiness factor, composed of eight factors—six original measures and the two new factors derived from the Norms Against Youth Substance Use measure. The higher order factor model had marginal fit, χ2 (694, N = 211) = 1208.06, p < 0.001, RMSEA = 0.06, CFI = 0.94, TLI = 0.93."                                                                                                                         
## [488] "Confirmatory Factor Analysis: A three-level CFA examined the within-client, within-therapist, and between-therapist factor structure for the five HSM items (Hill & Kellems, 2002) that were used to develop the TES. The results showed the goodness-of-fit indicators demonstrating adequate fit with the data, χ² (N = 4,630 sessions) = 186.81, p < .001, CFI = .94, RMSEA = .05, with the exception of the significant chi square statistic. The SRMR values were also acceptable: .02 for the within-client model, .03 for the within-therapist model, and .06 for the between-therapist model. Moreover, all item loadings were significant."                                                                                                                                                                                                                                                                                                                                                                                      
## [489] "Exploratory Factor Analysis: PCA extracted two factors for 57% of the variance. Confirmatory Factor Analysis: This analysis yielded an RMSEA of .11, an SRMR of .07, and a CFI of .88, χ²(89, N = 183) = 248.76, which represented a significantly better fit, Δχ²(1, N = 181) = 368.77, p < .001, than that of the single factor model. However, because this model still did not suggest a good model fit, we tested a third model that was identical to the second model but also included two uncorrelated method factors (for positively and negatively worded items). This third model, χ²(74, N = 183) = 171.90, represented a good fit, RMSEA = .08, SRMR = .07, and CFI = .93, suggesting that method factors may, indeed, be present."                                                                                                                                                                                                                                                                                          
## [490] "Exploratory Factor Analysis: Principal axis factor extraction and varimax rotation found that all 7 of the remaining items loaded on a single factor that accounted for 74.20% of the explained variance; However, 2 items had item loadings below .70, necessitating further analysis. After 2 additional EFAs, which removed the 2 lowest loading items, the results demonstrated that all 5 remaining items loaded on a single factor that accounted for 82.76% of the explained variance, with all item loadings being above .70 (ranging from .75–.95). Confirmatory Factor Analysis: CFA was conducted using a sample of participants (n = 825). The results demonstrated acceptable fit: Chi square (χ²) = 59.65, degrees of freedom (df) = 5, Comparative Fit Index (CFI) = .99, and standardized root mean residual (SRMR) = .01; Hu and Bentler (1999)."                                                                                                                                                                        
## [491] "Exploratory Factor Analysis: EFA revealed a 2-factor solution, representing physical power and social power. The item “really smart” was reworded to “really clever” because the factor loading was less than 0.5. Confirmatory Factor Analysis: Following item removal, model fit was deemed adequate (n = 127: normed chi-square =1.2, RMSEA = .04 [90% CI = .00 to .091], CF1 = .993). The social factor included constructs of group and peer valued characteristics. Measurement Invariance: Invariance of the mean and covariance structures was demonstrated across gender as evidenced by a non-significant corrected Chi-square between the nested model and the comparison model at each specified level of the model (p > .05). Invariance of the mean and covariance structures was likewise demonstrated between grade at school (Grade 4, and Grades 5–6) as evidenced by a non-significant corrected Chi-square between the nested model and the comparison model at each specified level of the model (p > .05)"          
## [492] "Confirmatory Factor Analysis: The final CFA results for the overall measurement-model fit were acceptable, Chi-squared(344, N = 968) = 962.33, p < 0.001; CFI = 0.97; NNFI = 0.96; RMSEA = 0.043 (90 percent C.I. = 0.04; 0.05); SRMR= 0.045."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [493] "Confirmatory Factor Analysis: A review of the four a priori scales (now, subscales) demonstrated good fit: χ² (293, n = 661) = 984.710, p<.001; comparative fit index (CFI) = 1.00; non-normed fit index (NNFI) =1.03; root mean square error of approximation (RMSEA) = .060 (CI90 = .056–.064). Good fit was also demonstrated in the evaluation of an alternative 3-factor model. However, a χ²-difference test (Steiger, Shapiro, & Browne, 1985) showed the 4-factor model representing a better fit for the data than the alternative 3-factor model. Measurement Invariance: Across healthy and ill groups, tests for invariance (configural, loadng, and strong invariance) all demonstrated that the 4-factor structure of the AESC is invariant, and can be meaningfully compared across the healthy and cancer groups."                                                                                                                                                                                                        
## [494] "Confirmatory factor analysis: CFA results indicated that the five-factor structure with two controlled and three autonomous motivation latent factors yielded an acceptable model fit: (chi-square [160, N = 226] = 376.04, p < .001), CFI = .92, TLI = .90, SRMR = .066, RMSEA = .086."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [495] "Exploratory Factor Analysis: EFA was conducted on the first half of the sample (n = 477) using the principal factor method of extraction. The scree plot suggested a single-factor solution while parallel analysis suggested 6 or more factors. The pattern matrix showed that the third through sixth factors were only loading 2 variables each. After testing 1-, 2-, and 3-factor solutions, the authors opted for a single-factor solution. Confirmatory Factor Analysis: CFA was conducted on the second half of the sample (n = 466), with the results supporting a single-factor model: χ²(df) (104) = 475.88; p < 0.001."                                                                                                                                                                                                                                                                                                                                                                                                       
## [496] "Confirmatory factor analysis: Goodness-of-fit indices (N = 249): chi-square 260 = 392.32 (p-value < 0.001); NFI = 0.89; NNFI = 0.96; CFI = 0.96; RMR = 0.05; RMSEA = 0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [497] "Exploratory factor analysis: For the EFA, several indicators suggested that the 4-factor model was optimal. Confirmatory factor analysis: CFA using SEM was used removing any item that cross-loaded on two factors or items that had standardized factor loading coefficients below .45 (items 4, 15, and 17) (Bentler & Wu, 1993). The final model with four factors was comprised of 17 items and showed a moderate fit: chi-square(106, N=122)=156.10, p=.001, CFI=.90; RMSEA=.062, 90%C.I.= .040$.082, p=.17. Measurement invariance: Model fit across the two ethnic groups evidenced partial strong factorial invariance, ΔCFI=.007, model fit: chi-square(244)=345.86, p < .001, CFI=.903; RMSEA=.059, SRMR=.087."                                                                                                                                                                                                                                                                                                                
## [498] "Exploratory Factor Analysis: EFA via principal component analysis (PCA) with direct oblimin rotation assessed the items in a sample of Tehran, Iran residents (n = 2,051). The scree plot showed a 6-factor solution that explained 58.36% of the total variance. Confirmatory Factor Analysis: CFA assessed the items in a different sample of Tehran, Iran residents (n = 2,049) via the maximum likelihood (ML) method. The results showed SRMR and the RMSEA values of 0.03 and 0.04, respectively, suggesting that the latent and the measurement models were acceptable. However, the CFI and the TLI values of 0.94 and 0.92, respectively, were just below acceptable parameters. But, overall, the results indicated that the fit indices were acceptable."                                                                                                                                                                                                                                                                      
## [499] "Exploratory Factor Analysis: EFA was used to assess 45 items using a randomly split in half of the sample (n = 367; 66% female). The results revealed four factors, with all items loading at ≥ .40. Collectively, the factors accounted for 55.54% of the variance, and were all extracted with eigenvalues >1. Confirmatory Factor Analysis: CFA assessed a second randomly split in half of the sample (n = 361; 59% female). The results indicated that the four-factor structure structure is supported by multiple fit indices: chi-square/d.f. = 1.99 (chi-square = 1741.657, d.f. = 874, P < .001), GFI = .83, CFI = .92, RMSEA = .05. Additionally, the CFA showed that all items in the HBM subscales, except for 3 items in the Susceptibility subscale, had factor loadings > .40, which indicated good construct validity (Nunnally, 1978)."                                                                                                                                                                                 
## [500] "Confirmatory Factor Analysis: Findings from two CFAs found that the 25-item, 5-factor model exhibited adequate fit: (Study 1) SB χ2(974, N = 433) = 2,284.103, p < .001, CFI = .908, SRMR = 0.046, and RMSEA = .052, 90% CI = [.048, .057]. The Δχ2 was significant (p < .001), suggesting that the five-factor model was the superior model. Measurement Invariance: The five-factor model had adequate fit for college women and men, suggesting configural invariance or similarity in the subscales comprising the measure across gender. However, the model fit indices were less adequate for men, suggesting that the proposed model may be functioning differently for men and women. Given the measure did not demonstrate metric invariance across the gendered groups, analysis of scalar invariance was not conducted."                                                                                                                                                                                                       
## [501] "Exploratory Factor Analysis: PCA explained 31% of the variance. Confirmatory Factor Analysis: In the test sample results, all the statistics showed a good fit: chi-square(44, N = 222) = 55.966, p = .061, chi-square/gl = 55.966/44 = 1.34, CFI = 0.99, TLI = 0.99, IFI = 0.99, RMSEA = 0.04, 90%CI [0.00, 0.06], p = .73."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [502] "Exploratory Factor Analysis: EFA was conducted on a subsample of participants (n = 400). Parallel analysis (Lloret-Segura et al., 2014) suggested a single dimension. After applying the fixed EFA to one factor, all the items were found to be adequate, with a RMSEA value of 0.07 (95% confidence interval (CI) = 0.0595 to 0.0741) and a GFI index of 0.99 (95% CI = 0.984 to 0.990) (> 0.95; Tanaka & Huba, 1989). 1989). The variance explained by this single factor was 43.90%. Confirmatory Factor Analysis: CFA was conducted on a second subsample of participants (n = 407). The goodness of fit indicies were above 0.90, indicating good fit (MacCallum & Austin, 2000): nonnormed fit index (NNFI = 0.92), the comparative fit index (CFI = 0.94), the incremental and the McDonald's fit indices (IFI = 0.94 and MFI = 0.94, respectively)."                                                                                                                                                                             
## [503] "Exploratory Factor Analysis: Six EFAs were used to assess the initial 62 items, extracting from 7 to 12 factors. Across different EFAs, 8 intercorrelated factors became more robust and well-defined, explaining 78.7% of the variance. Four motives (i.e., achievement-challenge, conformity, violent catharsis, and arousal) were not well identified in the 12-factor solution, but were more effectively distributed in the 8-factor solution, which became the most representative of recurrent gaming motives. An EFA in the adolescent sample (n = 407) replicated the 8-factor solution, with an explained variance of 78.5%. Confirmatory Factor Analysis: CFA was conducted to test the VMQ's 8-factor model. The results demonstrated a good model fit (S−Bχ² = 330.13, df = 224, p < .001; S−Bχ²/df = 1.47; CFI = .97; IFI = .97; NNFI = .96; RMSEA = .04); factor loadings ranged from .62 to .95, with the 8-factor model explaining 81.9% of the variance."                                                               
## [504] "Confirmatory Factor Analysis: Confirmatory factor analysis resulted in a model with an unacceptable model fit [Model fit: Chi-squared(179, n = 231) = 613.033 (p < 0.001), TLI = 0.74, IFI = 0.79, CFI = 0.78, RMSEA = 0.11 (90%CI = 0.10–0.12, PCLOSE = 0.00), SRMR = 0.06] including four items with low factor loadings between 0.188 and 0.487. Principal Component Analysis: After the deletion of problematic items, a final PCA with 19 items revealed three main components with eigenvalues > 1, which explained 61.12% of variance. No item loaded on more than one component."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [505] "Confirmatory factor analysis: Chi-square (chisquare = 28.53 (p > .05), degrees of freedom = 28 and N = 219. Furthermore, CFI = 0.998, TLI = 0.997, RMSEA = 0.009 [LO 90 = 0.000 and HI = 0.053] and SRMR = 0.074)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [506] "Confirmatory Factor Analysis: After the deletion of three items assessing emotion, a model with seven first-order factors accounting for commonality among the remaining 21 items fit the data well, χ²(168, N= 400) = 345.40, p < .001, CFI = .953, SRMR= .045, RMSEA = .051 (CLs = .044, .059). The fit of a second-order model in which the seven first-order factors were influenced by a single second-order factor was promising, χ²(181, N= 303) = 473.59, p < .001, CFI = .859, SRMR= .076, RMSEA = .073 (CLs = .065, .081), but did not meet the cutoff for CFI. It also provided a poorer account of the data than the first-order model, χ²(14) = 98.30, p < .001, thereby confirming the previous finding."                                                                                                                                                                                                                                                                                                                   
## [507] "Exploratory Factor Analysis: EFA results indicated from three to six factors for the initial 31 items (n = 375). The scree plot supported the three-factor solution, which was selected for parsimony. Confirmatory Factor Analysis: CFA, using robust maximum likelihood estimation with Geomin, was conducted to test both one- and three-factor models (n = 375). Below standard fit was seen for the one-factor model and only slightly improved fit for the three-factor model. Measurement Invariance: Multiple indicator, multiple cause (MIMIC) structural equation models tested gender and age influence on latent factors and outcome variables (n = 750). For age, older adults and emerging adults scored higher than expected at given factors scores; for gender, females scored lower than expected relative to males on using substances to take reduce pressures on \"making choices about the future\"; but, females scored higher than males on substance use due to experiencing \"a lot of changes recently.\""     
## [508] "Confirmatory Factor Analysis: The D statistic comparing the five- and four-scale model fits was significant, χ²(3, N = 191) 21.44, p >.01, indicating that the more parsimonious four-scale model better represented the latent construct of consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [509] "Confirmatory Factor Analysis: A bi-factor measurement model was estimated via CFA. The bifactor model assumes each of the 15 Self-concept Focus items is influenced by a general factor that, in turn, influences all 15 items, and a group factor corresponding to the event to which it refers. The general factor corresponds to the underlying concept of Self-concept Focus, which is a disposition to make events central to one's identity and life story. The results showed the model having good fit to the data: χ² (N= 400, df = 75) = 181.69, p < .001, CFI = .97, RMSEA = .06, SRMR= .05. Additionally, Omega hierarchical (ωh) indexes displayed a ω value of .70, indicating that about 70% of the variance in Self-concept Focus scale scores can be attributed to a general factor that transcends specific events."                                                                                                                                                                                                    
## [510] "Exploratory Structural Equation Modeling (Exploratory and Confirmatory Factor Analysis): The results demonstrated an adequate fit to the sample data (Chi-squared [1, N = 415] = 215.99, p < .001, comparative fit index (CFI ) = .969, Tucker-Lewis non-normed fit index (TLI) = .939, root mean squared error of approximation (RMSEA) = .319 [90% confidence interval (CI) = .283, .356], p < .001) and suggested evidence for unidimensionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [511] "Exploratory Factor Analysis: Cattell’s scree criterion and the principle of the simple structure indicated that one factor was optimal, accounting for 28.2% of the variance, and with all 11 pairs loading over .32 (Tabachnick & Fidell, 2013) – sufficient for a scale so heterogeneous content-wise, as noted by the authors. Confirmatory Factor Analysis: After fitting a covariance between two item pairs, the improved model fitted the data well (Chi-squared[43, N = 167] = 53.050, p = .140; CFI = 0.93, TLI = 0.92; RMSEA = 0.04 (90% CI [.00, .07]), close fit test nonsignificant [p = .720])."                                                                                                                                                                                                                                                                                                                                                                                                                            
## [512] "Exploratory Factor Analysis: The results of the exploratory factor analysis revealed that the scale had a single factor structure that explained 31% of the total variance with an eigenvalue of 5.28. Confirmatory Factor Analysis: The goodness of fit indices of the scale were as follows: χ²(61, N = 369) = $249.32, χ²/df = 3.00, GFI = .90, SRMR = .060, RMSEA= .070."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [513] "Exploratory Factor Analysis: EFA with principal axis factoring initially extracted a 4-factor solution. However, extensive changes to the instrument led to a second EFA on new data from a sample of early-career teachers (n = 203), revealing a 3-factor solution. Further EFAs due to additional changes again resulted in a 4-factor solution, which was retained. Confirmatory Factor Analysis: CFA was used to assess a measurement model, with initial results showing only marginally acceptable fit to the data: Chi-square (113) = 339.92, p < 0.001; CFI = .90, RMSEA = .053 (CI .047 to .006), and SRMR = .048. Measurement Model: Using half of a randomly split sample (n = 418), further CFA iterations allowed for error covariance between items two and five, resulting in a slightly improved model: Chi-square (112) = 294.31, p < .001; CFI = .92, RMSEA = .048 (CI .041 to .054), SRMR = .046; the results were sufficient in demonstrating acceptable model fit for a 4-factor, 17-item instrument."              
## [514] "Exploratory Factor Analysis: The single-factor solution accounted for 63.07% of the total variance of initial eigenvalues. Confirmatory Factor Analysis: The fit statistics for this CFA model were chi-square(9, N = 282) = 16.08, p = .06, CFI = .982, SRMR = .033, and RMSEA = .053 (90% CI [.000–.094])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [515] "Exploratory Factor Analysis: The EFA of the calibration subsample (n = 230) resulted in a one factor solution in the split-sample calibration analysis, including all of the original 10 items, which accounted for 47.79% of the total variance. Confirmatory Factor Analysis: A CFA was run to further validate the factor structure of the Scale of ESE using the validation subsample (n = 217). The results showed that the one-factor model, including modifications based on post hoc analysis provides, a statistically significantly improved fit to the data: chi-square = 74.775, CFI = .954, GFI = .938, RMSEA = .079, TLI = .935, Δ chi-square (3) = 50.428, p < .001)."                                                                                                                                                                                                                                                                                                                                                     
## [516] "Exploratory Factor Analysis: Two EFAs were conducted on the initial 39 items using a snowball sample of adult volunteers (n = 119). The results for the first EFA showed a one-factor solution that had an eigenvalue of 5.99 and explained 37.4% of the variance. The second EFA, using maximum likelihood extraction with promax rotation and Kaiser normalization, resulted in a four-factor solution that explained 61.9% of the variance, with most items loading on their intended factor. The four-factor solution was selected as the preferred solution, with the 16 best performing items distributed among them. Confirmatory Factor Analysis: CFA assessed the four-factor solution using a random stratification sample of adult volunteers (n = 1,234; 70.8% female). The results showed mostly acceptable goodness-of-fit indices: chi-square = 623.1; Df = 98; p = 0.001; CFI = 0.91; NFI = 0.89; RFI = 0.87; RMSEA = 0.08."                                                                                              
## [517] "Confirmatory Factor Analysis: CFA results showed that a six-factor DAPS/C-DAPS combined model fit better than a three-factor stand-alone C-DAPS model {six-factor: SBS-Chi-Squared (N = 459, df = 967) = 2499.73, p < .001, CFI = .88, RMSEA = .06, SRMR =.08}, demonstrating that partner-oriented and child-oriented constructs are independent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [518] "Principal Component Analysis: PCA, using direct oblim rotation, was conducted on the 10 items resulting from expert panel analysis. One factor was extracted that explained 64.05% of variance and had an eigenvalue of 6.41.Confirmatory Factor Analysis: CFA was conducted using the first-wave sample (n = 346). The results showed poor fit for the 10 items. After the removal of two items, adequate fit was demonstrated: chi-square (20) = 68.13, p < .001; chi-square/df = 3.41, RMSEA = .08; CFI = .96; SRMR = .04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [519] "Confirmatory Factor Analysis: CFA verified a three-dimensional model in both the training and test samples (n = 106 for each sample). CFA results for the training sample were: chi-square = 17.76; df = 6; p < .01; RMSEA = .14; 9% CI = .065 - .211; CFI = .96; NFI = .9; SRMR = .04. Cross-validation with the test sample showed the following CFA results: chi-square = 14.53; df = 6; p < .05; RMSEA = .12; 95% CI = .039 - .193; CFI = .98; NFI = .96; SRMR = .04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [520] "Exploratory Factor Analysis: Initially, EFA extracted three factors. Since the internal reliability was stronger when all items were considered as one scale than for each factor separately, and since each factor was positively correlated with the others, the three factors were combined to make a stronger unidimensional scale. Confirmatory Factor Analysis: The three-factor model displayed poor fit according to the measured indices, χ²(27, N = 178) = 265.279, p < .001, χ²/df = 9.83, CFI = .69, NFI = .67, GFI = .76, RMSEA = .223, whilst the unidimensional model displayed better fit, χ²(27, N = 178) = 106.357, p <.001, χ²/df = 3.939, CFI = .90, NFI = .87, GFI = .87, RMSEA = .129. Measurement Invariance: ΔCFI, ΔSRMR, ΔRMSEA and were within thresholds, which demonstrates metric and scalar invariance across ages."                                                                                                                                                                                        
## [521] "Exploratory Factor Analysis: EFA suggested at least two distinct factors (activity avoidance and cogniphobia). Item Response Theory: Initial fit to the Rasch model was adequate, with one misfitting item. The model was not improved after removing the misfitting item. Best fit to the unidimensional Rasch model was achieved after items were combined into three super items based on exploratory factor analysis and retaining the misfitting item 𝜒²(6, n = 159) = 2.1, p = 0.06)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [522] "Confirmatory Factor Analysis: CFA yielded a single factor: χ2(39, N = 220) = 110.93; CFI = .95; TLI = .98; RMSEA = .092."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [523] "Exploratory and Confirmatory Factor Analysis: For girls, the 3-factor solution that was suggested by EFA was tested and demonstrated close fit (relative chi-square = 2.10, RMSEA = .074, CFI = .945, TLI = .934, SRMR = .062). For boys, the 2-factor solution that was suggested by EFA was tested by CFA and emerged close fit (relative chi-square = 1.700, RMSEA = .052, CFI = .976, TLI = .962, SRMR = .041). For the common items across male and female versions of the measure, the model that had close fit for the entire (boys and girls together, n = 1435) sample suggested the following: relative chi-square = 3.97, RMSEA = .045, CFI = .982, TLI = 0.971, SRMR = 0.025. Measurement Invariance: The gender neutral measure was invariant with respect to gender (all direct effects of gender on the items were non-significant). Therefore, the total scores of the common items version can be compared between girls and boys without measurement bias."                                                             
## [524] "Exploratory and Confirmatory factor analysis: PAF revealed a 5-facator solution with the first factor accounting for 38.14% of the variance. All the relationships were significant at the p < .001 level: chi-square (165, n = 838) = 205.31, p < .05, NNFI = 0.91, CFI = 0.92, RMSEA = 0.017 (90% CI [0.008, 0.024]), SRMR = 0.072. The five-factor model with correlated factors showed an equivalent fit to the second order five-factor solution [chi-square (160, n = 838) = 202.18, p < .05, NNFI = 0.90, CFI = 0.916, RMSEA = 0.018 (90% CI [0.009, 0.025]), SRMR = 0.069]."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [525] "Confirmatory Factor Analysis: The final, four-factor model with modification indices showed acceptable fit indices (Chi-squared (80, N = 372) = 235.24, p < .001, Chi-squared/df = 2.94, CFI = 0.95, GFI = 0.92, NFI = 0.92, SRMR = 0.051, RMSEA = 0.072)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [526] "Confirmatory Factor Analysis: The 3-factor model with modification indices showed acceptable fit indices (Chi-squared(197, N = 360) = 443.79, p < .001, Chi-squared/df = 2.25, CFI = 0.96, GFI = 0.90, NFI = 0.93, SRMR = .061, RMSEA = .059)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [527] "Confirmatory factor analysis: The CFA model achieved excellent data-model fit (CFI = .97; TLI = .95; RMSEA = .06 (90% C.I.: .057-.070); SRMR = .06; chi-square = 399.763 (p< .001); df = 122, chi-square/df = 3.28; n = 567)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [528] "Exploratory Factor Analysis: The four-factor structure accounted for 57% of the total variance. Confirmatory Factor Analysis: The model quality was acceptable to good for the 4-factor structure (χ2(164, n = 177) = 309.82; p < 0.001; χ2/df = 1.67; RMSEA = 0.07; CFI = 0.97; TLI = 0.96). Also the model fit of the second-order model was acceptable to good (χ2(166, n = 81) = 310.58; p < 0.001; χ2/df = 0.49; RMSEA = 0.07; CFI = 0.97; TLI = 0.96)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [529] "Confirmatory Factor Analysis: The results reflect, in accordance with the hypothesis, indicated that this model fits the data. The satisfaction criteria concerning all the indicators have been achieved, CFI = .95, RMSEA = .051, 90% CIs [.042; .060], SRMR = .033, despite a significant chi-square, χ2 (120, N = 273) = 205.47, p = .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [530] "Exploratory Factor Analysis: EFA with oblique rotation identified a 4-factorial model with a slightly different assignment of the items on the four factors. Confirmatory Factor Analysis: The factor structure found could be in of the sample halved for cross-validation exploratory replicated (N = 148) and then confirmatory (N = 147) can be confirmed (CFI = .90; RMSEA = .07; SRMR = .07)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [531] "Confirmatory Factor Analysis: When testing a higher order model, (e.g., the four factors of first order converging on a second order factor called frustration), the fit indices of this model were slightly worse, although acceptable: χ²(115. N = 271) = 227.48, p < .001; χ²/df = 1.98; IFC = .97; IFI = .97; RMSEA = .06 (90% CI = .05-.07); SRMR = .04. All standardized regression weights were significant (p < .001), being .86 for competition, .93 for autonomy, .90 for relationship with others and .55 for novelty. Measurement Invariance: #e structure of both models was invariant with respect to gender."                                                                                                                                                                                                                                                                                                                                                                                                              
## [532] "Exploratory Factor Analysis: The six-factor structure explained 61.43% of the total variance. Confirmatory Factor Analysis: The goodness of fit indices were as follows for the 6-factor solution: Chi-squared (130, n = 3.080) = 467.50, p <.001. Also, the quotient Chi-squared/df yielded a value of 3.59, considered to be an acceptable level of adjustment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [533] "Exploratory Factor Analysis: An eight-factor solution appeared optimal relative to the item and factor retention criteria. The eight factors contained between four and 16 items each and accounted for 62% of the total variance. Confirmatory Factor Analysis: A measurement model in which each item was fixed to load on its corresponding factor from the exploratory factor analysis yielded adequate fit on the SRMR = .06 and RMSEA = .05, 90% CI [.04, .05] indices, though CFI (.91) was < .95; Satorra–Bentler (S–B) χ2 (1349, N = 277) = 2134.75, p < .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [534] "Confirmatory factor analysis: The CFA with a one-factor model indicated a good fit to the DAR-5-F data despite the large sample size (GFI = .996, AGFI = .988, TLI (rho2) = .995, CFI = .997, RMSEA = .026, and PCLOSE = .862). This single-factor solution was retested on the high-trauma group. The model was supported with traditional (chi-square(5, N = 406) = 3.36; p = .644) and more robust fit statistics (GFI = .997, AGFI = .990, TLI (rho2) = 1.006, CFI = 1.000, RMSEA = .000, and PCLOSE = .924)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [535] "Exploratory Factor Analysis: EFAs revealed a three correlated factor structure. Confirmatory Factor Analysis: A model consisting of 12 items and three correlated factors showed adequate goodness-of-fit indexes, χ²(51, n = 898) = 66.22, p = .07 (CFI = .984; RMSEA = .026, 90% CI = [.000, .042]). Measurement Invariance: The model structure was invariant across participants’ gender."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [536] "Confirmatory Factor Analysis: The final specification of the one-factor solution substantially improved the fit of the model to the data: Chi-squared (34, N = 188) = 156.863, p < 0.001, CFI = 0.959, TLI = 0.946, RMSEA = 0.100, SRMR = 0.069."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [537] "Exploratory Factor Analysis: EFA with oblimin rotation extracted five factors explaining a total variance of 81.51%. Confirmatory Factor Analysis: CFA of the 18 items showed an adequate fit of the model: ((𝜒² (46, N = 444) = 761.80, p = .000; 𝜒²/d.f. = 6.09; CFI = .92; TLI = .90; IFI = .92; SRMR = .05)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [538] "Exploratory Factor Analysis: The results of Horn’s parallel analysis suggested a one factor solution, with an accounted variance of 59.99%. Confirmatory Factor Analysis: The one-factor model comprising of eight frequency and eight intensity item-symptoms obtained a poor fit with S-B𝜒² (96, N = 523) = 560.801, p < .001, CFI = .824, TLI = .780, RMSEA = .096 (90% CI = .089 to .104). The two-factor model where eight frequency item-symptoms were loaded to a factor and eight intensity-symptoms were loaded to another factor achieved excellent fit, with S-B𝜒² (95, N = 523) = 191.408, p < .001, CFI = .963, TLI = .954, RMSEA = .044 (90% CI = .035 to .053). Measurement Invariance: Constraining factor loadings to be equal across intensity and frequency (metric invariance), the results yielded non-invariance of the response formats. Further, constraints employed to item-intercepts also showed non-invariance across the formats."                                                                          
## [539] "Confirmatory Factor Analysis: Results from confirmatory factor analyses indicated the fit statistics met the criteria for a good fitting model (χ²(125, N = 401) = 245.54, p < .001, CFI = .98, IFI = .98, SRMR= .05, RMSEA = .049, 90% CI = .040–058). Gender Invariance: The FRTA+R scale was invariant across gender at the configural (ΔCFI = −.006, ΔRMSEA = .004), metric (ΔCFI = −.004, ΔRMSEA = .000) and scalar (ΔCFI = −.003, ΔRMSEA = .001) levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [540] "Confirmatory Factor Analysis: The results demonstrate that the 3-factor model reveals significant results in both samples in terms of goodness of fit indices in confirmatory factor analysis. For university students, the 3-factor solution presented adequate fit, χ²(103, N = 478) = 406.015, p = .000. For older adults, The 3-factor solution presented adequate fit, χ²(103, N = 166) = 246.501, p = .000."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [541] "Exploratory Factor Analysis: EFA was used to assess the initial 65 items in a split sample of participants (n = 430). The results revealed in a five-factor solution that corresponded with the five dimensions of unidimensional scales; A total of 40 of the 65 items that loaded on the five subscales were retained. In a second-order EFA of the remaining 40 items, all five factors identified in the first-order analysis loaded on one super factor. Confirmatory Factor Analysis: The second half of the sample (n = 431) was used to conduct CFA. Overall, the CFA results, inclusive of comparative and absolute fit indices, showed adequate to good fit between the models and the data for subscales and the total scale."                                                                                                                                                                                                                                                                                                 
## [542] "Exploratory Factor Analysis: In the first sample, three factors were identified using exploratory factor analysis accounting for 55% of the total variance. In the second sample, new items were added and the validity of the questionnaire was investigated in a two-step process by splitting the sample into two random sub-samples. In the first random split-half (N = 165) using exploratory factor analysis, two factors were identified accounting for 56% of the total variance. Confirmatory Factor Analysis: In the second random split-half (N = 152), the fit of the two-factor structure was investigated using exploratory factor analysis conducted within the confirmatory factor analysis framework. The model fit was acceptable (CFI = .914; TLI = .901; RMSEA = .077; SRMR = .069). The modification indices revealed that deleting one item and reassigning an item under another factor would improve the fit of the model (CFI = .958; TLI = .951; RMSEA = .055; SRMR = .055)."                                  
## [543] "Exploratory Factor Analysis: EFA was conducted with part of the sample (Group 1; n = 433), with results revealing a 3-factor solution that explained 76.0% of the variance. Confirmatory Factor Analysis: CFA was conducted with the second part of the sample (Group 2; n = 433), with results revealing that the 3-factor model adequately reproduced the data: MLR chi-square = 37.962, MLR chi-square/df = 1.582; CFI = .982; RMSEA = .037; 90% CI [.010–.058]; SRMR = .041. Measurement Invariance: For the sample (n = 866), invariance was tested across education level (high school vs. bachelor's or beyond) and across age (less than 30 years vs. 30 years and more). The results showed evidence of invariance for both education level and age. Moreover, good fit was produced for configural invariance, factor loading invariance, intercept invariance, and latent factor mean invariance."                                                                                                                             
## [544] "Confirmatory factor analysis, A third model (M3) tested the factor structure of a scale composed of 13 items and 3 factors (i.e., emotional avoidance, sexual curiosity, and excitement seeking and sexual pleasure, composed of items 11, 7, 9, and 14). This model presented an excellent overall fit, according to Hu & Bentler (1999), S-T chi-square (59, N=211) = 76.91, p < .001, chi-square/df = 1.3, CFI = .992, RMSEA = .04. The three factors were significantly and positively interrelated, with coefficients of association over .50. Nonrobust indicators of model fit also showed positive results, chi-square(59, N=211) = 156.09, p = .059, chi-square/df = 2.65, CFI = .956, RMSEA = .09."                                                                                                                                                                                                                                                                                                                             
## [545] "Exploratory Factor Analysis: EFA was conducted to choose the optimal number of factors and items from an analytic subsample (n = 172). For all three construct dimensions (i.e., confidence, skills, and stress), EFAs were conducted separately testing 1-, 2-, and 3-factor solutions but not finding consensus with any of them, largely due to issues observed with Item 14. Confirmatory Factor Analysis: A cross-validation sample (n = 189) was used to compare the 1- and 2-factor solutions. Notably, the 1-factor solution showed adequate fit: chi-square (350) = 736.93, p < .00, RMSEA = .08, CFI = .96, TLI = .96. After removing Item 14, due to it having very high residual variance (.84), the 2-factor solution showed comparably good fit: chi-square (274) = 615.20, p < .00, RMSEA = .08, CFI = .96, TLI = .95. However, due to lack of theoretical grounds, the authors ultimately decided to retain the 1-factor, 27-item measure."                                                                               
## [546] "Principal Component Analysis: PCA was used to conduct exploratory factor analysis (EFA), using a student sample (n = 733) to assess the 27 remaining items that resulted from item-item correlations. While initial analysis revealed 9 factors with eigenvalues greater than 1.0, the scree-plot analysis showed a clear break after the third component. Moreover, parallel analysis identified only 3 factors. An additional EFA, using a much larger sample, confirmed the 3-factor structure. Confirmatory Factor Analysis: CFA, using a larger sample from across the general public in the UK and Nigeria (n = 2,017), was conducted to reduce the number of items in order to arrive at a final model. Items were removed if they had multiple error term modification indices >10. Ultimately, the final model had 15 items that loaded distinctly and clearly on 3 factors. Model fit was acceptable, suggesting that the model fitted the data well (Hooper, Coughlan, & Mullen, 2008; Hu & Bentler, 1999)."                   
## [547] "Exploratory Factor Analysis: Principal component analysis with varimax rotation indicated that the data displayed a similar structure for perceptions about interest and achievement. One factor with eigenvalues of 1.0 or higher was extracted. Together, they accounted for 31.98% of the variance for interest section, 34.04% of the variance for achievement section and 47.10% of the variance for frequency section which are accepted as tolerable (Pituch & Stevens, 2016). Confirmatory Factor Analysis: Goodness of fit indices were in the acceptable range: χ²(78, N =314) = 215.794, χ²/df = 2.77, NFI = 0.94, CFI = 0.96, RMSEA = 0.07, SRMR = 0.06 for the interest section, as χ²(79, N =314) = 196.832, χ²/df = 2.49, NFI = 0.92, CFI = 0.95, RMSEA = 0.07, SRMR = 0.06 for the achievement section, and as χ²(81, N = 314) = 231.605, χ²/df = 2.85, NFI = 0.96, CFI = 0.98, RMSEA = 0.08, SRMR = 0.06 for the frequency section."                                                                                     
## [548] "Exploratory and Confirmatory factor analysis: PCA revealed a 2-factor solution explaining 67.6% of the total variance. Three covariance links between statements strongly intercorrelated on the same factor were added to the initial model following the proposals made by the AMOS software to improve fit indices. Once these changes were made, the final model demonstrated a satisfactory adjustment: chi-square(61, N = 295) = 165.46, p = 0,000; CFI = 0.96; TLI = 0.95; RMSEA = 0.08 (0.06, 0.09); SRMR = 0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [549] "Exploratory Factor Analysis: The number of items and final factors was determined based on to the fulfillment that the eigenvalues should be greater than 1, and the factors had to have a minimum of 3 items. Item 12 was eliminated. The Parental subscale consists of 4 subscales. The Family adjustment subscale consists of 2 factors. Confirmatory Factor Analysis: The Parental consistency factor did not reach the minimum required to consider the coefficient H acceptable and removed from the measurement model of the Parental Adjustment subscale. The new model of subscale, without said factor, obtained good fit data: c2(N = 51) = 226.41; p < .001; GFI = .99; TLI = .95; CFI = .96; NFI = .95; RMSEA = .04[.03, - .04]; SRMR = .036. Measurement Invariance: Following the criterion of Cheung and Rensvold (2002), the difference between the two models did not exceed the value of .01 in any of the two PAFAS subscales, so it is concluded that there is homogeneity or invariance in the measurement model."  
## [550] "Exploratory Factor Analysis: Exploratory factor analyses with a semi-random split-half subsample (n = 377) indicated that BAS-2 scores reduced to a single dimension with all 10 items. This factor structure was equivalent across women and men. Confirmatory Factor Analysis: Confirmatory factor analysis (CFA) with a second split-half subsample (n = 235) showed the 1-dimensional factor structure had adequate fit following one modification—SB𝜒²(34) = 57.50, SB𝜒² normed = 1.69, robust RMSEA = .080 (90 % CI = .042-.115), SRMR = .05, robust CFI = .966, robust TLI = .955. Measurement Invariance: Multi-group CFA showed that the model was invariant across sex (i.e., sex invariance at the configural, metric, and scalar levels was established)."                                                                                                                                                                                                                                                                    
## [551] "Exploratory Factor Analysis: Due to lack of interpretability, cross-loadings, and unstable factors, two- and six-factor solutions were excluded from subsequent analyses. A four-factor solution (with promax rotation) fit the data best, but only explained 49% of the variance (after the deletion of 3 items from the original scale). Confirmatory Factor Analysis: A subsequent CFA of the integrated FFMQ + Observing Scale initially evidenced poor fit: χ2 (1214, N = 242) = 2584.414, p<0.001, CFI=0.79, TLI=0.78, RMSEA =0.071 (90% CI = [0.07–0.08]), and SRMR = 0.081. Modification indices (MIs) suggested improved model fit by correlating error variances for the following item pairs: FMI items 3 and 7 (Internal Body Observing), PHLMS item 5 and FFMQ item 6 (External Body Observing), and FFMQ items 34 and 38 (Acting with Awareness). For the final model, all items loaded significantly onto their respective factors (ps<0.001)."                                                                            
## [552] "Exploratory structural equation modelling: Results indicated a 4-factor solution: χ2 = 467.590*, p < .001, N = 359, df = 272, CFI = .953, TLI = .934, RMSEA = .045, SRMR = .030."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [553] "Confirmatory Factor Analysis: The original proposed second-order latent factor with seven first-order latent factors data fit was acceptable for both samples: Sample 1 (Brazil) (χ2(97) = 479.314; χ2/df = 4.94, p < .001; n = 597; CFI = .992; NFI = .990; TLI = .990; SRMR = .063; RMSEA = .081; P(rmsea) ≤ .05) < .001, 90% CI].074; .089[), and Sample 2 (Portugal) (χ2(97) = 673.253; χ2/df= 6.94, p < .001; n = 566; CFI = .989; NFI = .987; TLI = .987; SRMR = .077; RMSEA = .103; P(rmsea) ≤ .05) < .001, 90% CI].095; .110[). Measurement Invariance: The results indicate that measurement invariance was achieved across the country and gender."                                                                                                                                                                                                                                                                                                                                                                             
## [554] "Exploratory Factor Analysis: The initial result of the analysis was a pattern matrix initially consisting of 7 factors with eigenvalues >1 that accounted for 76.917% of the variance. Thirty-nine items were dropped during the EFA process due to insignificant loading (<0.5) or high cross-loading (≥0.4). The iterative analysis process then yielded extraction of three factors with 26 items, which accounted for 74.821% of the variance. Confirmatory Factor Analysis: CFA with maximum likelihood robust estimation was used to validate the model derived through EFA. Two items (I37 and I43) were dropped due to low r-square value during the initial CFA. Findings revealed that the model fits the data well, the goodness-of-fit indices were adequate with 𝜒²MLR (249, N = 396) = 493.904 (p < .001), R-CFI = 0.947, R-TLI = 0.941, CFI = 0.944, TLI = 0.938, RMSEA = 0.050 (90% CI, [0.045,0.055]), Standardized RMR = 0.034."                                                                                        
## [555] "Exploratory and Confirmatory Factorial Analysis: An initial 43 items revealed a 4-factor solution, together accounting for 50.40% of common variance. A CFA was carried out with the 43 items extracted in the EFA. This model showed fit to the data. Nevertheless, inappropriate items were successively eliminated in order to choose the most parsimonious model. This process resulted in 39 final items: chi-square[696, n = 208] = 992.7, p = .0001; chi-square/df = 1.43; CFI = .950; TLI = .946; RMSEA[CI90%] = .045[.039; .052]; WRMR = 1.024. It must be noted that an equivalence was found in this factorial structure both in the first half of the sample and in the total sample. Measurement invariance: Results indicated the indices of fit made it possible to accept the equivalence of the factorial structure obtained in the CFA for the different groups based on gender, age and teaching experience."                                                                                                          
## [556] "Exploratory Factor Analysis: Based on a principal components analysis for categorical variables (CATPCA) and parallel analysis (PA), unidimensionality was found to be acceptable in all groups for moral reasoning. For moral value evaluation, the results suggested one factor: the eigenvalue of the second factor (1.024) was smaller than the parallel random average eigenvalue (1.1403), meaning that one factor would be appropriate. Confirmatory Factor Analysis: The fit indices of the baseline models of the groups were good for the single-factor model of moral reasoning. CFA also showed an acceptable fit for moral value evaluation (n = 763; w2 (25) = 59.032, p < .001; CMIN/df = 2.361; CFI = .955; TLI = .919; RMSEA = .042). Measurement Invariance: Measurement invariance was found across age groups, gender, and educational levels. Measurement invariance was also found for both components across delinquency groups."                                                                                  
## [557] "Exploratory Factor Analysis: The EFA indicated that a two-factor structure was superior to the unidimensional model (p<.001). The two factors explained 48.02% of the total variance. Confirmatory Factor Analysis: The correlated traits model provided satisfactory fit to the data (robust χ2 [64, n=401]=268.54, p<.001; RMSEA=.08; CFI=.91; SRMR=.03). The –2LL test indicated that relative to the unidimensional model, the two-factor model fit significantly better (Δχ2 (13)=641.09, p<.001). In a sample of individuals with clinically significant PTSD symptoms, the two-factor correlated traits model provided satisfactory fit to the data. Measurement Invariance: Measurement invariance across gender and PTSD status was observed."                                                                                                                                                                                                                                                                                   
## [558] "Principal Components Analysis: PCA with Promax rotation on the 20 vaccine acceptance items indicate that all items except item 11 loaded on the same single component explaining 57% of the total variance. Confirmatory Factor Analysis: CFA indicated a better fit for the 5-factor model (𝜒²(142, N = 701) = 630, p < .001, CFI = 0.95, TLI = 0.94, RMSEA = 0.07, upper RMSEA 90% CI = 0.08, AIC = 42557, BIC = 42862) compared to the single-factor model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [559] "Exploratory and Confirmatory factor analysis: ESEM for the 12 final items of the SELAQ, along with the factor key that showed the items to either correspond to the ethical and privacy expectation factor (E1–E5) or the service feature expectation factor (S1–S7). The purported two‐factor model led to an acceptable fitting model using the CFA approach, χ2(53, n = 191) = 132.24, p < .001, RMSEA = 0.09, 90% confidence interval [CI; 0.07, 0.11], CFI = 0.95, TLI = 0.94, whereas the exploratory structural equation model led to a marginally worse fit, χ2(43, n = 191) = 129.50, p < .001, RMSEA = 0.10, 90% CI [0.08, 0.12], CFI = 0.95, TLI = 0.9;"                                                                                                                                                                                                                                                                                                                                                                       
## [560] "Exploratory Factor Analysis: These procedures resulted in a 3-factor, 14-item measure accounting for a total of 68.32% of the variance in S-TSRI scores. Confirmatory Factor Analysis: The authors tested null, one-factor, two-factor, and three-factor models to provide evidence that the three-factor structure would indeed have the best relative fit in comparison to the others. All model fit indices confirmed the superiority of the three-factor model over the other models (see Table 2): SBχ2 (74, n = 3,289) = 796, p < 0.001, CFI = 0.989, IFI = 0.989, NNFI = 0.986, and RMSEA = 0.054 (90% CI:0.051–0.058). Measurement Invariance: Factorial invariance was supported across gender, grade levels, and students of different academic levels, represented by pass and fail groups."                                                                                                                                                                                                                                   
## [561] "Exploratory Factor Analysis: Based on the screen plot and the conceptual clarity of the resultant factor solutions, a four-factor structure seemed most appropriate. The factors had eigenvalues of 9.66, 3.38, 3.19 and 2.00, and a cumulative explained variance of 65.12%. Confirmatory Factor Analysis: The Chi-square goodness-of-fit index presented a good fit for the data, χ2 (330, n = 353) = 731.45, p > 0.001; CFI = 0.93; RMSEA = 0.07."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [562] "Exploratory Factor Analysis: EFA suggested a two-factor solution, which explained 51.00% of the total variance. Confirmatory Factor Analysis: Concerning the CFA, although the 𝜒² was significant with 𝜒²(36, n = 463) = 134.877, p < 0.001, the other indices showed satisfactory values and supported the two-factor solution of the Italian PAS: GFI = 0.954, NNFI = 0.921, CFI = 0.940, RMSEA = 0.077, SRMR = 0.066."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [563] "Confirmatory Factor Analysis: The CFA of the five-factor measurement model was a good fit, Chi-squared (289, n = 163) = 522, p < 0.001, SRMR = 0.06, CFI = 0.93, and RMSEA = 0.07. The factor loadings were significant (p < 0.01), with items loading well above 0.40 on the appropriate factor. Tests of alternative one-factor models showed that the data did not fit these structures well, Chi-squared (299, n = 163) = 2212, p < 0.001, SRMR = 0.11, CFI = 0.64, and RMSEA = 0.2. A CFA of the higher-order factor measurement model was also a good fit, Chi-squared (294, n = 163) = 527, p < 0.001, SRMR = 0.06, CFI = 0.93, and RMSEA = 0.07, though the results indicated that the higher-order model made no significant difference compared to the five-factor model (ΔChi-squared (5, n = 163) = 5, n.s.)."                                                                                                                                                                                                                
## [564] "Exploratory Factor Analysis: Exploratory factor analysis suggested one-dimensionality. Confirmatory Factor Analysis: CFA was used to test a one-dimensional model. This model did not fit the data satisfactory (Satorra-Bentler Scaled χ2 (134, N=212)=210.64 (p<0.001), RMSEA=0.05 and CFI=0.93). The theoretically driven 4-factor model fit the data reasonably well (Satorra-Bentler Scaled χ2 (122, N=212)=154.58 (p=0.03), RMSEA=0.04 and CFI=0.95). Correlations between common factors were extremely strong. And issues indicating persistent multi-collinearity encountered when running the model, suggest that conceptually, a one-dimensional model best explains the findings."                                                                                                                                                                                                                                                                                                                                            
## [565] "Exploratory and Confirmatory Factor Analysis: As EFA did not reveal clear solutions, a confirmatory factor analysis considering one and two domains, respectively, was conducted for the definition of psychological control. Analyses were run separately for fathers and mothers. Considering fathers, n = 285 (there were 27 missing values) the two- dimension model got the best fit, χ2 (285, 98) = 218.26; p < .001; TLI = .88, CFI = .90, RMSEA = .06, SRMR = .05. On the contrary, the one domain solution, obtained a worse fit, χ2 (285, 103) = 360.29; p < .001; TLI = .76, CFI = .80, RMSEA = .09, SRMR = .06."                                                                                                                                                                                                                                                                                                                                                                                                              
## [566] "Confirmatory Factor Analysis: The four-factor model of the adapted scale was tested through confirmatory factor analyses (CFA) for its ability to fit the current data. The results revealed a good fit to the data [Chi-squared (93, n = 649) = 243.5, p < .001; CFI = .93; TLI = .91; RMSEA = .05; SRMR = .05]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [567] "Confirmatory Factor Analysis: The two-factor model of the motivation scale was tested through confirmatory factor analysis (CFA) for its ability to fit the current data. The results revealed a good fit to the data [Chi-squared (31, n = 649) = 121.31, p < .001; CFI = .96; TLI = .93; RMSEA = .07; SRMR = .05]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [568] "Confirmatory factor analysis: Results of a modified model for the 16 scales that loaded on to four theorized types of pain responses—Escape, Approach, Despondence and Relaxation—on data from the full sample indicated that the model-implied covariance matrix was significantly at variance with the data, χ2 (97 N = 476) = 310.97, p < 0.001, but fit indices (CFI = 0.958, RMSEA = 0.068, SRMR = 0.044) were comparable with those obtained in the separate analyses of the split sample data. Short-form scales were constructed to represent the four oblique factors, which broadly correspond to the four quadrants. CFA model fit was fair (CFI = 0.983, RMSEA = 0.069, WRMR = 1.032) but significantly at variance with the data, χ2 (97, N = 476) = 313.72, p < 0.001."                                                                                                                                                                                                                                                     
## [569] "Confirmatory Factor Analysis: In the first trial, items 11, 14, 19, 23, and 26 were excluded from the measurement model because the factor load was below 0.50. As a result of the analysis after the items with low factor load were removed, the values appeared as [𝜒² (199, N = 208) = 446.85, RMSEA = 0.078, SRMR = 0.065, NNFI = 0.93, CFI = 0.94]. These values reveal that the data show acceptable fit and/or perfect fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [570] "Exploratory Factor Analysis: The two-factor solution accounted for 62.53% of the total variance in the items before rotation. Confirmatory Factor Analysis: The results suggested that the two-factor oblique model had a better fit to the data: Df = 34, χ2 = 48.80, P = .048, CFI = .98, RMSEA [CI] = .04 [.00, .07], SRMR = .04., AIC = 7177.54, BIC = 7288.16, ABIC = 7189.88. Measurement Invariance: The results from multiple group analysis indicated that the internal structure of the SLS was strictly invariant for men and women, demonstrating its applicability for both groups. Validity Invariance: The results indicated a perfect fit for the freely estimated model and χ2(9, n = 262) = 13.31, p = .15 for the equal model."                                                                                                                                                                                                                                                                                        
## [571] "Confirmatory factor analysis: CFA revealed the 25 item four-factor PARQ modified model provided a good fit for the data: chi-square(246) = 763.31, p <.000; CFI =.97; NNFI =.97; RMSEA =.04, SRMR =.04. To examine if the 25-item four-factor model would be robust among younger, as well as older participants, the sample was split between children 12 and below (n = 526) and those 13 and above (n = 585). Using CFA, results found that the model provided good fit for both samples (12 and below: chi-square (246) = 514.03, p < .001; CFI = .96; NNFI = .96; RMSEA = .05, SRMR = .04; 13 and above: chi-square(246) = 564.89, p < .001; CFI = .97; NNFI = .96; RMSEA = .05, SRMR = .04)."                                                                                                                                                                                                                                                                                                                                       
## [572] "Confirmatory Factor Analysis: Model fit indices for the single factor structure were as follows: root mean square error of approximation=0.019; standardized root mean square residual=0.041; comparative fit index=0.986; χ2=13.69; p=0.19; n=1104)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [573] "Exploratory Factor Analysis: The final 60-item, six-factor EFA model indicated adequate model fit: RMSEA = 0.037, 90% CI [0.038, 0.044], SRMR = 0.03, CFI = 0.95, χ²(1,425, N = 300) = 2146.25, < p .001. Confirmatory Factor Analysis: The six-factor CFA model indicated adequate model fit across most fit indices: RMSEA = 0.06, 90% CI [0.05, 0.06], SRMR = 0.07; CFI = 0.90, χ²(1,315, N = 300) = 2561.02, < p .001."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [574] "Exploratory Factor Analysis: The final EFA yielded a three factors solution that explained a total of 66.42% of the variance for the entire set of variables. Confirmatory Factor Analysis: The model fit statistics were optimal except RMSEA, chi-square (105, N = 51) = 111.19, p < .001, CFI = .93, TLI = .91, RMSEA = .11 (CI 90% = .08 – .13), SRMR = .06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [575] "Confirmatory Factor Analysis: CFA confirmed the four-factor solution. All factor loadings were significant (λs > .42, ps < .05), and the fit indices were adequate: 𝜒²diff(4) = 207, p < .001; 𝜒²(estimated parameters = 117, df = 98, N = 277) = 207, p < .001, RMSEA = .06, CFI = .96, TLI = .95, AIC = 15,192.17, BIC = 15,329.89)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [576] "Exploratory Factor Analysis: Principle Component Analysis revealed four factors with eigenvalues above 1. Also, scree-plot suggested a four-factor structure. These factors were soothing which explained 18.33% of the total variance; social modeling which explained 17.74% of the total variance; enhancing positive affect which explained 15.11% of the total variance; and perspective taking which explained 13.48% of the total variance. These factors accounted for 64.66% of the total variance. Confirmatory Factor Analysis: According to the results, the Turkish IERQ demonstrated a good fit to the model. Although the Chi-square statistic was significant (𝜒² (164, N = 275) = 440.893, p < .001), 𝜒²:df was lower than the accepted limit 5:1.The other indices revealed a good global fit (GFI = .87, AGFI = .83, NFI = .87, CFI = .91, RMSEA = .08 with a 90% confidence interval .07–.09)."                                                                                                                       
## [577] "Confirmatory Factor Analysis: CFA results confirmed a one-factor model for the Turkish FS. The model provided a satisfactory fit to the data, 𝜒²(20) = 46.80, n = 320, p < .001, RMSEA = .065 (90% CI = .041–.89, PCLOSE = .144), SRMR = .039, IFI = .969, TLI = .957, and CFI = .969 for university students. The model also provided a satisfactory fit to the data, 𝜒²(20) = 38.29, n = 180, p < .01, RMSEA = .071 (90% CI = .036–.105, PCLOSE = .142), SRMR = .039, IFI = .972, TLI = .960, and CFI = .972 for employees. Measurement Invariance: Multi-group CFA was performed to test for cross-group equality based on gender. Findings indicated that there were no gender differences—the measure had an invariant structure factorially."                                                                                                                                                                                                                                                                                       
## [578] "Confirmatory Factor Analysis: CFA revealed a two-factor solution for the Turkish SPANE. Fit statistics for student participants were 𝜒²(53) = 101.70, n = 320, p < .001, RMSEA = .054 (90% CI = .038–.069, PCLOSE = .333), SRMR = .029, IFI = .976, TLI = .970, and CFI = .976. The model also provided an adequate fit to the data, 𝜒²(52) = 90.04, n = 180, p < .001, RMSEA = .064 (90% CI = .041–.086, PCLOSE = .147), SRMR = .051, IFI = .951, TLI = .937, and CFI = .950 for employees. Measurement Invariance: Multi-group CFA was performed to test for cross-group equality based on gender. Findings indicated that there were no gender differences—the measure had an invariant structure factorially."                                                                                                                                                                                                                                                                                                                        
## [579] "Exploratory Factor Analysis: The two-factor solution explained 42.98% of the shared variance from the 12 items. Confirmatory Factor Analysis: The indexes of fit were adequate for the Spanish ECR-12. The correlations between the two latent factors ranged from r = .24 (p < .001) in sample 5 to r = .42 (p < .001) in male partners from sample 6, suggesting a weak to moderate association. In sample 3, however, the correlation was null, r = .04 (p = .447). Measurement Invariance: Gender invariance testing revealed no significant difference between men and women in the factor loadings in sample 2, Δχ2 (10, N = 919) = 10.59, p = .390; sample 3, Δχ2 (10, N = 578) = 8.99, p = .532; sample 4, Δχ2 (10, N = 436) = 7.65, p = .663; and sample 6, Δχ2 (10, N = 180) = 14.93, p = .135. Further analysis revealed that partial metric invariance was supported; specifically, items 9 and 27 from the avoidance subscale showed higher factor loadings in gay men compared to women."                                   
## [580] "Confirmatory Factor Analysis: To create and examine a shorter version of the Chinese EAC-B, a final CFA was conducted. Subscales with smaller path coefficients were deleted from each factor to look for a parsimonious model from the original path model. To reduce the number of EAC-B subscales to a minimum, only three subscales were retained in each factor. This parsimonious model revealed good model fit indices, where chi-square was 51.14 (N = 303, df = 24), RMSEA was 0.06, CFI was 0.99, NFI was 0.98, and RFI was 0.97. All parameters were significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [581] "Principal component analysis: PCA showed that the EGS with 13 items contains two components because of the negatively formulated items. This can also be seen in the zero-order correlations table where the reversed coded items don’t correlate well with the other items. Removing the negatively formulated items showed that the EGS is a one-component measure. Confirmatory factor analysis: CFA of the EGS with 13 items was not satisfactory (χ2 (65, N = 186) = 907.846, p < .001, CFI = .835, RMSEA = .265, p < .05). The negatively formulated items perform poorly in this model. The CFA of the EGS with 10 items was satisfactory (χ2 (35, N = 186) = 73.731, p < .001, CFI = .990, RMSEA = .077, p < .05). Following the advice from Roszkowski and Soven (2010), the negatively formulated items were not included in the total score of the EGS. However, the negatively worded items are included in the final version of the scale because they can be used in a survey to check for response bias."                  
## [582] "Exploratory factor analysis: Of the 29 original items, 15 items demonstrated adequateness and appropriateness for evaluating workaholism in Korea, and thus were extracted. Confirmatory factor analysis: Although CMIN/DF (= 15.946, p < 0.001) was larger than 3, all the indices for model-fit indicated that this measurement model was statistically appropriate and acceptable. Compared to the Model 1 of Aziz et al. (2013), the four-factor model of the current measure (Model 2) fits much better in measuring workaholism in Korea. Moreover, this Model 2 with four-factor structure was replicated in Model 4 with different subsamples (N = 2,981) that was randomly selected. Lastly, it became clear that Models 1, 2, and 4 with second-order structure showed definitely far better model fit than single-order structure (Model 3). These results support the construct validity of the measure."                                                                                                                     
## [583] "Confirmatory factor analysis: results showed that Model 5 (chi-square (764, N=974) = 2404.33; p < .001, scaling correction factor for MLR = 1.15, CFI = 0.92; TLI = 0.92; RMSEA = 0.047 [CI: 0.045, 0.049]; SRMR = 0.05) fitted the data better than the other 4 models tested."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [584] "Confirmatory Factor Analysis: The original model assuming a two-factor model with uncorrelated errors in the total sample showed contradictory findings. Following minor model modifications, the final model, allowing for correlations of unique variances between two items from the depressive avoidances scale (items 3 and 4, items 4 and 5) as well as between two items from the anxious avoidance scale (items 6 and 8, items 7 and 9), showed a good fit to the data in the first split-half sample (n = 672; 𝜒² = 95.529, p < .001; CFI = .987; TLI = .978; RMSEA = .071, 90%CI: .056,.085; SRMR = .023). The cross-validation in the second split-half sample (N = 673) confirmed the good fit to the data (𝜒² = 101.601, p < .001; CFI = .985; TLI = .976; RMSEA = .073, 90%CI: .059,.088; SRMR = .034). Because the 𝜒²-test is strongly influenced by sample size, it was not taken into account as a global measure of model fit."                                                                                         
## [585] "Confirmatory Factor Analysis: A CFA with the original 24 items divided into 4 subscales proposed by Crick et al. (2005), was conducted and results revealed an unstable factor structure. Thus, a unidimensional version of 11 items suggested by Sharp et al. (2014), was tested and confirmed through a CFA. In the final solution of 10 items, chi-squared test was significant (𝜒² (33, N = 256) = 61.94, p = 0.002), as well as all factor loadings (p < 0.001). Fit indexes revealed a better adjustment (RMSEA = 0.06; CFI = 0.93; TLI = 0.90; SRMR = 0.05) when compared with the 11-item solution. Measurement Invariance: Measurement invariance of the BPFS-C across sex revealed configural and metric invariance and partial scalar invariance."                                                                                                                                                                                                                                                                             
## [586] "Confirmatory Factor Analysis: A CFA with the 24 items of the BPFS-P was performed using the Maximum Likelihood Robust estimation method. In this model, chi-squared test presented a significant result and fit indexes indicated a poor fit to the empirical data. Following the removal of items with loadings under 0.32 and correlations between Items 19 and 17 and Items 18 and 14, an 11-item unidimensional solution was obtained. In the final model, chi-squared test was significant (𝜒² (42, N = 259) = 82.03, p < 0.001). Fit indexes revealed good adjustment (RMSEA = 0.06; CFI = 0.95; TLI = 0.93; SRMR = 0.05), and all factor loadings were significant (p < 0.001)."                                                                                                                                                                                                                                                                                                                                                   
## [587] "Exploratory Factor Analysis: The items are organized into a single factor, resulting in a one-dimensional questionnaire. Confirmatory Factor Analysis: The fit indices of the AFC were optimal: chi-square (9, n = 313) = 12.35, p = .19, RMSEA = .032 (90% CI [.00-.07]), NNFI = .94, CFI = .96, SRMR = .031. The fit indices of the model by groups were also adequate. Measurement Invariance: To study whether there are differences between the age groups, the configural model was calculated, which was considered as the base model: χ2 (16, N = 626) = 27.71, p = .03, RMSEA = .048 (90% CI [.01-.07]), NNFI = .87, CFI = .93, SRMR = .046. Then an invariant model was estimated in in which the factor loadings were forced to be equal in the two groups. The change between models was Δχ2 (6, N = 626) = 5.39, p = .42, which, not being significant, indicates that the pattern of factor loadings is similar in both groups. Finally, it was tested whether the intersections of the items were invariant."              
## [588] "Confirmatory Factor Analysis: The model yielded the following acceptable fit indices: χ2 (332, N = 326) = 703.692, p < .0001; RMSEA = 0.059 (C.I. 90% 0.053–0.065), probability RMSEA < = 0.05; p = .010; CFI = 0.912; TLI = 0.900; SRMR = 0.062, p < .0001. The correlations between the factors were significant and ranged from -0.284 to 0.543 (p < .01)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [589] "Confirmatory Factor Analysis: CFA analyses showed that fit indices were all within the acceptable limit [𝜒² (13, N = 1304) = 299.47, p < .05; SRMR= .061; GFI = .936; NFI = .912; IFI = .915; CFI = .915]. The factor loadings of the Fear of COVID-19 Scale were found significant ranging from .484 to .723. The unidimensionality of the 7-item scale was confirmed on a Turkish sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [590] "Exploratory Factor Analysis: A final EFA was executed forcing the extraction of a single factor, which explained 20% of the variance, but one of the dimensions did not register any item with a load higher than 0.4. Confirmatory Factor Analysis: The confirmatory analysis for this model shows a good fit: N = 3774, χ2 = 5.394, df = 2, p = 0.06; IFC = 0.99, TLI = 0.98; RMSEA = 0.02; SRMR = 0.009, with significant factorial loads of 0.56, 0.82, 0.62, and 0.63, respectively. Measurement Invariance: Multigroup factor invariance analyses conducted on the basis of gender and administrative dependence of the establishments indicate that the scale meets measurement criteria without variation among these established groups."                                                                                                                                                                                                                                                                                        
## [591] "Confirmatory Factor Analysis: After the deletion of five items, CFA results concerning the shortened scale revealed adequate-to-good model fits for the karate, 𝜒² (80, N = 184) = 119.937, 𝜒²/df = 1.49, CFI = 0.920, RMSEA = 0.052, SRMR = 0.063, and football versions, 𝜒² (80, N = 184) = 126.936, 𝜒²/df = 1.59, CFI = 0.924, RMSEA = 0.056, SRMR = 0.061."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [592] "Principal Component Analysis: Cronbach Alpha values (indicating sufficient thresholds of agreement) combined with a Principal Components Analysis with Varimax rotation (an oblique rotation method used in light of items being significantly correlated to one another) confirmed a single construct among the items (Kaiser–Meyer–Olkin Measure of Sampling Adequacy = 0.726; Bartlett's Test of Sphericity: 𝜒² [10, N = 310] = 242.7, p < .000)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [593] "Confirmatory Factor Analysis: CFA findings confirmed a two-factor model over a one-factor and a three-factor model. Fit statistics were as follows: 𝜒²(19,N=132) = 22.53 (p > 0.05), CFI = 0.996, TLI = 0.994, RMSEA = 0.038 (90% CI ranged from 0.000 to 0.088). Measurement Invariance: Multiple-group CFAs revealed that the 2-factor learning interest measurement is invariant across genders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [594] "Exploratory and Confirmatory factor analysis: The EFA yielded 11 clear factors explaining 78% of the variance. Twenty-one items with relatively high modification indices and low loadings were deleted, leaving 36 final items. A respecified CFA yielded improved fit (model chi-square = 1458.410, df = 539, chi-square/df = 2.706, TLI =.914, CFI =.926, SRMR =.0529; RMSEA = .043, RMSEA 90% CI = .041- .046). All standardized loadings were significant (p < .001), ranging from .351 to .868. Although the SRMR and RMSEA were at or better than recommended values, the chi-square ratio, TLI, and CFI met the less stringent criteria (TLI ≥ .90, CFI ≥.93). The fit statistics were clearly superior to a one-factor model and the null model that were calculated for comparison purposes CFA analysis of a public-sector subsample (n = 162), despite the modest sample size, yielded generally acceptable fit (e.g., chi-square/df < 2; SRMR < .08; RMSEA < .08)."                                                          
## [595] "Exploratory Factor Analysis: Based on the number of eigenvalues that were greater than or equal to 1.0, the examination of the scree plot, and the results from the parallel analysis, a one-factor solution emerged. Communalities ranged between .516 and .838, and the percentage of explained variance was 73.26%. Confirmatory Factor Analysis: CFA using all 11 items indicated good model fit according to goodness of fit indices and SRMR, 𝜒² (df= 44, n= 702)= 142.606, CFI= .998, GFI= .998, NFI= .998, SRMR= .033, and marginal fit according to the RMSEA (RMSEA= .057). Standardized regression weights ranged from .693 to .929."                                                                                                                                                                                                                                                                                                                                                                                          
## [596] "Exploratory Factor Analysis: The comparison data (CD) approach suggested that the best solution contained only one factor. The one-factor solution was adopted, and the results of the correspondent EFA revealed 50.8% of explained variance (RMSR = 0.086). Confirmatory Factor Analysis: The goodness-of-fit indices were indicative of an acceptable fit of the data to the model (Figure 2; χ2 (65) = 271.199, n = 277, χ2/df = 4.172, CFI = 0.993, NFI = 0.991, TLI = 0.992, SRMR = 0.054, RMSEA = 0.107, P(rmsea ≤ 0.05) < 0.001, 90% CI ]0.094; 0.121). Measurement Invariance: Full uniqueness measurement invariance was achieved both by multiple criteria (Satorra & Bentler, 2001; Cheung & Rensvold, 2002), which allows establishing comparisons between the shared mental models latent scores among the football and futsal referees."                                                                                                                                                                                   
## [597] "Confirmatory factor analysis: CFA using LISREL 8.8 and a maximum likelihood estimation on the final five items was conducted. All paths were significant, and fit statistics were acceptable (chi-square(5, N=383)520,p< 0.001; CFI=0.99; TLI = 0.98; SRMR = 0.02; RMSEA = 0.09) offering additional validity evidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [598] "Item Factor Analysis: IFA across four different measurement models (e.g. a single factor model, a four-factor oblique model, a higher order factor model and a bi-factor model) indicated the bi-factor model had the best global fit chi-square(207, n = 1203) = 1915.38; CFI = .92, TLI = .91, RMSEA = .083 (.079-.086)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [599] "Confirmatory factor analysis: For BN, after fixing high collinearity between the Emotional Needs and Self-Security factors, results indicated an acceptable fit for the model [𝜒²(18, N=480)=40.34, p < .01; root mean square error of approximation (RMSEA) = 0.05; confirmatory fit index (CFI) = 0.97; Tucker- Lewis Index (TLI) = 0.95]. For ADL, the hypothesized model fit the data [𝜒²(17, N=480)=53.97, p < .01; RMSEA=0.07; CFI = 0.95; TLI = 0.92]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [600] "Exploratory Factor Analysis: The solution with five factors was responsible for explaining 48.4% of the variance total. Confirmatory Factor Analysis: The respecified model with 31 items subdivided into five scales was submitted to CFA and it was observed that the fit indices improved considerably, reaching the recommended standards (X²/(430)=1644.028, p < 0.001, N=706; X²/df=2.823; GFI=0.908; CFI= 0.913; RMSEA = 0.064)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [601] "Confirmatory Factor Analysis: CFA supported a 7-factor structure of the scale, after removing the accepting and non-judgmental attitude facet. Factor loadings (> .34) were acceptable, and the items revealed a good model fit: 𝜒² (188, N = 223) = 236.06, 𝜒²/df = 1.256, CFI = 0.96, TLI = 0.95, RMSEA = 0.03 [90% CI: 0.02 to 0.05], and SRMR = 0.05."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [602] "Exploratory and Confirmatory factor analysis: PCA revealed a 5-factor solution. There was a good model fit chi-squared (df = 247, N = 665) = 1,082.62, p < 0.05, CFI = .95, RMSEA = .071. Model fit could not be improved by further item deletion. Emotional and functional value, social value (friends), social value (parents), curiosity value and monetary value were identified as important dimensions of children’s perceptions of value (p < 0.01). In a separate sample, there was good model fit for the structural model chi-square (df = 656, N = 793) = 2,620.707, p < .05, CFI = .91, RMSEA = .061."                                                                                                                                                                                                                                                                                                                                                                                                                      
## [603] "Exploratory and Confirmatory Factor Analysis: CFA with a three dimensional model was proposed, a model which has identical structure of the original version of the questionnaire. Regarding the results of the CFA, a significant chi-square value was obtained [𝜒² = 247.709; p < .001; n = 751]; CFI = .827; BBNFI = .806; BBNNFI = .741; GFI = .973; AGFI = .949; SRMR = 0.088; RMSEA = .087 and RMR = .069. For all indices, the results obtained indicate a poor fit. As the fit of the CFA was not as expected, EFA was performed. Findings revealed two dimensions explaining variance in 45.9%. All the indices analyzed showed that the model provides a good fit (𝜒² = 48.441; gl = 19; p < 0.001; 𝜒²/gl = 2.54; CFI = 0.980; GFI = 0.991; AGFI = 0.982; RMSEA = 0.045)."                                                                                                                                                                                                                                                      
## [604] "Exploratory Factor Analysis: The results yielded two factors that explained 63.2% of the total variance. All the loadings of the items that formed the different factors were above .50. Confirmatory Factor Analysis: After making a re-specification in the model, the final results of the fit indices led to the acceptance of the proposed model: Chi-squared(25, N = 152) = 33.685, p = .115, Chi-squared/df = 1.35, CFI = .98, TLI = .98, SRMR = .064, RMSEA = .048 (LO90 = .000 – HI90 = .086)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [605] "Confirmatory Factor Analysis: The hypothesized five-factor structure, with all items loading on their respective factors, fit the data in an acceptable manner, with χ2 [142, n = 309] = 333.51, RMSEA = 0.066, CFI = 0.94, IFI = 0.94, TLI = .93, and SRMR = 0.060 [58]. The proposed model guaranteed a substantial improvement in fit indexes compared to four alternative models. In addition, all standardized factor loadings were above .40 and significant. These results suggested that the five constructs captured distinctiveness as expected by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [606] "Confirmatory Factor Analysis: Confirmatory factor analyses showed support for a factorial structure that included four correlated factors. The estimated model showed good fit indexes: 𝜒² (48, N = 1797) = 51.18, p = .35, CFI = 0.98, NNFI = 0.97, RMSEA = 0.006, and SRMR = 0.059. All factor loadings of the items were higher than 0.31."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [607] "Confirmatory Factor Analysis: The measurement model showed good fit indexes: χ2 (6, N=873)= 28.98, p<0.01, CFI=0.99, NNFI=0.99, RMSEA=0.066, and SRMR=0.063."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [608] "Confirmatory Factor Analysis: The model showed a good fit, χ2 (183, N= 1719)= 1590, RMSEA= 0.067, NNFI= .92, CFI= .93. All item factor loadings were statistically different from zero."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [609] "Confirmatory factor analysis: Regarding the OSV measure model, confirmatory factor analyses showed support for a factorial structure that included three first-order factors (insistence, threats, and dissemination of content) grouped within a general second-order factor (online sexual victimization). This model showed a good data fit: χ2(32, N=873)=146.48, p<0.001, CFI=0.98, NNFI=0.98, RMSEA=0.064, and SRMR=0.048."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [610] "Exploratory Factor Analysis: The principal axis factoring with promax rotation resulted in a one-factor solution that exceeded an eigenvalue of 1 and explained 65.8% of the variance. All the factor loadings ranged from .71 to .90. Confirmatory Factor Analysis: After item removal, the final four-item model exhibited excellent fit with the data (𝜒² (N = 162, df = 2) = 1.12, CFI = .99, TLI = .98, RMSEA = .026, SRMR = .018)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [611] "Exploratory Structural Equation Modeling and Confirmatory Factor Analysis: For the Ideal expectation scale, the two‐factor model, when fitted using ESEM, resulted in an acceptable fit (Chi-squared [43, N = 161] = 107.42, p < .001, RMSEA = 0.10, 90% CI [0.07, 0.12], CFI = 0.95, TLI = 0.93) and was marginally better than the CFA model (Chi-squared [53, 161] = 145.58, p < .001, RMSEA = 0.10, 90% CI [0.08, 0.13], CFI = 0.93, TLI = 0.92). As for the Predicted expectation scale, an improved model fit was obtained using ESEM (Chi-squared [43, N = 161] = 118.05, p < .001, RMSEA = 0.10, 90% CI [0.08, 0.13], CFI = 0.97, TLI = 0.95) compared with the CFA (Chi-squared [53, N = 161] = 197.79, p < .001, RMSEA = 0.13, 90% CI [0.11, 0.15], CFI = 0.94, TLI = 0.93)."                                                                                                                                                                                                                                                   
## [612] "Exploratory Structural Equation Modeling and Confirmatory Factor Analysis: For the Ideal expectation scale, a marginally improved fit was obtained from the CFA (Chi-squared [53, N = 543] = 115.92, p < .001, RMSEA = 0.05, 90% CI [0.04, 0.06], CFI = 0.98, TLI = 0.97) compared with the ESEM (Chi-squared [43, N = 543] = 109.74, p < .001, RMSEA = 0.05, 90% CI [0.05, 0.07], CFI = 0.97, TLI = 0.96). As for the Predicted expectation scale, a comparison between the results obtained from both the ESEM (Chi-squared [43, N = 543] = 327.78, p < .001, RMSEA = 0.11, 90% CI [0.10, 0.12], CFI = 0.96, TLI = 0.94) and CFA (Chi-squared [53, N = 543] = 376.13, p < .001, RMSEA = 0.11, 90% CI [0.10, 0.12], CFI = 0.95, TLI = 0.94) showed the fits to be marginally different."                                                                                                                                                                                                                                                 
## [613] "Exploratory Structural Equation Modeling and Confirmatory Factor Analysis: For the Ideal expectation scale, an improved fit was obtained from the ESEM (Chi-squared [43, N = 1,247] = 166.63, p < .001, RMSEA = 0.05, 90% CI [0.04, 0.06], CFI = 0.98, TLI = 0.97) than the CFA (Chi-squared [53, N = 1,247] = 288.05, p < .001, RMSEA = .06, 90% CI [0.05, 0.07], CFI = 0.96, TLI = 0.95). As for the Predicted expectation scale, a marginal improvement in model fit was obtained using the ESEM (Chi-squared (43, N = 1,247) = 513.51, p < .001, RMSEA = 0.09, 90% CI [0.09, 0.10], CFI = 0.96, TLI = 0.93) compared with the CFA (Chi-squared (53, N = 1,247) = 612.15, p < .001, RMSEA = 0.09, 90% CI [0.09, 0.10], CFI = .95, TLI = 0.94)."                                                                                                                                                                                                                                                                                        
## [614] "Confirmatory Factor Analysis: The first CFA considered the overall sample of the Spanish-speaking countries (n = 4,908) and showed adequate fit indices (CFI = 0.972; GFI = 0.930; NFI 5 0.969; TLI = 0.968; RMSEA = 0.044 (90% CI: 0.043 – 0.045); SRMR = 0.032), as well as the CFA conducted with the overall six countries’ samples (N = 7,404; CFI = 0.972; GFI = 0.937; NFI = 0.970; TLI = 0.968; RMSEA = 0.043 (90% CI: 0.042 – 0.044); SRMR = 0.033). Measurement Invariance: Regarding MI analyses across the Spanish-speaking countries’ samples, the baseline model for testing configural invariance (MI1a) showed an acceptable fit to the data."                                                                                                                                                                                                                                                                                                                                                                            
## [615] "Confirmatory Factor Analysis: The first CFA considered the overall sample of the Spanish-speaking countries (n = 4,908) and showed adequate fit indices (CFI = 0.972; GFI = 0.930; NFI 5 0.969; TLI = 0.968; RMSEA = 0.044 (90% CI: 0.043 – 0.045); SRMR = 0.032), as well as the CFA conducted with the overall six countries’ samples (N = 7,404; CFI = 0.972; GFI = 0.937; NFI = 0.970; TLI = 0.968; RMSEA = 0.043 (90% CI: 0.042 – 0.044); SRMR = 0.033). Measurement Invariance: Regarding MI analyses across the Spanish-speaking countries’ samples, the baseline model for testing configural invariance (MI1a) showed an acceptable fit to the data."                                                                                                                                                                                                                                                                                                                                                                            
## [616] "Confirmatory factor analysis: Among the models tested, Model 2 with two correlated factors had good model fit for all fit indices (χ² (df, N), p = 2 109.11 (229, N = 1 762), p < .01, CFI = .985, TLI = .982 RMSEA [CIl; CIu] = .068 [.066; .071], SRMR = .022)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [617] "Exploratory and Confirmatory factor analysis: A five-factor EFA was conducted with the 20 items selected. The five-factor solution accounted for 83% of the total variance of initial eigenvalues. The five-factor CFA oblique model constrained the 20 CWS items to load onto the five corresponding factors, which were allowed to correlate with each other. The standardized factor loadings ranged from .79 to .95. The fit statistics for this CFA model oblique were as follows: MLRχ2(160, N = 274) = 302.04, p < .001, CFI = .951, SRMR = .030, RMSEA = .057 (90% confidence interval .047–.067). The CFI, SRMR, and RMSEA indices all indicated a good data-to-model fit (Hu & Bentler, 1999). CFA model for the single-factor five-item (items 1, 8, 11, 15, and 19) CWS yielded the following fit statistics: MLRχ2 (5, N=274) =7.26, p < .001, CFI = .994, SRMR = .017, RMSEA = .041 (90% confidence interval .000–.100), which resulted in a very good data-to-model fit."                                                  
## [618] "Confirmatory Factor Analysis: The hypothesized model was tested and support was found for the three-factor structure, 𝜒² (74, N = 499) = 238.13, p < .001, SRMR = 0.04, RMSEA = 0.06, CFI = 0.94, and TLI = 0.93. Factor loadings were acceptable, ranging from .56 to 1.03."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [619] "Confirmatory Factor Analysis: The model fit for the final 8-item solution was acceptable, χ²(20, N = 425) = 60.76, p < 0.001, more robust RMSEA = 0.077, CFI = 0.95 and SRMR = 0.04."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [620] "Confirmatory Factor Analysis: The three competing measurement models underlying the MIHT were fitted by using the maximum likelihood estimation with robust standard errors (MLR). The χ2 test does not support the fit of any of these models. Although the RMSEA could support an acceptable fit of these models, the CFI and the TLI suggest the opposite. For the MIHT, the results found there were no substantive differences be- tween the first-order and second-order factor models. However, the bifactor model of the MIHT fitted slightly better our data than the two other models, but remains insufficient to select it. For the MIHT-SF, the 4-correlated factor model provided adequate fit to the data (χ2(113, N = 709)= 545.18, p < .001, CFI = .938, TLI = .925, RMSEA = .073, SRMR = .048)."                                                                                                                                                                                                                        
## [621] "Confirmatory factor analysis: A six-factor 26-item measurement model yielded the following model fit indices: χ2 = (288, N = 433) = 615.376, p < .001, CFI = 0.955, TLI = 0.948, RMSEA = 0.052. Based on Browne and Cudeck (1993) and Hu and Bentler’s (1999) criteria, the current measurement model had a good fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [622] "Exploratory Factor Analysis: An EFA using promax rotation on the ratings of the 50 items generated by the nomination procedure indicated a 31-item, 6-factor solution accounting for 63% of the variance. All items loaded at above 0.50 on one of the six factors. Confirmatory Factor Analysis: CFA indicated that a 6-factor structure adequately fit the data, χ2(1012, N = 318) = 1982.333, p < .01, CFI = 0.967, RMSEA = 0.078."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [623] "Exploratory Factor Analysis: Factor analysis showed that only one factor in the initial solution had an eigenvalue greater than 1, which explained 65.94% of the variance in the FVC-19S scores. Confirmatory Factor Analysis: The final modified model (model 3) after further modification indicated that all fit indices were improved and within the acceptable limit [𝜒² (df = 13, n = 725) = 105.891, p < .05; GFI = .96; CFI = .97; TLI = .95; RMSEA = 0.10]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [624] "Confirmatory Factor Analysis: A one-factor model was fitted to the DAR- 5 dataset (𝜒² (5, N = 368) = 6.52, p = .26) and robust model fit information was obtained: CFI = .996, TLI = .991, SRMR = .021, RMSEA = .029 (95%CI: .000 - .082), AIC = 3612.049, BIC = 3612.049, and aBIC = 3623.081. All these fit statistics supported the appropriateness of a one-factor solution. Item Response Theory: Item performance of the unidimensional scale was investigated under the 2-parameter logistic (2-PL) item response theory (IRT) paradigm. All five DAR items showed adequate discrimination (𝛼 > 1.0) for the latent anger dimension (θ). Item #3 displayed the highest discrimination of θ and item #4 the lowest, respectively 𝛼 = 2.39 and 1.35."                                                                                                                                                                                                                                                                                
## [625] "Exploratory Factor Analysis: Parallel analysis suggested that a 2-factor solution was the more adequate for the data set. Confirmatory Factor Analysis: Because the 2 CFA factors were significantly correlated at 0.852, we examined a second-order hierarchical model that produced a good fit as well: c2 (33, N = 358) = 92.080, P,.001, CFI = 0.968, TLI = 0.956, RMSEA = 0.071 (90% confidence interval = 0.054-0.088), P=.023, SRMR = 0.051. All factor loadings were significant, ranging from 0.659 to 0.932."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [626] "Item Response Theory (IRT): IRT analysis of the initial 12-item measure resulted in the removal of 3 items. Exploratory Factor Analysis (EFA): An EFA with 9 remaining items following IRT showed 2 factors explaining 57% of the total variance. Confirmatory Factor Analysis (CFA): Confirmatory factor analysis was conducted to validate the 2-factor structure of the scale identified by the EFA and resulted in poor model fit suggesting the removal of 1 item. The revised model for the final 8-item measure showed an acceptable fit to the data: χ2(19, N = 491) = 60.18, p < 0.001, RMSEA = 0.066, 90% CI (0.051, 0.082), p < 0.001, SRMR = 0.057, CFI = 0.951, and TLI = 0.928."                                                                                                                                                                                                                                                                                                                                            
## [627] "Exploratory Factor Analysis: Eliminating items with high cross-loadings yielded a 21-item scale with 2 factors that explained 34.5% (Unnerved factor) and 27.5% (Disoriented factor) of the variance. The model had good fit (RMSEA =. 043, .90 CI [.037, .049], χ2(89, N = 965) = 248.72, p <.001, χ2/df = 2.79, CFI = .985). Confirmatory Factor Analysis: The authors noted that a 1-facor solution (Unnerved factor) was selected due to theoretical reasons. A series of confirmatory factor analysis supported the 1-factor model: RMSEA = .095, .90 CI (.077, .095), p < .001, χ2(20, N = 471) = 104.262, p < .001, χ2/df = 5.21."                                                                                                                                                                                                                                                                                                                                                                                                 
## [628] "Exploratory Factor Analysis: EFA of the 14-item TPDS-R at 12, 20 and 28 weeks in the entire sample (N = 1081) showed a clear three-factor structure: a four-item partner involvement (PI) dimension, a five-item NA pregnancy subcomponent and a five-item NA childbirth subcomponent. The TPDS-R-NA showed a total explained variance of 54.7%. EFA of the four-item TPDS-R-PI at 12 weeks of pregnancy in sample I (n = 531) showed a clear one-factor structure (KMO = 0.71, Bartlett’s p < .001) with total variance explained of 61.2%. Confirmatory Factor Analysis: CFA of the 14-item TPDS-R at 12, 20 and 28 weeks in the entire sample (N = 1081) showed an adequate model fit of the three-factor solution: CFI, NFI, TLI, and RMSEA results were >0.9, and <0.06, respectively."

Number of factors

records_wide$number_of_factors <- str_match_all(records_wide$FactorAnalysis, regex("(\\d+)(-| )factor", ignore_case = TRUE)) %>% map(~ as.numeric(.[,2]))
records_wide$number_of_factors_subscales <- str_match_all(records_wide$FactorsAndSubscales, ";") %>% map_dbl(~ length(.)) + 1
records_wide$number_of_factors_subscales[is.na(records_wide$FactorsAndSubscales)] <- NA_real_
records_wide$FactorsAndSubscales %>% na.omit()
##     [1] "Factors: Perceived discrimination; Immigration-related experiences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##     [2] "Factors: Mastery-approach goals; Mastery-avoidance goals; Performance-approach goals; Performance-avoidance goals"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##     [3] "Factors: Short-term consequences; Social disapproval; Long-term concerns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##     [4] "Subscales: Rapport; Apprenticeship; Identification-individuation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##     [5] "Factors: Air travel anxiety; Air travel anger; Airline/airport trust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##     [6] "Factors: Physical concerns; Cognitive concerns; social concerns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [7] "Factors: Unawareness of racial privilege; Institutional discrimination; Blatant racial issues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##     [8] "Subscales: Structural quality; Privacy; Indoor climatic conditions; Hazards; Cleanliness/Clutter; Child resources; Neighborhood quality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##     [9] "Factors: Discussing/mentoring; Resources; Modeling; Recognition/encouragement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [10] "Factors: Curriculum and supervision; Climate and comfort; Honesty in recruitment; Multicultural research"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [11] "Subscales: Mind-reading; Attention to detail; Social skills; Imagination"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [12] "Factors: Citational classism; Institutionalized classism; Interpersonal via discounting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [13] "Factors: Relationship initiation; Negative reactions; Maintaining the bond; Sexual pleasure and motivation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [14] "Factors: Philosophy of Life; Self/Positive Life Attitude; Interpersonal Relationships"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [15] "Subscales: Religious Well-being; Existential Well-being"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [16] "Subscales: Emotional symptoms; Conduct problems; Hyperactivity-Inattention; Peer Relationship Problems; Prosocial Behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [17] "Subscales: Suicide Intent; Interpersonal Influence; Emotion Relief; Suicide Communication; Lethality; Rescue Likelihood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [18] "Factors: Constructing meaning; Facilitating action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [19] "Factors: Increased significance; Senses sharpening; Impending understanding; Heightened emotionality; Heightened cognition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [20] "Factors: Dissociation; Intrusion-arousal; Avoidance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [21] "Factors: ADHD; Solitary aggressive [provocative]; Solitary aggressive [impulsive]; Oppositional defiant; Diffident; Avoidant"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [22] "Subscales: Satisfaction; Stress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [23] "Factors: Sexual permissiveness; Sexual responsibility; Sexual communion; Sexual instrumentality; Sexual conventionality; Sexual avoidance; Sexual control; Sexual power"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [24] "Subscales: Internality; Stability; Globality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [25] "Subscales: Positive interpersonal experiences; Conformity and observance of convention; Evaluation anxiety; Low self regard; Superego strength; Poise vs. dysphoric moods and paranoid attitudes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [26] "Subscales: External Regulation; Introjected Regulation, Identified Regulation; Intrinsic Regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [27] "Subscales: Self-Oriented Perfectionism (12 items); Socially Prescribed Perfectionism (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [28] "Factors: Union loyalty; Responsibility to the union; Willingness to work for the union; Belief in unionism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [29] "Subscales: Internality; Chance; Powerful others"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [30] "Factors: Support; Rejection; Overprotection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [31] "Factors: Preference for order; Preference for predictability; Decisiveness; Discomfort with ambiguity; Closed-mindedness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [32] "Factors: Communication/companionship; Sex/affection; Health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [33] "Subscales: Individual-focused TFL; Group-focused TFL"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [34] "Factors: Self-destructive tendencies; Mentation problems; Conflict with parents; Regressive anxiety; Fighting; Delinquency; Isolation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [35] "Subscales: Perspective taking; Fantasy; Empathic concern; Personal distress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [36] "Factors: Positive valence; Negative valence; Positive emotionality; Negative emotionality; Conscientiousness; Agreeableness; Conventionality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [37] "Subscales: Reality testing; Identity diffusion; Primitive defenses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [38] "Subscales: State; Trait. Factors: Cognitive; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [39] "Subscales: Somatization (SOM); Obsessive-Compulsive (OBS); Interpersonal Sensitivity (INT); Depression (DEP); Anxiety (ANX); Hostility (HOS); Phobic Anxiety (PHOB); Paranoid Ideation (PAR); and Psychoticism (PSY)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [40] "Factors: Acceptance/rejection; Scientific orientation; Spiritual-religious aspects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [41] "Factors: Imagistic Mode; Haptic Mode; Conceptual Mode; Sexual and Aggressive Involvement; Wish for Reciprocity; Continuing the Therapeutic Dialogue; Failures of Benign Internalization; Effort to Create a Therapist Introject; Mourning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [42] "Factors: Mastery of exercise; Body perception; Social comfort/discomfort; Perception of fitness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [43] "Factors: Awkward behaviors in embarrassing situations; Interaction with the opposite sex; Interaction with strangers; Criticism and embarrassment; Assertive expression of annoyance; Disgust or displeasure; Speaking/performing in public/talking with people in authority"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [44] "Scales: Planning; Execution control; Self-reflection. Subscales: Goal setting, Strategic planning, Beliefs of self-efficacy, Goal orientation, Intrinsic interest; Focusing attention, Self-instruction or imagery, Self-monitoring; Self-assessment; Attributions; Self-reactions; Adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [45] "Factors: Powerlessness; High power; Surrender"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [46] "Factors: Attention to feelings; Clarity in discrimination of feelings; Mood repair"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [47] "Subscales: Quality of care issues; Discriminatory experiences; Environmental stressors; Exposure to catastrophic death and dying"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [48] "Subscales: Tension; Worry; Test-Irrelevant thinking; Bodily symptoms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [49] "Factors: Physical, emotional, and social consequences of tinnitus; Hearing ability of the patient; Patients’ view of tinnitus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [50] "Subscales: Angry coping; Unassertive coping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [51] "Subscales: Self-regard; School confidence; School abilities; Physical appearance; Physical abilities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [52] "Factors: Work interference with personal life; Personal life interference with work; Work enhancement of personal life; Personal life enhancement of work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [53] "Reactions Scale subscales: Feedback; Distraction; Downplaying; Humor; Venting; Rumination; Submission. Goals Scale subscales: Enforcing personal standards; Enforcing social norms; Regulating affect; Protecting reputation; Weighing costs; Avoiding conflicts; Taking revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [54] "Factors: General racism experiences; Racism experiences in gay contexts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [55] "Subscales: Experiencing withdrawal; Feeling depressed; Feeling social pressure to use drugs unsafely"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [56] "Subscales: Distress/Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [57] "Subscales: Realism; Genuineness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [58] "Subscales: Pre-Encounter Assimilation (PA); Pre-Encounter Miseducation (PM); Pre-Encounter Self-Hatred (PSH); lmmersion-Emersion Anti-White (IEAW); Internalization Afrocentricity (IA); and Internalization Multiculturalist Inclusive (IMCI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [59] "Subscales: Home integration; Social integration; Productive integration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [60] "Factors: Security and retention; Support for career and skill development; Participation; Loyalty and performance; Responsibility for career and skill development"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [61] "Subscales: Abuse-Specific events; Abuse-Related events; Public disclosure events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [62] "Subscales: Abuse; Dissociation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [63] "Factors: Global Positive Effects; Global Negative Effects; Generalized Arousal; Anxiety; Relaxation and Tension Reduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [64] "Subscales: Exploration; Affiliation; Experimentation; Assimilation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [65] "Factors: Task-oriented coping; Emotion-oriented coping; Avoidance-oriented coping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [66] "Subscales: Depression; Hopelessness; Critical item checklist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [67] "Factors: Cognitive restraint of eating; Disinhibition; Hunger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [68] "Subscales: Panic attacks; phobic avoidance; anticipatory anxiety; disability; and worries about health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [69] "Subscales: Alienation from self; Alienation from work; Powerlessness; Security; External versus internal locus of control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [70] "Subscales: Wife beating is justified; Wives gain from beatings; Help should be given; Offender should be punished; Offender is responsible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [71] "Scales [Factors]: Marriage Role-Expectations [Socio-Emotional Integration; Social-Intellectual Equality; Pre-Marital Chastity; Sexual Fidelity; Social Influence; Sexual Gratification; Social Relations and Community Affairs; Togetherness and Role-Sharing; Wife Adequacy; Intimacy and Parental Adequacy; Desire for Masculine Dominance]; Marriage Role-Enactment [Social Influence; Participation in Community Affairs; Social Activity; Social Integration; Division of Influence; Work Performance; Wife Adequacy; Masculine Dominance; Intimacy Understanding and Sexual Gratification]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [72] "Subscales: Values; Beliefs; Attitudes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [73] "Subscales: Task; Emotion; Avoidance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [74] "Subscales: Significant Other; Family; Friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [75] "Subscale: Being loved; Focus on partner's state; Feelings of love toward partner; Desire for partner involvement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [76] "Subscales: Self-blame; Child blame; Perpetrator blame; Negative impact"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [77] "Factors: Per Merluzzi and Martinez Sanchez (1997)--Social and Leisure Activities; Job and Household Duties; Psychological Distress; Sexual Relationship; Relationships With Partner and Family; Health Care Orientation; Help From Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [78] "Subscales: Frequency of social contacts; Satisfaction with social relations; Quantity of leisure activities; Satisfaction with leisure activities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [79] "Subscales: Role overload subscale; Role ambiguity subscale; Nonparticipation subscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [80] "Subscales: Expertness; Attractiveness; Trustworthiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [81] "Subscales: Intrinsic values; Organization-math ethic; Upward striving; Social status of job; Conventional ethic; Attitude toward earnings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [82] "Subscales: Avoidance and fear of sexual and physical intimacy; Thoughts about sex; Role of sex in relationships; Attraction/interest and sexuality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [83] "Subscales: Stigma and shame; Social isolation; discrimination; Smoking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [84] "Factors: Family Health; Return to Work; Mother’s Well-being; Relationship/Support; Infant Care; Spouse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [85] "Factors: Personal; Family and Friends; Physician/Health Care Team; Neighborhood/Community; Organizations; Worksites; Media and Policy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [86] "Factors: Explicit power-sex; Enjoyment of dominance; enjoyment of submission"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [87] "Subscales: D Scale; F Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [88] "Factors: Maintenance of activity and independence; Coping with treatment-related side effects; Accepting cancer/maintaining positive attitude; Seeking and understanding medical information; Affective regulation; Seeking support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [89] "Subscales: Basic human needs; Activities of daily living."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [90] "Subscales: Risky sex expectancies; Risky sexual behavior; Gender-based sexual risk perceptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [91] "Factors: Death and Danger fears; Social Evaluation and Psychic Stress fears; Physiological Experiences fears; Animal fears"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [92] "Subscales: Sex drive; Attitudes toward casual sex; Sexual communication; Attitudes toward sexually explicit material; Sexual adventurism; Sexual fantasies and thoughts; Masturbatory attitudes; Attitudes toward sexy clothing; Sexual self-esteem; Body image; and Reputation concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [93] "Factors: Traditional conception; Progressive conception; Subject matter; Social conception"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##    [94] "Subscales: Role Overload; Perceived Managerial Support for Safety; Perceived Supervisor Support for Safety; Perceived Coworker Support for Safety; and Hazardous Work Events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [95] "Factors: Sacrifice for family; Sacrifice for others; Self-denial; Lack of self-interest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [96] "Behavioral Regulation Subscales: External; Introjected; Identified; Intrinsic; Integrated; Amotivation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [97] "Subscales: Significant Other; Family; Friends; Military Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [98] "Subscales: External; Introject; Identified; Intrinsic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [99] "Factors: Fear of Negative Evaluation; Illness/Injury Sensitivity; Anxiety Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [100] "Factors: Sense of belonging to the country and its people; Commitment and attachment to the place and the wish to stay in Israel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [101] "Factors: Work-Family Conflict (WFC); Family-Work Conflict (FWC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [102] "Factors: Grandiose-Manipulative; Callous-Unemotional; and Impulsive-Irresponsible."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [103] "Subscales: Work; Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [104] "Factors: Visuospatial memory loaded by VSLT measures; General intelligence/attention; Verbal memory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [105] "Subscales: Extraversion; Agreeableness; Conscientiousness; Neuroticism; Openness to experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [106] "Factors: Cognitive/affective anxiety; Behavioral/subjective anxiety; Somatic anxiety"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [107] "Factor: Positive affect; Negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [108] "Scales: Assured-Dominant; Authoritarian-Aggressive; Hostile-Disagreeable; Socially Neurotic; Unassured-Submissive; Unassuming-Ingenuous; Warm-Agreeable; Gregarious-Extraverted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [109] "Subscales: Pro-Black; Anti-White; Racism Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [110] "Factors: Global Positive Effects; Global Negative Effects; General Arousal; Anxiety; Relaxation; and Tension Reduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [111] "Factors: Self-efficacy in situations of social pressure; Self-efficacy in situations of opportunistic drinking; Self-efficacy in situations characterized by a need for emotional relief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [112] "Factors: Compulsivity; Emotionality; Expectancy; Purposefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [113] "Subscales: Overprotective; Critical control; Appropriately supportive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [114] "Factors: Generalized Trauma; Distress and Self-Dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [115] "Scales: Mobility; Physical activity; Household activity; Dexterity; Activities of daily living; Social activity; Depression; Pain; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [116] "Factors: Amotivation; External regulation; Introjected regulation; Identified regulation; Intrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [117] "Factors: Acceptance of belief and order; Value of suffering"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [118] "Subscales: Habitual; Addictive; Reduction of Negative Affect; Pleasurable Relaxation; Stimulation; Sensorimotor Manipulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [119] "Factors: Belief; Experience; Religious Practice; Individual Moral Consequences; Religious Knowledge; Social Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [120] "Subscales: Vocational identity; Occupational information; Barriers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [121] "Subscales: Positive Problem Orientation (5 items); Negative Problem Orientation (10 items); Rational Problem-Solving (20 items); Impulsivity/Carelessness Style (10 items); Avoidant Style (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [122] "Subscales: Fundamentalism; Nearness to God."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [123] "Factors: Sense of Physical Space; Engagement; Ecological Validity; Negative Effects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [124] "Factors: Oculomotor; Disorientation; Nausea. Hierarchical Factor: General Discomfort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [125] "Factors: Aggression; Withdrawal; Likeability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [126] "Subscales: Social and physical pleasure; Social expressiveness; Sexual enhancement; Power and aggression; Global positive; Relaxation; Cognitive and physical impairment; Careless unconcern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [127] "Factors: Relating to Others; New Possibilities; Personal Strength; Spiritual Change; and Appreciation of Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [128] "Subscales: Job-seeking skills; Work adjustment skills; Job-related social skills; Money management; health and home; Community awareness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [129] "Factors: Individual Honour; Society and Laws about Honour; Legitimity Using Violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [130] "Factors: Leadership; Aggression-Disruption; Sensitivity-Isolation; Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [131] "Subscales: Cooperation; Self Confidence; Maturity; Job Security; Perceived Fairness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [132] "Factors: Surgency/Extraversion; Negative affectivity; Effortful control. Scales: Approach/Anticipation; High Intensity Pleasure; Smiling/Laughter; Activity Level; Impulsivity; Shyness; Discomfort; Fear; Anger/Frustration; Sadness; Falling Reactivity & Soothability; Inhibitory Control; Attentional Focusing; Low Intensity Pleasure; Perceptual Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [133] "Factors: Lowerness (20 items); Upperness (17 items); Closeness (12 items); Distance (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [134] "Factors: In School; Out of School."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [135] "Subscales: Ergonicity; Social ergonicity; Plasticity; Social plasticity; Tempo; Social tempo; Emotionality; Lie scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [136] "Subscales: Emotional and verbal responsivity of mother; Avoidance of restriction and punishment; Organization of physical and temporal environment; Provision of appropriate play materials; Maternal involvement with child; Opportunities for variety in daily routine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [137] "Subscales: Transformational leadership; Transactional leadership; Directive leadership; Empowerment (individual); Empowerment (team); Aversive leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [138] "Scales: Physical functioning; Role functioning: emotional/behavior; Role functioning: physical; Bodily pain; General behavior; Mental health; Self esteem; General health perceptions; Parental impact: emotional; Parental impact: time; Family activities; Family cohesion; Change in health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [139] "Factors: Fear of Negative Evaluation (FNE); Social Avoidance and Distress in General (SAD-New); and Social Avoidance Specific to New Situations or Unfamiliar Peers (SAD-G)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [140] "Subscales: Dressing and grooming; Arising; Eating; Walking; Hygiene; Reach; Grip; Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [141] "Scales: Peer-Group Interactions; Interactions with Faculty; Faculty Concern for Student; Academic and Intellectual Development; Institutional and Goal Commitments."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [142] "Factors: Problem-focused; Emotion-focused; and Social-support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [143] "Subscales: Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [144] "Subscales: Task accomplishment; Communication; Affective interaction; Interpersonal Involvement; Behavior control; Roles; Overall family functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [145] "Factors: Math Test Anxiety; Numerical Task Anxiety; Math Course Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [146] "Factors: Negative Emotions (5 items); Social Pressure (4 items); Physical Discomfort (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [147] "Subscales: Contact; Disintegration; Reintegration; Pseudo-independence; Autonomy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [148] "Subscales: R+; R- ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [149] "Subscales: Partner; Other people; Partners and others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [150] "Factors: Perseverance; Professionalism; Networking; Authenticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [151] "Factors: Negative cognition; Negative affect/avoidance; Negative affect/aggression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [152] "Subscales: Emotional/informational support; Tangible support; Affectionate support; Positive social interaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [153] "Subscales: Pride; Passing; Alienation; Shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [154] "Factors: Consequences; Worry/Helplessness; Expectations; Medication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [155] "Scales: Sleep Apnea; Narcolepsy; Periodic Limb Movement Disorder; Psychiatric Sleep Disorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [156] "Factors: Insomnia; Narcolepsy; Sleep Apnea; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [157] "Subscales: Approach; Vocal Reactivity; High Pleasure; Smile/Laughter; Activity; Perceptual Sensitivity; Sadness; Distress to Limitations; Fear; Falling Reactivity; Low Pleasure; Cuddliness; Duration of Orienting; and Soothability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [158] "Factors: Surgency/Extraversion; Negative Affectivity; Effortful Control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [159] "Factors: Individual-related items; Group dynamics-related items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [160] "Factors: Dieting; Bulimia and food preoccupation; Oral control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [161] "Factors: Task conflict; Relationship conflict; Process conflict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [162] "Subscales: Positive Self-Statements; Negative Self-Statements"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [163] "Subscales: Activation control; Affiliation; Attention; Fear; Frustration; High intensity pleasure; Inhibitory control; Perceptual Sensitivity; Pleasure sensitivity; Shyness. Scales: Aggression; Depressive Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [164] "Subscales: Scholastic competence; Peer acceptance; Athletic competence; Physical appearance; Behavior/conduct; Self-worth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [165] "Subscales: Experience; Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [166] "Dimensions: Handling emergencies; Handling work stress; Solving problems creatively; Dealing with uncertain situations; Learning; Interpersonal adaptability; Cultural adaptability; Physically oriented adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [167] "Factors: Environmental Stress; Familial/Monetary Stress; Academic Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [168] "Factors: Involvement in and knowledge of the process; Effects on the structure and everyday functioning of the school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [169] "Factors: Participants’ rights knowledge; Positive appraisals of research process; Informed consent and trust in research team; Negative appraisals of research process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [170] "Subscales: Neuroticism; Extraversion; Psychoticism; Lie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [171] "Factors: Energy and dynamism; Synergy; Intrinsic; Extrinsic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [172] "Factors: Distress; Chronicity of event; Appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [173] "Subscales: Intrapersonal emotional abilities; Interpersonal emotional abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [174] "Factors: Pet Avoidant Attachment; Pet Attachment Anxiety"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [175] "Subscales: External Problems; Internal Problems; Physical Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [176] "Factors: Negativity; Distorted Egocentrism; Perfectionism; Catastrophizing-Task Exaggeration; Minimizing-Avoiding; Needless Other-Blaming; and Distorted Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [177] "Factors: Giving emotional support; Giving instrumental support; Receiving emotional support; Receiving instrumental support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [178] "Subscales: Anger arousal experience; Anger-eliciting interpersonal situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [179] "Subscales: General college goals; General academic orientations toward courses; Subject-specific goals in courses; Specific goal attributes, Levels of student confidence in course success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [180] "Subscales: Physical injury risk; Criminal risk; Health risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [181] "Subscales: Social skills (Cooperation, Assertion, Responsibility, Self-control); Problem behaviors (Externalizing, Internalizing); Academic competence (teacher only)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [182] "Subscales: Psychasthenic depression; Cognitive depression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [183] "Subscales: Psychological; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [184] "Subscales: Cognitive Irritation; Emotional Irritation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [185] "Factors: Thwarted Belongingness; Perceived Burdensomeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [186] "Factor: Cognitive Performance. Subscales: Verbal Learning Test-Immediate Recall; Verbal Learning Test-Delayed Recall; Verbal Fluency Test; Visuomotor Tracking Test; Consonant Trigrams Test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [187] "Dimensions: Pleasure; Arousal; Dominance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [188] "Factors: Machismo; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [189] "Factors: Learning Goal Orientation; Prove (Performance Goal) Orientation; Avoid (Performance Goal) Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [190] "Subscales: Conflict (12 items); Closeness (11 items); Dependency (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [191] "Factors: Languid/Vigorous (LV); Flexibility/Rigidity (FR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [192] "Subscales: War on Terror Human Rights Scale; Threat Perception Index; Saddam Supports Terrorism Index; Support for President Bush Index; Support for War with Iraq; Leave the UN Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [193] "Subscales: Time-based work interference with family; Time-based family interference with work; Strain-based work interference with family; Strain-based family interference with work; Behavior-based work interference with family; Behavior-based family interference with work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [194] "Subscales: Values-Based Action (VBA); Emotional Acceptance (EA); Pain Acceptance (PA); Pain Willingness (PW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [195] "Subscales: Building Internal Contacts; Maintaining Internal Contacts; Using Internal Contacts; Building External Contacts; Maintaining External Contacts; Using External Contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [196] "Factors: Dangerousness; Attribution of responsibility; Creativity; Unpredictability/incompetence; Poor prognosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [197] "Factors: Disruptive Behavior; Passive Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [198] "Factors: Emotionality; Worry; Lack of confidence; Interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [199] "Subscales: Perceived ease of use; Perceived usefulness; Perceived enjoyment; Concentration; Behavioral attitude; Subjective norm; Perceived behavioral control; Behavioral intention; Actual IM usage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [200] "Subscales: Verbal learning and memory; Processing speed; Attention and working memory; Verbal fluency and naming; Concept formation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [201] "Factors: Comprehension knowledge; Fluid reasoning; Visual processing; Long-term storage and retrieval; Perceptual speed; Working memory. Subtests: Naming Vocabulary; Word Definitions; Verbal Similarities; Verbal Comprehension; Picture Similarities; Recall of Designs; Copying; Matching Letter-Like Forms; Pattern Construction-Alternative; Recognition of Pictures; Matrices; Sequential and Quantitative Reasoning; Early Number Concepts; Recall of Objects--Immediate; Recall of Objects--Delayed; Speed of Information Processing; Rapid Naming; Digit Backward."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [202] "Subscales: People; Programs; Process; Policies; Place"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [203] "Factors: Academic; Performance pressure; Work-family conflicts; Bureaucratic constraints; Poor relationship with superior; Poor relationship with colleagues; Poor job prospect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [204] "Subscales: People; Program; Process; Policy; Place."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [205] "Factors: Effort Commitment; Goal Striving; Reliability/Dependability; Diligence; Lethargy/Laziness; Apathy; Perseverance/Persistence; Determination; Willpower; Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [206] "Factors: People oriented listening style; Action oriented listening style; Time oriented listening style; Content oriented listening style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [207] "Subscales: Performance fear; Performance avoidance; Social fear; Social avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [208] "Factors: Proactive rebelliousness; Reactive rebelliousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [209] "Subscales: Self-Blame and Avoidance; Problem-focused Coping; Seeking Social-support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [210] "Subscales: Vulnerable Child; Angry Child; Enraged Child; Impulsive Child; Undisciplined Child; Happy Child; Compliant Surrender; Detached Protector; Detached Self-Soother; Self-Aggrandizer; Bully and Attack; Punitive Parent; Demanding Parent; Healthy Adult."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [211] "Subscales: Deportment Index; Attention Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [212] "Factors: Passive Acceptance; Revelation; Embeddedness-Emanation; Synthesis; Active Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [213] "Modalities: direct victimization; observational (witnessing); vicarious (being told of victimization)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [214] "Factors: Cognitive Restructuring; Emotional Expression; Wish-Fulfilling Fantasy; Self-Blame; Information Seeking; Threat Minimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [215] "Subscales: Family; School; Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [216] "Subscales: Assessment; General support; Goals; Clinical management; Twelve step facilitation; Cognitive behavioral treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [217] "Subscales: Unhealthy Offerings Scale; Healthy Offerings Scale; Healthy Preparation Scale; Healthy Preparation-Low-fat Subscale; Healthy Preparation-Lean Meat Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [218] "Subscales: Task self-efficacy; Scheduling self-efficacy; Coping self-efficacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [219] "Factors: Mental control; Mental-physical control; Depression and loss of emotional control; Optimism; Self-awareness; Lack of self-confidence; Cognitive deficit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [220] "Factors: Thought control; Mental imagery; Relaxation; Effort expenditure; Logical analysis; Seeking support; Venting of unpleasant emotion; Mental distraction; Disengagement/resignation; Social withdrawal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [221] "Factors: Social anxiety; Generalized anxiety; Separation anxiety; Specific fears."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [222] "Subscales: Study design and data analysis; Funding a study; Presenting and reporting a study; Conceptualizing a study; Responsible research conduct; Collaborating with others; Managing project staff; Organizing a study"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [223] "Subscales: Knowledge; Attitudes; Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [224] "Factors: Convenience food choice; Convenience in meal preparation and cooking; Neophilia; Fresh versus convenient; Convenience in shopping; Time pressures; Individualism; Price check; Shopping list; Disposal of waste ingredients; Information check; Eating out; Whole family; Woman’s task; Stress levels; Propensity towards convenience processes; Planning; Breakdown of mealtimes; Snacking; Eating alone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [225] "Factors: Identity; Cause; Disability; Healing/Cure; Location; Personal Responsibility; Controllability; Mutability; Chance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [226] "Subscales: Need to Maintain a Balance in Life; Vulnerability to Lack of Energy; Fear of Recurrence; Fear of Taking Risks; Concealment of Symptoms; Sense of Being a Burden on Others; Relationship Concerns; Found Strength in Depression; Sense of Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [227] "Subscales: Sharing; Caring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [228] "Factors: Flexible; Quiet; Comfort; Storage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [229] "Factors: Childhood SRBD; snoring; excessive daytime sleepiness; inattentive/hyperactive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [230] "Domains: personal vocational goals; goal-related barriers; barriers- related management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [231] "Subscales: Enhancing the meaningfulness of the work; Fostering participation in decision making; Expressing confidence in high performance; Providing autonomy from bureaucratic constraints"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [232] "Factors: Content; Dependability; and Ease of use loading on one second-order USEA factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [233] "Factors: Team dynamics; Team acquaintance; Instructor support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [234] "Factors:: Enhancing safety climate and attitude; Promoting effective safety-related communication; Streamlining the safety procedures; Ensuring adequate safety training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [235] "Subscales: Probability of success; Anxiety; Interest; Challenge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [236] "Factors: Reliability and Social Functioning of adults with ADHD; Malingering and Misuse of Medication; Ability to Take Responsibility; Norm-violating and Externalizing Behavior; Consequences of Diagnostic Disclosure; and Etiology of adult ADHD."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [237] "Factors: Job Placement, Consultation, and Assessment (Subfactors: Job Development and Placement Services; Vocational Consultation and Services for Employers; Disability Management; Assessment and Evaluation); Case Management and Community Resources (Subfactors: Mental Health and Health Care Advocacy; Case Management and Utilization of Community Resources); Individual, Group, and Family Counseling and Evidence-Based Practice (Subfactors: Individual, Group, and Family Counseling; Evidence-Based Practice); Medical, Functional, and Psychosocial Aspects of Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [238] "Factors: Ethnic Identity (12 items); Perceived Discrimination (9 items); Mainstream Comfort (6 items); Social Affiliation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [239] "Factors: Involuntariness; Effortlessness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [240] "Subscales: Withdrawal; Self-Care; Compliance; and Antisocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [241] "Subscales: Purposeful live; Valued life; Accomplished life; Principled life; Exciting life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [242] "Dimensions: Information gathering; Information processing; Locus of control; Effort invested in the process; Procrastination; Speed of making the final decision; Consultation with others; Dependence on others; Desire to please others; Aspiration for an ideal occupation; and Willingness to compromise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [243] "Factors: Domestic chores; Leisure/work; Outdoor activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [244] "Factors: Beliefs Against Fighting; Fighting is Sometimes Necessary; Beliefs Supporting Reactive Aggression; Beliefs Supporting Proactive Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [245] "Factors: Hopelessness; Perceived Lack of Social Support; Active Suicidal Thoughts and Plans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [246] "Subscales: State Anger; Trait Anger Temperament; Trait Anger Reaction; Anger Expression/Anger In; Anger Expression/Anger Out; Anger Expression/Anger Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [247] "Subscales: Attention to Detail; Attention Switching; Communication; Imagination; Social"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [248] "Subscales: Hyperactivity; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [249] "Factors: Esteem/emotional support; Physical comfort support; Informational support; Tangible support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [250] "Subscales: Reappraisal; Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [251] "Factors: Economic value—Monetary savings; Economic value—Efficiency; Functional value—Convenience; Emotional value—Emotions and Experiences; Symbolic value—Altruism; and Symbolic value—Esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [252] "Subscale: Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [253] "Factors: Cardiovascular; Sleep/fatigue; Mood/cognition; Perceptual problems; Attention/memory; Gastrointestinal; Urinary; Sexual function; Miscellany."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [254] "Subscales: Affection; Punitiveness; Control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [255] "Subscales: Parental affection; Parental punitiveness; Parental control; Parental lax discipline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [256] "Factors (Sub-factors): Physical Reasons (Stress Reduction; Pleasure; Physical Desirability; Experience Seeking); Goal Attainment Reasons (Resources; Social Status; Revenge; Utilitarian); Emotional Reasons (Love and Commitment; Expression); Insecurity Reasons (Self-Esteem Boost; Duty/Pressure; Mate Guarding)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [257] "Subscales: Mental Functioning, 4 items; Self-control, 4 items] Emotional Regulation, 4 items; Physical Functioning, 4 items; and Social Integration, 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [258] "Subscales: Mind Wandering: Deliberate (MW-D); Mind Wandering: Spontaneous (MW-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [259] "Subscales: Functional; Emotional; Physical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [260] "Factors: Practical support; Informational support; Miscellaneous"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [261] "Factors: Memorizing; Testing; Calculating and practicing; Increase of knowledge; Applying; Understanding; Seeing in a new way"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [262] "Factors: High UBIS; Low UBIS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [263] "Factors: Reappraisal; Suppression; Externalizing behavioral strategies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [264] "Factors: Sectarian antisocial behavior; Substance use; Theft; Violent crimes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [265] "Factors: Professional autonomy-independence; Diverse work; Ongoing self-development; Opportunities for emotional intimacy; Professional-financial recognition and success; Feelings of effectiveness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [266] "Factors: Support structures; Engagement and empowerment; Patient care transitions; Team communication"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [267] "Factors: Preoccupation; Overuse; Immersion; Social isolation; Interpersonal conflicts; Withdrawal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [268] "Subscales: External Attributions; Internal Attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [269] "Domains: Treatment engagement; Housing; Psychiatric medication use; Psychiatric hospitalization and ER use; High-risk behaviors; Substance abuse; Forensic involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [270] "Subscales: Functional; Emotional; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [271] "Scales: Left–Right beliefs; Political Cynicism; Antiracism; Libertarian- Authoritarian; Gender Equality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [272] "Subscales: Integrative interaction; Coworker relationship; Socialization; Team Values; Team avoidance value; Cooperative goal interdependence; Team Open Discussion; No Relationship Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [273] "Factors: Group-based shame components; Empathic shame components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [274] "Subscales: Peer Modeling (8 items); Social Reinforcement (11 items); Peer Attributions 8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [275] "Subscales: Overall Satisfaction; Domain Satisfaction; Positive Emotions; Negative Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [276] "Factors: Computer self-efficacy (3 items); Perceived usefulness (4 items); Perceived ease of use (4 items); Behavioral intention to use (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [277] "Subscales: Environment structuring; Goal setting; Time management; Help seeking; Task strategies; Self evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [278] "Subscales (as found by Buckner et al. in 2012): Problem Use; Pathological Use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [279] "Factors: Problem-solving; Planning and evaluation; Translation; Person knowledge; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [280] "Factors: Text-based Processing Factor; Knowledge Access Factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [281] "Factors: Organizational communication; Communication climate; Message characteristics; Communication structure; Group bond; Respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [282] "Factors: Emotional Intolerance; Entitlement; Discomfort Intolerance; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [283] "Scales: Potential Absorptive Capacity (Acquisition; Assimilation); Realized Absorptive Capacity (Transformation; Exploitation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [284] "Factors: Driving Avoidance; Riding Avoidance. Subscales: General avoidance; Traffic avoidance; Riding avoidance; Weather avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [285] "Factors: Depersonalization (7 items); Emotional Exhaustion (11 items); Personal Accomplishment (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [286] "Subscales: Identification; Comprehension; Expression; Regulation; Utilization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [287] "Subscales: Students' Perceptions of Teaching; Students' Perceptions of Teachers; Students' Academic Self-Perceptions; Students' Perceptions of Atmosphere; Students' Social Self-Perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [288] "Subscales: Cognition; Self; Daily life and autonomy; Social relationships; Emotions; Physical problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [289] "Subscales: Attitudes; Subjective Norms; Perceived Behavioural Control; Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [290] "Factors: Technology; Support; Disability; Communication; Upbringing; Work History; Language; Looking for Work; Networking; Job Search Strategy; Targeted Job Search; Access and Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [291] "Subscales: Physical abuse; Threatening behavior; Sexual abuse; Relational abuse; Verbal/emotional abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [292] "Factors: Fair and supportive leadership behavior; Affective organizational commitment; Normative organizational commitment; Affective supervisory commitment; Organizational citizenship behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [293] "Factors: Good verbal expression and fluency; Habitual use of imagery; Concern with correct use of words; Self-reported reading difficulties; Use of images to solve problems; Vividness of dreams, daydreams and imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [294] "Factors: Serious Harm Reduction (SHR); Stopping/Limiting Drinking (SLD)Manner of Drinking (MOD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [295] "Subscales: Somatoform Problem; Psychosis; Psychosexual Problem; Adjustment Problem; Anxiety Problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [296] "Factors: Tendency toward additional failure; Tendency toward reform."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [297] "Subscales: Edibles; Tangibles; Activities; Sensory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [298] "Dimensions: Meaning and Importance of Work; Career Preparation. Scales: Career Planning Attitudes (Subscales: Steps taken; Factors considered; Preferred profession; Job search); Attitudes of Exploration for a career (Subscales: People and resources consulted; Jobs done)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [299] "Factors: Product; Regulatory; Attitudes and beliefs; Lifestyle; Ethnocentrism; Pre-purchase evaluation; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [300] "Factors: Awareness of symptoms associated with activity/energy; Awareness of having a disorder; Awareness of self-esteem and feelings of pleasure; Awareness of social functioning and relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [301] "Subscales: Political action; Physical action/Eco-management; Consumer and economic action; Individual and public persuasion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [302] "Subscales: Individual Attraction to the Group-Task (4 items), Individual Attraction to the Group-Social (5 items), Group Integration-Task (5 items), and Group Integration-Social (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [303] "Subscales: Conflict management; Openness; Motivational; Preventative; Assurance; Support; Social network strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [304] "Subscales: Awareness; Screening and knowledge; and Prevention and control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [305] "Subscales: Positive past; Negative past; Hedonistic past; Fatalistic past; Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [306] "Factors: General factor; Participation in the Local Community; Social Agency or Proactivity in a Social Context; Feelings of Trust and Safety; Neighborhood Connections; Family and Friends Connections; Tolerance of Diversity; Value of Life; Work Connections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [307] "Factors: General irrationality/rationality; Rationally worded beliefs; Self-rating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [308] "Factors: Properties of Nursing Profession, Preference to Nursing Profession, and General Position of Nursing Profession"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [309] "Factors: “Hardness in communicating with the dying and her/his relatives\"; “Avoiding death and the dying”."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [310] "Factors: Computer enjoyment (16 items); Computer anxiety (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [311] "Factors: Independence; Physical; Emotion; Social exclusion; Social inclusion; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [312] "Factors: Behavior Management (BM); Instructional Management (IM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [313] "Subscales: Meaning; Competence; Self-Determination; Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [314] "Subscales: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [315] "Subscales: Aggressive suppression; Behavioral distraction; Cognitive distraction; Reappraisal; Social avoidance; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [316] "Subscales: Initiating Imagination; Conceiving Imagination; Transforming Imagination"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [317] "Factors: Supervisory support; Administrative support; Professionalism; Collegiality; Organizational ethos; Autonomy; Beliefs about parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [318] "Subscales: Depression; Anxiety; Stress; Non-discriminate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [319] "Subscales: Emotional Distress; Familial Distress; Social Distress; Spiritual Distress; Activities of Daily Living; Medical Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [320] "Components: Learning is a Social Activity to which Children have a Right; Correct Behaviours in the Right Environment; Experience and the Necessity for Special Places and Teachers; Special Teachers and Small Classes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [321] "Factors: Lack of time-management skills (Mangelndes Zeitmanagement); Lack of self motivation (Mangelnde Selbstmotivation); Lack of stamina (Mangelndes Durchhaltevermogen); Lack of studio competence (Mangelnde Studierkompetenz); Lack of self-confidence (Mangelndes Selbstvertrauen); Perfectionism (Perfektionismus); Angst; Arousal-Procrastination; Uncertainty regarding studies (Unsicherheit bzgl. des Studiums); Elder success despite pushing (Früherer Erfolg trotz Aufschieben); Aversive task (Aversive Aufgabe); Elaborate task (Aufwändige Aufgabe); and Unfavorable faculty behavior (Ungünstiges Dozentenverhalten)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [322] "Factors: Fear/Malaise; Communication; Relationship; Care of the family; Family as Caring; Active Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [323] "Factors Personal Distress; Inability of Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [324] "Factors: Desirability; Distance; Concreteness; Affect of Message; Congruity; Vocal Intensity. Scales: Frequency; Duration; Stimulus; Desirability; Distance; Concreteness; Affect of the message; Congruity; Vocal intensity; Topic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [325] "Factors: Therapist Expertise (12 items); Therapist Warmth (11 items); Therapist Directiveness (9 items); Task-Oriented Activities (13 items); Experiential/Insight-Oriented Activities (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [326] "Factors: Conscious Motor Processing; Movement Self-consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [327] "There were 12 main tasks and 17 sub-tasks in the final instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [328] "Subscales: Teamwork, roles, and responsibilities; Patient-centeredness; Interprofessional bias; Diversity and ethics; Community-centeredness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [329] "Factors: Cognitive-affective; Somatic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [330] "Factors: Clarity of vision; Expectations; Near vision; Far vision; Diurnal fluctuations; Activity limitations; Glare; Symptoms; Dependence on correction; Worry; Suboptimal correction; Appearance; Satisfaction with correction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [331] "Factors: Emotional; Physical; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [332] "Factors: Quiescent Silence (QS); Prosocial Silence (PS); Opportunistic Silence (OS); Acquiescent Silence (AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [333] "Subscales: Psychosocial; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [334] "Subscales: Psychosocial; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [335] "Factors: Benevolent Humor; Corrective Humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [336] "Factors: Sensitivity in communication; Goal setting; Information seeking; Mediation of interests; Cultural identity reflection; Socializing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [337] "Factors (Components): Feelings before SIB (Negative Emotions before SIB; Positive Emotions before SIB); Feelings after SIB (Negative Emotions after SIB; Positive Emotions after SIB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [338] "Subscales: Belonging/Social interest; Going along; Taking charge; Wanting recognition; Being cautious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [339] "Component: Sensory seeking; Sensory avoiding; Taste/smell processing; Low registration; Touch processing (sensitivity); Touch processing (being restrained); Touch processing (component 5 & 6 combined); Environmental awareness; Body awareness/posture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [340] "Scales: Customer orientation; Competitor orientation; Interfunctional coordination; Creativity; Innovation implementation; Task interdependence; Outcome interdependence; Innovative organizational culture; Behavior-based supervision; Market dynamism; Technological turbulence; Competitive intensity; Sales performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [341] "Factors: Physical Symptoms; Emotional Symptoms; Communication/Practical Issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [342] "Factors: Sharing; Shopping; Real-time updating; Accessing online content; Gaming/gambling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [343] "Factors: Religious Norms; Doctrine; Authority of Leaders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [344] "Subscales: General Pursuit; Aggression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [345] "Factors: Observing; Describing; Acting with awareness; Non-judging of inner experience; Non-reactivity to inner experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [346] "Factors: Self-referent competency (4 items); Other-referent competency (4 items); Teacher-generated excitement (3 items); Activity-generated excitement (5 items); Peer interaction (2 items); and Parental encouragement (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [347] "Factors: Psychosocial; Environmental; Cognitive; and Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [348] "Factors: Compulsivity; Efforts; Distress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [349] "Subscales: Trust vs. Mistrust (10 items); Autonomy vs. Shame and Doubt (8 items); Initiative vs. Guilt (10 items); Industry vs. Inferiority (11 items); Identity vs. Role Confusion (19 items); Intimacy vs. Isolation (8 items), and Generativity vs. Stagnation (10 items); Social desirability (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [350] "Scales: Task-Involving (Subscales: Cooperative Learning; Important role; Effort/Improvement); Ego-Involving (Subscales: Punishment for Mistakes; Unequal Recognition; Intra-team Member Rivalry)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [351] "Factors: Opposition to Equality; Dominance Group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [352] "Subscales: Abstract Reasoning; Verbal Reasoning; Spatial Reasoning; Numerical Reasoning; and Concrete/Mechanical Reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [353] "Factors: Domestic work; Sibling care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [354] "Factors: Service environment; Employee service; Service convenience; Hedonic service"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [355] "Factors: Positive Behaviors; Transgression; Aggressive Behaviors; Lapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [356] "Factors: Somatic Symptoms and Autonomic Arousal (4 items); Symptoms of Tension and Distress (3 items); Mental State Symptoms: Fears and Concerns (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [357] "Factors: Transgression; Attention violation; Aggressive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [358] "Factors: Inductive discipline; Coercive discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [359] "Factors: shared responsibility; emotional response; loyalty proneness; willingness to pay a price premium; attitudinal response; internal locus of control; external locus of control/power of others; free time; purchase intentions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [360] "Factors: Fashion; Time poverty; Popularity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [361] "Dimensions: Performance expectancy; Effort expectancy; Attitudes toward using technology; Social influence; Facilitating conditions; Self-efficacy; Anxiety; Behavioral intention to use the system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [362] "Factors: Grew Up with Technology; Comfortable with Multitasking; Reliant on Graphics for Communication; Thrive on Instant Gratifications and Rewards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [363] "Subscales: Religion and Positive Reframing; Distraction; External Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [364] "Factors: Autonomy; Innovativeness; Risk Taking; Competitive Aggressiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [365] "Subscales: Somatic complaints; Depressive affect; Positive affect; Interpersonal problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [366] "Factors: Participation limitation; Stigma; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [367] "Factors: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [368] "Factors: Labor avoidance; Conflict; Non-emphasis on achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [369] "Factors: Reading enjoyment; Reading for interest; Competition; Self-concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [370] "Factors: Dissociative amnesia; Absorption and imaginative involvement; Depersonalization and derealization; Passive influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [371] "Constructs: Attitudes; Subjective Norms; Perceived Behavioral Control; Moral Obligation; Behavioral Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [372] "Factors: Attention/concentration; Working memory; Self-monitoring; Theory of mind; Shifting; Impulsivity/inhibition; Planning/initiation; Emotional regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [373] "Factors: Relationship with self; Relationship with others; Relationship with God; Facing death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [374] "Factors: Fear of darkness and loneliness; Fear of the unknown; Fear of failure and criticism; Animal fears; Fear of danger and death; Fear of minor injury"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [375] "Factors: Innovation Differentiation; Marketing Differentiation; Low Cost Leadership; Quality Differentiation; Service Differentiation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [376] "Factors: Satisfaction; Cohesion; Consensus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [377] "Factors: Preoccupation with thinness; Food preoccupation; Dieting; Social pressure to eat; Purging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [378] "Factors: Intrinsic knowledge quality; Contextual knowledge quality; Representational knowledge quality; Accessible knowledge quality; Actionable knowledge quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [379] "Subscales: Psychosocial function; speech function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [380] "Factors: Activity avoidance; Somatic focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [381] "Subscales: Cannabis; MDMA (Ecstasy); Amphetamines; Cocaine; Hallucinogens."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [382] "Subscales: Role adequacy; Role support; Job satisfaction; Role-specific self-esteem; Role legitimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [383] "Factors: Women are pushing too much; Labor is unfair to women; and Discrimination is no longer a problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [384] "Factors: Team creative thinking (thinking interaction; thinking complementation; thinking integration); Team creative action (creative collaboration; creative knowledge sharing; creative inspiration); Team creative outcome (creative fluency; creative quality; creative efficiency)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [385] "Primary Factors: Social-Entrepreneurial; Virtual Life; Domestic Relaxation; Music; Vacation; Culture; Outdoor; Animals; Natural Relaxation; Games & Puzzles; Wellness; Household; Design-Artisan; Social-Supporting; Cooking & Baking; Information-Building; Intellectual-Creative; Religion & Spirituality; Finance; Automobiles; and Sports. Secondary Factors: Receptive-Recreational Interests; Active-Recreational Interests; Cherish-Forming Interests; Intellectual Interests; and Competitive Interests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [386] "Factors: Communication Apprehension and Understanding and Communication Apprehension and Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [387] "Subscales: The agents' motivation of willingness to work with drinkers; Their expectations of work satisfaction with these clients; The way they felt about the adequacy of their knowledge and skills in working with these clients; The extent lo which they felt they had the right to work with drinkers; and Their self-esteem in this specific task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [388] "The bifactorial model with standardized factor weights indicated a Positive Factor, Negative Factor, and a Global Self-esteem Factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [389] "There are three factors: Life of Pleasure, Life of Engagement, and Life of Meaning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [390] "Factors: (1) Vocational Exploration, (2) Investment, (3) Diffusion, (4) Foreclosure, trend in excluding choices and (5) Foreclosure, in relation to the significant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [391] "Factor 1: Comfort when interacting with someone who has BPD (comprising the scales Positive Attitudes and Negative Attitudes) and Factor 2: Positives perceptions about BPD (comprising the scales Caretaking Necessity and False Perceptions about BPD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [392] "Factors: Corresponding with Organization, Professional Communicating, Professional Learning, Emotion Regulating, and Career Transforming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [393] "Factors: Physical fatigue, emotion numb, cognitive exhaustion, interpersonal craving, and value confusing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [394] "Scales: First-Person scale (15 items); Third-Person scale (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [395] "Factors: Behavior Commitment, Group Identity Maintaining, In-group Favoritism, Group Psychological Belonging, and Reality Relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [396] "Factors: Self Model and Other Model. Subfactors: General self, Interpersonal self, Goodwill, Availability, and Support of other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [397] "Factors: Extroverted-Introverted; Practical-Imaginative; Thinking-Feeling; and Organized-Flexible."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [398] "Factors: Visionary Influence; Selflessness/Abnegation; Organizational Stewardship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [399] "Factor: Cognitive reappraisal; Expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [400] "Factor 1: Unsafe road crossing behavior; Factor 2: Dangerous playing in the road; Factor 3: Planned protective behavior; and Factor 4: Safe to walk at night (the short version consists of the first three factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [401] "Factors: Doctor-patient relationship; Medical services; and Non-medical services."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [402] "Factors: Ability to recognize emotions; Ability to grasp causal relationships; Weighting capacity; Capacity for decentralization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [403] "Scales: Health planning; Financial planning; Lifestyle planning; Psychosocial planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [404] "Factor 1: Subject-related humor; Factor 2: Humor without reference to the learning object; Factor 3: Self-deprecating humor; and Factor 4: Aggressive humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [405] "Subscales: Motivation Beliefs; Regulation of Motivation Strategies. Factors: Outcome-Approach Goals; Value of Utility-Interest Task; Self-efficacy; Outcome-Avoidance Goals; Regulation by Situational Interest; Result Goals Regulation; Self-report; Structuring Context; Value Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [406] "Factors: Depressive affect; Positive affect; Somatic; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [407] "Factors: Prevention; Promotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [408] "Factors: Perceived infectability and Germ aversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [409] "Factors: Self-Kindness; Self-Judgment; Common Humanity; Isolation; Mindfulness; and Over-Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [410] "Factors: Symptom; Continuity; Tolerance; Loss of control; Reduction of other activities; Time; Intent effect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [411] "Subscales: Anxiety; Avoidance. Additional subscales in clinician-administered version: Fear of social interaction; Fear of performance; Avoidance of social interaction; Avoidance of performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [412] "Factors: Hostile gestures; Illegal conduct; Presence of the forces of the order; Slow driving; Discourtesy; and Blocked traffic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [413] "Subscales: Socioeconomic level; Physical characteristics; Social issues; Services; Cohesion and social integration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [414] "Factors: Existential alienation; Dysfunction; Poor self-care; and Contradictory relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [415] "Scales: Paid Employment; Caregiving; Informal Helping; Volunteering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [416] "Factors: Excuse; Absenteeism; Cheating; Negative; Spending"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [417] "Subscales: Oculomotor; Disorientation; Nausea."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [418] "Subscales: Instrumental social support; Emotional social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [419] "Factors: Focus on People; Focus on Results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [420] "Factors: Prosocial; Interpersonal; Prestige; Comfort; Professional Growth; Self-Actualization; and Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [421] "Factors: Mastery; Delay-approximation; Performance-avoidance; Social approval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [422] "Battery domains: Executive attention; Executive category switching; Working memory; Processing speed; Episodic memory; Language pronunciation; Auditory word-visual picture matching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [423] "Subscales: Negative affectivity (NA); Social inhibition (SI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [424] "Anxiety response factors: cognitive; physiological; motor. Anxiety situations: assessment; interpersonal; phobia type; everyday life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [425] "Factors: Depression; Anxiety; and Positive Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [426] "Factors: Anxiety of evaluation; Anxiety of request for help; Anxiety of interpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [427] "Factors: Intensity: Somatic anxiety; cognitive anxiety; self-confidence; Direction: Direction anxiety; Self-confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [428] "Factors: Prototypical Respect; Idolatry; Awe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [429] "Social Impairment Domains: Home Life; Friendships; Classroom Learning; Leisure Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [430] "Five factors describe the supports and barriers scales (Risk justification, HPD constraints, hazard recognition, behavior motivation, and safety culture)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [431] "Factors: Personal; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [432] "Subscales: Body Image; Body contact; Endurance; Satisfaction; Balance; Breath; Aversion; Tension; Physical discomfort; Distance/removed; Physical distance/Limits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [433] "Subscales: To wash; Check; Organize; Obsessions; Hoard; Mental Neutralization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [434] "Subscales: Parental physical abuse; Parental verbal abuse; Parental nonviolent emotional abuse; Sexual abuse; Emotional neglect; Physical neglect; Witnessed physical violence towards parents; Witnessed physical violence towards siblings; Peer emotional violence; Peer physical violence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [435] "Factors: Accomplishment; Competency; Self-Confidence; Healthy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [436] "Subscales: General burden; Eating duration; Eating desire; Symptoms; Food selection; Communication; Fear of eating; Social functioning; Mental health; Sleep; Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [437] "Subscales: Student Perceptions of Advising; Student Ideals of Advising."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [438] "Factors: Mastery-avoidance; Mastery-approach; Performance-approach; and Performance-avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [439] "Factors: Basic module dental treatment anxiety; Phobia module; Stimulus module."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [440] "Factors: Control; Consequences; Coping Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [441] "Factors: Sharing; Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [442] "Scales: Pain; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [443] "Factors: Psychosocial; Indulgent; Sensorimotor; Stimulation; Addictive; and Automatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [444] "Sensemaking processes: Number of causes; Recognition of critical causes; Constraint breadth; Constraint criticality; Forecast time frame; Forecast valence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [445] "Factors: Blind obedience; Inner acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [446] "Factors: Performance and Power; Planning; Pro-activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [447] "Subscales: Rote-learning scale; Comprehension scale; Application scale; Independence scale; Individualization scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [448] "Factors: Subtle Enamor Style; Direct Enamor Style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [449] "Factors: Mastery; Harmony; Hierarchy; Egalitarianism; Conservatism; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [450] "Subscales: Satisfaction with friendships; Intimacy; Satisfaction with family; and Social activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [451] "Factors: Verbal violence; physical violence; violence against oneself."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [452] "Subscales: Substance abuse; Mental health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [453] "Factors: Solving and Expressing Affective Experiences; External Locused Cognitive Style; Tendency to Somatize Affections; Imaginary Life and Visualization; Acting Impulsively; Affective factor; Cognitive factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [454] "Factors: Use of Application (App); Update of App; Withdrawal; Salience; Social Impairment; Somatic Discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [455] "Factors: Threat; Loss; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [456] "Factors: Beliefs positive in psychotherapy; Negative Beliefs in Psychotherapy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [457] "Factors: Use, abuse and addiction to the smartphone and its applications (Component 1); Personality traits (Component 2); Monetary expenditure in mobile applications and games (Component 3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [458] "Factors: Utilization-possibility of failure; Fearfulness toward failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [459] "Subscales (Factors): Optimal commitment (Enthusiasm; Perseverance; Reconciliation); Over-commitment (Excessive enthusiasm; Compulsive persistence; Perception of neglect); Under-commitment (Lack of interest; Lack of energy; Perception of invasion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [460] "Subscales: Competence; Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [461] "Subscales: Body perception; Smell/taste; Hearing; Sensory seeking; Multiple stimuli; Pain/temperature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [462] "Factors: Shame Beliefs; Knowing identity of voice(s) and privacy violations"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [463] "Factors: Rape victim extension myths; Rapist extension myths; Chastity and other-oriented myths; Reflection myths."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [464] "Global 2nd-order factor: Emotional Impact of Trauma. First-Order Factors: Avoidance; Intrusion; Hyperactivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [465] "Dimensions: personal characteristics and qualities; hobbies and passions; social or environmental resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [466] "Factors: Competence; Autonomy; Social affiliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [467] "Factors: Individual anticipation of materials and references; Individual environmental control; Individual tracking and monitoring; Collective evaluation of content; Individual evaluation of method; Collective decisions for method change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [468] "Factors: Purpose-based motivation; Hedonistic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [469] "Subscales: Institutional practices; Technical aspects of data protection; Data protection law; Data protection strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [470] "Factors: Objective Style; Planning Style; Creative style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [471] "Factors: Secure-based behaviour; emotional self-regulation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [472] "Factors: Positive academic; Positive emotional; Negative academic; Negative emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [473] "Subscales: Family; Significant Others; Friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [474] "Subscales: Compliance with expected maternal behavior; Positive emotional involvement difficulty; Health Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [475] "Factors: Care; overprotection; encouragement of autonomy and independence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [476] "Factors: Excessive use; Dependence; Withdrawal; Avoidance of reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [477] "Factors/Subfactors: Physical symptoms (Tension/restlessness; Somatic/autonomic); Social anxiety (humiliation/rejection; public performance); Separation anxiety; Hazard avoidance (perfectionism; anxious coping)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [478] "Factors: Emoción (Emotion); Familia (Family); Indiferencia (Indifference); Cultura (Culture); Efecto del alimento (Effect of food)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [479] "Scale (Factors): Escala de Competencias Emprendedoras (CE; Entrepreneurial Competencies Scale: Self-efficacy and Proactivity; Assertiveness and Emotional Control; Participatory Leadership; Coping with Risks and Difficulties. Escala de Competencias de Gestión de la Carrera (CGC; Management Skills Scale Career): Decision-Making Skills; Management Skills of the Vital Professional Project."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [480] "Factors: Named aggressor; Victim; Witness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [481] "Factors: Openness; Temperance; Humanity and Justice; Transcendence; Wisdom and Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [482] "Factors: Non-motivation; Identified regulation; Integrated regulation; Inward mirroring; Instrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [483] "Factors: Physical cause; Objective acquisition; Emotional cause; Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [484] "Factors: Positive parenting behavior; Involvement; (Poor) Monitoring; Inconsistent discipline; Corporal punishment; Authoritarian parenting; Responsible parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [485] "Subscales: Physical wellbeing; Social/family wellbeing; Emotional wellbeing; Functional wellbeing; Additional concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [486] "Factors: Oral Health; Functional Well-Being; Socio-Emotional Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [487] "Factor: Total (General) Behavior. Subscales: Social Behavior; Academic Behavior; Emotional Behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [488] "Subscales: Restraint (RS); Eating concern (EC); Weight concern (WC); Shape concern (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [489] "Factors: Self in relation to others; Behavior that demonstrates respect for others; Individual self-perceived value; Perceived value from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [490] "Factors: Social environment; Job and household duties; Psychological distress; Sexual relationships; Extended family relationship; Relationships with family and significant others; Health orientation care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [491] "Factors: Intimidating behaviors (bullying); Bullying victimization (bullied); Active bystander (defending the victim); Extreme bullying/Cyber bullying; Passive bystander."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [492] "Factors: Interact with strangers (Interactuar con desconocidos); Express positive feelings (Expresar sentimientos positivos); Face criticism (Afrontar las críticas); Interact with the people that attract me (Interactuar con las personas que me atraen); Keep calm in the face of criticism (Mantener la calma ante las críticas); Speak in public/Interact with superiors (Hablar en público/Interactuar con superiores); Face situations of ridicule (Afrontar situaciones de hacer el ridículo); Defend your own rights (Defender los propios derechos); Apologize (Pedir disculpas); Reject requests (Rechazar peticiones)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [493] "Factors: Nonreacting against internal experiences, Nonjudging internal experiences, Acting with awareness, Describing own experiences; Observing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [494] "Factors: Physical aggressiveness (Agresividad física); Verbal aggressiveness (Agresividad verbal); Go-to (Ira); Hostility (Hostilidad)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [495] "Factors: Working excessively; Working compulsively"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [496] "Factors: Self-perception; Relationship model; Contact design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [497] "Factors: Religious; Artistic; Academic; Social; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [498] "Domains: Pre-Academic Abilities; Mastery Motivation; Executive Functions; Self-Regulated Inhibition; Mental set shifting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [499] "Dimensions: Achievement; Benevolence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [500] "Factors: Awareness of activity safety and environment; Awareness of physical functions; Awareness of medication; Awareness of cognitive behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [501] "Factor: Self-Efficacy for Therapeutic Mode Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [502] "Factors: Motives; Lack of internal support (Barrier); Lack of external support (Barrier); Lack of resources (Barrier)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [503] "Clusters: Confidence; Tolerance; Realism; Idealism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [504] "Scales: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [505] "Factors: Collectivism/Individualism; Power Distance; Uncertainty Avoidance; Masculinity/Femininity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [506] "Residential; Position; Interpersonal-Physical; Interpersonal-Social"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [507] "Scales: OH Symptom Assessment; OH Daily Activity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [508] "Subscales: Subjective well-being; Material well-being; Job well-being; Well-being with the partner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [509] "Domains: Musculoskeletal pain; chronic pain; pain in connection with fluctuation; nocturnal pain; oro-facial pain; discoloration; edema/swelling; radicular pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [510] "Dimensions: Surgery/hospital stay; Future recovery; Medical Care Needs; Other Care Needs; Probe Duration; Food Intake; Physical Activities; Physical Problems; Social or Emotional Problems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [511] "Subscales: Brooding; Reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [512] "Prior stressors; Childhood family functioning; Preparedness; Difficult living and working environment; Perceived threat; Combat experiences; Aftermath of battle; Nuclear, biological, and chemical exposures; Family stressors (new scale not on original DRRI); Concerns about life and family disruptions; Unit social support; Deployment support from family/friends (new scale not on original DRRI); General harassment; Sexual harassment; Postdeployment stressors; Postdeployment social support; and Postdeployment family functioning (new scale not on original DRRI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [513] "Ratings: Pleasure; Arousal; Dominance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [514] "Factors: Psychological burden; Long-term care affirmation; Financial burden; Disturbance of life due to long-term care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [515] "Subscales: Instructional Strategies (IS); Behavior Management Strategies (BMS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [516] "Subscales: Belief in Supernatural Forces (BSF); Belief in the Influence of God and Destiny (BIGD); Belief in Aliens, Monsters, and Consipiracies (BAMC); and Belief in Consciousness Beyond the Body (BCB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [517] "Factors (occupational therapists' first and second rating and speech therapists' second rating): Attention; Psychomotor retardation; Ability to focus on a task. Factors: (speech pathologists' first rating): Attention; Psychomotor retardation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [518] "Domains: sensorimotor; feeding/eating; sleep; speech/language; cognition; social-emotional; attachment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [519] "Factors: Inclusive; Empowered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [520] "Factors: (1) Personal confidence and hope, (2) Willingness to ask for help, (3) Goal and success orientation, (4) Reliance on others, and (5) No domination by symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [521] "Scales: Asthma Symptoms; Treatment Problems; Worry; Communications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [522] "Listening comprehension; Morpheme generation (i.e., complete phrases by saying missing parts of the phrases)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [523] "Subscales: Self-Awareness; Self-Management; Social Awareness; Relationship Skills; Responsible Decision Making; Motivation to Learn; Reading; Mathematics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [524] "Factors: Depression; Restlessness; Anxiety; Sleep disturbances; Psychotic; Reduced self-care skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [525] "Factors: Hyperactivity; Irritability; Lethargy, Social Withdrawal; Stereotypic Behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [526] "CONDF, Training (reflective construct); DORG, Organizational performance (superordinate multidimensional construct); DORGEC, Economic performance; DORGS, Satisfaction performance; ACAP, absorptive capacity (superordinate construct); AD, Acquisition; AS, Assimilation; TRANSF, Transformation; EX, Exploitation; INN, Innovative capacity (superordinate construct); INNTEC, Product innovation; INNADMIN, Process innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [527] "Factors: Challenges in learning anatomy; Applications and importance of anatomy; Learning in the dissection laboratory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [528] "Subscales: Triggers; Severity; Psychological Distress; Functional Impairments; Insight; Reassurance; Coping Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [529] "Factors: Informative needs about diagnosis and prognosis; Informative needs about exams and treatments; Communicative; Relational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [530] "Factors: Clinical Preparedness (7 items); Attitudinal Awareness (7 items); Basic Knowledge (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [531] "Domains: Emotions; Confidence in one’s performance; Evaluation of risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [532] "Subscales: Emotions; Confidence in one’s performance; Evaluation of risk appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [533] "Factors: Pain; Symptoms; Activities of Daily Living; Sport and Recreation Function; Knee-Related Quality of Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [534] "Factors: Form C: Culture of Learning and Professional Behavior; High Standards for Student Learning, Rigorous Curriculum, and Quality Instruction; Performance Accountability; Advocating; Connections to External Communities; Communication and Monitoring Rigorous Curriculum and Quality Instruction; Supporting Quality Instruction and Performance Accountability. Form A: Form A also includes the factors Connections to External Communities and Performance Accountability. Also similar to a Form C factor was Form A Factor 1, which might be labeled Support for High Standards, Rigorous Curriculum, Quality Instruction, and Culture of Learning and Professional Behavior. Other factors include: Monitoring for High Standards, Quality Instruction, and Performance Accountability; High Standards for Student Learning; Advocating for High Standards and Advocating and Communicating Rigorous Curriculum. As with Form C, Factor 8 on Form A was not readily interpretable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [535] "Factors: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [536] "Factors: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [537] "Factors: Emotional Exhaustion; Satisfaction in Ministry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [538] "Factors: Relaxation and Free Periods; Academic-related Periods; Public-places-related use; Stress-related Periods; and Motives for use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [539] "Primary domains: Depression; Anxiety; Mania-Hypomania"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [540] "Subscales: Student needs (necesidades de orientación; NO); Services required (servicios necesarios, SN). Factors for the NO scale: Personal Guidance; Academic Guidance; Professional Guidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [541] "Scales: Forgiveness towards the Couple; Resentment towards the Couple. Factors: Positive Affection; Benevolence; Positive cognition; Compassion; Positive Behavior; Negative cognition; Negative affect; Avoidance; Revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [542] "Factors: Stress Control; Influence of external factors on performance; Self-confidence; Concentration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [543] "Dimensions: utilitarian orientation; intrinsic preference; interpersonal harmony; innovative orientation; and long-term development"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [544] "Scales: Intensity; Valence or pleasure; Control. Factors: Tension; Depressed state; Anger; Vigor; Fatigue; Confusion; Friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [545] "Factors: Trust; Power; Risk perception; Intimacy; Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [546] "Subscales: Physical health (Physical functioning; Role limitations due to physical health); Emotional health (Anxiety and worry; Fatigue related to treatments; Emotional problems); Social support/hope; Family functioning; School and career functioning; Sexual health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [547] "Factors: Family support; Competition with others; Appearance; Academic performance; Morality; Approval of others; Love."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [548] "Factors: Emotion-focused coping; Problem-focused coping; Maladaptive coping. Subscales: Minimization; Distraction; Situation control; Positive self-instruction; Need of social support; Passive avoidance tendencies; Worrying; Resignation; Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [549] "Factors: Positive Generativity; Generative Doubts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [550] "Subscales: General (General Restorativeness); Coherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [551] "Emotional Facets (Factors): Appraisals; Valence; Bodily Sensations; Motivation; Lexical Labels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [552] "Factors: Life satisfaction; Positive Emotion; Negative Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [553] "Factors: Attention deficit; Hyperactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [554] "Subscales: Generalized anxiety; Panic and agoraphobia; Social phobia; Separation anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [555] "Factors: Task-oriented coping (TOC); Avoidant-oriented coping (AOC) (Contact a friend; Treat oneself); Emotional-oriented coping (EOC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [556] "Factors: Neutralization; Cleaning; Obsession; Organization; Accumulation; Checking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [557] "Factors: Intimacy/Sexuality; Cognition/Memory; Fertility; Relationship; Education/Career; Vitality; Health care; Dependence; Spirituality; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [558] "Subscales: Glare; Near Vision; Daytime Driving; Nighttime Driving; Distance Vision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [559] "Latent variables: Experiencing God's grace; Legalistic attitudes about God's grace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [560] "Factors: Rewards (Recompensas); Leadership (Liderazgo); Change (Cambio); Developing (Desarrollo); Organizational culture (Cultura organizacional); Security (Seguridad); Moral; Service (Servicio); Structure (Estructura); Communications (Comunicaciones); Belonging (Pertenencia); Posts (Puestos); Policies (Políticas); Conflicts (Conflictos)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [561] "Factors: Simplicity of knowledge; Certainty of knowledge; Source of knowledge; Justification of knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [562] "Subscales: Sentences; Adjectives"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [563] "Subscales: Working with Clinically Competent Nurses; Support for Education; RN–MD Relationships; Autonomy; Control of Nursing Practice; Nurse Manager Support; Cultural Values; Adequacy of Staffing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [564] "Subscales: Nurse–physician relationships; Support for education; Clinical autonomy; Control over nursing practice; Adequacy of staffing; Clinically competent peers; Nurse manager support; Patient-centred culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [565] "Major Dimensions: Staff Offers a Choice?; Resident Accepts Offering of Choice?; Staff Enables the Choice?"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [566] "Factors: Supporting Social Relationships; Familiarity with Residents' Preferences; Meaningful Resident–Staff Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [567] "Parameters: Body Weight Dissatisfaction; Perceptual Distortion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [568] "Factors: Working memory; Inhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [569] "Factors: Optimism in situations of success; Optimism in situations of failure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [570] "Factors: Commitment to the Organization; Commitment to the Supervisor; Commitment to the Co-workers; Commitment to the Customers; Commitment to Work; Commitment to the Occupation; Commitment to the Career."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [571] "Subscales: Cognition; Daily Life and Autonomy; Emotions; Physical Problems; Self; Social Relationships; Physical Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [572] "Factors: Authoritarian; Benevolent; Limitless; Mystical; Ineffable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [573] "Factors: Rumination; Avoidance; Mentalization difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [574] "Subtests: Locomotor skills; Ball skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [575] "Factors: Lassitude, mood, and cognitive and social functioning; Anxiety, agitation, irritability, and anger; Suicidal ideation; Disruptions in sleep quality; and Changes in appetite and weight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [576] "Subscales: Locomotor skills; Ball skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [577] "Factors: Locomotor skills; Ball skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [578] "Factors: Quality and Frequency of Interaction; Equal Status; Stereotyping; Support for Positive Interaction; Cultural Socialization; Mainstream Socialization; Promotion of Cultural Competence; Colorblind Socialization; Critical Consciousness Socialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [579] "Subscales: Increase Positive; Increase Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [580] "Scales: Attitudinal; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [581] "Dimensions: Prosocial; Antisocial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [582] "Subscales: Somatic; Cognitive; Self; Sleep; Sexual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [583] "Factors: EBM websites; Evidence-based journals; Types of studies; Terms related to EBM; Practice; Access; Patient preferences; Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [584] "Subscales: Technical (T); Organizational (O); Personnel (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [585] "Subtests: Objects; Faces; Animals"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [586] "Dimensions: Muscularity; Body Fat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [587] "Factors: Perceived Experience with Discrimination; Perceived Language Ability Pressures; Perceived Negative Community Climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [588] "Factors: General pathology; Self-destructive behavior; Fear of closeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [589] "Factors: Cultural humility, Cultural comfort, and Cultural missed opportunities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [590] "Factors: Trust; Meaning; Efficiency and efficacy; Organizational inefficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [591] "SDQ subscales: Hyperactivity; Conduct Problems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [592] "Subscales: Infancy; Childhood; Adolescence-Adulthood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [593] "Subscales: Willingness to forgive with regret (SBV-MB); Willingness to forgive without regret (SBV-OB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [594] "Factors: Persistence; Flexibility–Rigidity - Flexibility; Flexibility–Rigidity - Rigidity; Self-Control - Organization; Self-Control - Affective Regulation; Self-Realization; Hopelessness - Pessimism; Hopelessness - Optimism; Emotional Vulnerability - Insecurity; Emotional Vulnerability - Confidence/Trust; Emotional Vulnerability - Persuasiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [595] "Factors: Goal planning; Help-seeking; Family support; Affect control; Positive thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [596] "Factors: Symptoms management, Finding strategies; Confidence in one’s own abilities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [597] "Scales: Masculine positive characteristics; Masculine negative characteristics; Feminine positive characteristics; Feminine negative characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [598] "Factors: Performance issues; Self-concept; Sleeping problems; Suicidal ideation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [599] "Subscales: Required Self-Control; Emotional Dissonance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [600] "Scales: Boldness; Meanness; Disinhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [601] "Dimensions: Logistics; Culture; Digital; Systems of care; Experiences of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [602] "Factors: Coping with illness; Health; Recovery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [603] "Factors: Teacher-Student Friction; Satisfaction with Teacher; Affective relationship; Favoritism; Student Engagement; Classroom Order/Organization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [604] "Subscales: Family; Social; School; Staff; Health; Sexual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [605] "Factors: Pretending emotions (Surface acting); Invoke emotions (Deep acting); Hide emotions (Surface acting hiding); Emotional consonance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [606] "Factors: Familiarization; Immersion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [607] "Subtests: Verbal analogy; Figurative reasoning; Symbolic analogy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [608] "Factors: (1) Treatment Advantages, (2) Treatment Convenience, (3) Treatment Confidence, and (4) Satisfaction with Physician."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [609] "Factors: distress; feelings of persecution; family conflict; rigidity; happiness; loneliness; financial security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [610] "Factors: Interpersonal Security; Certainty in Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [611] "Factors: Aggressive behavior; social anxiety; obsessive-compulsive behavior; avoidance from family members; depression; absence of activities of daily living; incomprehensible maladapted behavior; absence of social participation; decreased activity; irregular life pattern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [612] "Subscales: Problem solving; expressive coping; denial of guilt; relativization; wishful thinking; self-protection; pleasure; resignation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [613] "Instrumental factors: Social Rebellion; Authoritarianism; Machismo; Cooperation; Achievement-oriented; Egocentric. Expressive factors: Affiliation; Romantic; Vulnerability; Negative emotions; Passive Aggressive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [614] "Subscales: Self-efficacy towards treatment; Social self-efficacy; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [615] "Factors: Beliefs about training contributions for the individual and the organization; Beliefs about the process of surveying training needs; Beliefs about outcomes and the process of training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [616] "Dimension Factors: Production; Interpretation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [617] "Factors: Symptoms & Function; Emotional Response; Healthcare Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [618] "Subscales: Somatic; Psychological; Social factor; Life habits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [619] "Factors: Academic Confidence; Interpersonal Confidence; Moral Certainty; Coping Efficacy; Achievement Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [620] "Factors: Parental commitment; Attitudes towards school; Perception of one's level of academic success; Parental supervision; School aspirations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [621] "Subscales: Professional Self-efficacy; Professional Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [622] "Factors: Fathers: Positive interaction, Punitive discipline; Positive affection; Emotional intolerance; Restrictive control. Factors: Mothers: Positive interaction, Punitive discipline; Positive affection; Emotional intolerance; Restrictive control; Educational support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [623] "Subscales: Symptoms; Sports activities; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [624] "Factors: Projecting fault onto others or sharing of responsibility (Rejet ou partage de responsabilité); Minimization of transgression and their consequences (Minimisation des transgressions et de leurs consequences)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [625] "Factors: Appreciation of humor; Personal sense of humor; Uses of coping humor; Positive attitudes towards humorous people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [626] "Subscales: Familia (Family); Self; Escola (School); Self Comparado (Self-Comparison); Não-Violência (Non-Violence); Auto-Eficácia (Self-Efficacy); Amizade (Friendship)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [627] "Factors: Agency thinking; Pathway thinking; Transcendental adaptation; Persisting effort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [628] "Factors: Dietary; Sleep; Hygiene; Study; Exercise; Entertainment; Interpersonal relationship; Coping style; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [629] "Factors: Uncertainty; Negative experiences; Positive experiences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [630] "Factors: Primitive cluster, Neurotic cluster, and Adaptive cluster. Developmental Levels: Generativity, Solidarity, Individuation, Rivalry, Resistance, Symbiosis, Egocentricity, Fragmentation, and Lack of Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [631] "Subscales: Self-to-Self Consciousness; Other-to-Self Consciousness; Self-to-Other Consciousness. Subscale sub-dimensions: Public; Private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [632] "Factors: Exploration; Competition; Risk-taking; Perseverance; Punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [633] "Factors: Emotional dependency; Triangulation and responsibility for parents; Emotional separation from parents; Autonomy; Emotional separation from partner; Fusion with parents; Fusion with partner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [634] "Systemic Functional Grammar Dimensions: Field; Tenor; Mode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [635] "Factors: A sense of belonging; A sense of situation; A sense of contribution; A sense of role; A sense of cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [636] "Subscales: Lack of control of depression; Catastrophizing; Worthlessness; Incapability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [637] "Factors: Clinician self-recognition; Clinician annoyance; Ability to maintain boundaries; Negative affect; Apprehension/tension; Positive affect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [638] "Scales: Stress Reaction; Alienation; Control; Aggression; Well-Being; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [639] "Factors: The 16-item version of the measure includes four factors (Yearning, Impairment, Kinesia, and Music)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [640] "Factors: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [641] "Subscales: Intrinsic (Intrínseca); Integrated (Integrada); Identified (Identificada); Introjected (Introyectada); External (Externa); Amotivation (Amotivación)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [642] "Factors: Uncontrollable (IC); Over-requirement (SE); Upper train (TS); Surface-related (RS); Controllable (C); Recurrence (R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [643] "Factors: Equality of Opportunities; Social Relations; Society and Visual Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [644] "Factors: Intrinsic Motivation Knowledge; Intrinsic Motivation Self-Improvement; Intrinsic Motivation Stimulation; Identified Extrinsic Motivation; Introjected Extrinsic Motivation; Extrinsic Motivation External Regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [645] "Factors: Strategy; Adversity; Skill; Affects; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [646] "Scales: Aggressiveness (Aggressivität); Adventure (Abenteuer); Nature (Natur); Intellect (Intellekt); Aesthetics (Ästhetik); Community (Gemeinschaft); Competition (Wettkampf); Spontaneity (Spontaneität); Endurance (Ausdauer); Force (Kraft); Fitness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [647] "Factors: Interest; Challenge; Choice; Enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [648] "Scales: Motivation for education (general factor); Personal effectiveness; Interest; Deployment; Outcome Effectiveness; Indirect effectiveness. Subscales: Personal effectiveness: context; Personal Effectiveness: general."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [649] "Factors: Handling of complaints (Umgang mit Reklamationen); Finding out customer’s requests (Ermitteln von Kundenaufträgen); Establishing a relationship to the customer (Beziehungsaufbau zum Kunden)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [650] "Factors: Providing empathetic care as a way of preventing aggression; Controlling upsetting thoughts caused by aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [651] "Factors: Intrusion characteristics; Mental discomfort accompanying intrusions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [652] "Factors: Physical/emotional exhaustion (PEE/EFE), Sport devaluation (SD/D), Reduced sense of accomplishment and (RSA/RSL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [653] "Factors: Empowering; Disempowering (higher-order factors). Dimensions: Autonomy support; Controlling; Task involving; Ego involving; Relatedness support; Relatedness thwarting; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [654] "Factors: Emergence of unconscious; Activation of conscious feeling; Reinterpretation of memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [655] "Factors: Function; Insomnia; Lethargy; Motile abnormal sleep; Immotile abnormal sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [656] "Factors: Respect; Organization; Patient and family information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [657] "Factors: Adjustment to social positions; Impersonal bureaucratic arrangements; Limitation of alternatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [658] "Dimensions: target-specification goal ambiguity; time-specification goal ambiguity; program evaluation goal ambiguity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [659] "Factors: Internet sociality self-perception; Internet self-disclosure; Internet interpersonal; Internet interaction dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [660] "Factors: Belonging (Pertenencia); Discretion (Discrecionalidad); Remuneration systems (Sistemas de retribución); Reconciliation of work, personal and family life (Conciliación de la vida laboral, personal y familiar)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [661] "Factors: Talent development (Desarrollo del talento); Time and objectives (Tiempo y objetivos)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [662] "Subscales: Anxiety; Depression; Learning problem; Sociality problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [663] "Factors: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [664] "Factors: Training for employment; Quality of schooling; Social interaction; Social pressure; Political and citizenship engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [665] "Factors: Catastrophizing; Dichotomous thinking; Outside self-worth; Negative self-labeling; Perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [666] "Factors: (1) Education, (2) Business Achievement, (3) People and Environment, and (4) Technology and Innovation Affinity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [667] "Factors: Conflict and Confusion; Sensitivity and Responsiveness; Availability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [668] "Factors: General internalization (Internalização geral); Behavioral intention (Intenção de comportamento)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [669] "Factors: Parent support; Restrictive control; Compliance. Subscales: Warmth; Autonomy; Knowledge; Inductive Reasoning; Permissiveness; Punishment; and Intrusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [670] "Factors: Technology acceptance; Technology competence; Technology control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [671] "Factors: Reassurance behavior; Avoidance behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [672] "General Factor: School general self-efficacy. Subscales Math; French; School"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [673] "Factors: Hyperactive delirium; Hypoactive delirium."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [674] "Factors: Social relationships; Personal well-being; Self-determination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [675] "Factors: Optimism; Pessimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [676] "Factors: Biological needs (Biologische Bedürfnisse); Psychological needs (Psychologische Bedürfnisse); Social needs (Soziale Bedürfnisse); Environmental needs (Umwelt-bedürfnisse). Subfactors: Body (Körper); Mobility (Mobilität); Basal and instrumental activities of the daily life (basale und instrumentelle Aktivitäten des täglichen Lebens); Job (Beruf); Memory/Cognition (Gedächtnis/Kognition); Behavior (Verhalten); Mental health (psychische Gesundheit); Security (Sicherheit); Social Activities (soziale Aktivitäten); Emotional closeness (emotionale Nähe); Information, Material."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [677] "Factors: Hygiene (Higiene); Morality (Moralidad); Sexuality (Sexualidad); Bodily violation (Trasgresión corporal); Small animals (Pequeños animales); Deterioration/disease (Deterioro/enfermedad)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [678] "Factors: E = Extraversion, A = Agreeableness, C = Conscientiousness, N = Negative Emotionality, O = Open-Mindedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [679] "Factors: Behavioral; Affective; Cognitive; Agent engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [680] "Factors: Partner Love (Partner Duyulan Sevgi); Truth of the relationship (Iliskinin Dogrulugu); Loved By Partner (Partner Tarafindan Sevilme)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [681] "Factors: Morality; Sociality; Emotional Stability; Qualification; Outside appearance; Intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [682] "Factors: Relational skills; Family bonds; Attitude towards the addict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [683] "Factors: Restriction/Blaming/Threat; Emotional-Verbal Violence; Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [684] "Factors: Choice of Social Activity; Gender Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [685] "Factors: General sense of direction; Use of compass directions; Preference for survey representation of space; Landmark-centered preference; Route preference for spatial representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [686] "Factors: Event Load; Personal Vulnerability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [687] "Factors: Corporate website favorability; Usability; Customer service; Information; Visual; Corporate image; Corporate reputation; Satisfaction; Attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [688] "Factors: Emotional control; Rationality; Emotional Repression; Need for Harmony; and Understanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [689] "Factors: Meaning of the belonging to the regional territory; Awareness of belonging; Meaning of belonging to the regional culture and history."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [690] "Subscales: Subjective Burden; Objective Burden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [691] "Subscales: Care Delivery; Care Interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [692] "Subscales: Frontal-Subcortical; Posterior-Cortical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [693] "Domains: Substance use; Health risk; Physical/psychological health; Personal/social functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [694] "Subscales (1) Vocal, (2) Eating/sleeping, (3) Social, (4) Facial, (5) Activity, (6) Body and Limbs, and (7) Physiological Signs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [695] "Factors: Altered Consciousness; Sensation; Relaxation; Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [696] "Factors: Fear of Rejection; Readiness for Self-Disclosure; Need for Care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [697] "Subscales: Emotion intensity attribution; Obligation perception; Permissibility judgment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [698] "Factors: Cognitive abilities; Preference for display of numeric information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [699] "Factors: Arousal; Avoidance; Intrusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [700] "Subscales: Feel Shame; Escape; Prevent Exposure; and Externalize Blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [701] "Factors: Emotional Functioning; Physical Functioning; Teasing/Marginalization; Positive Social Attributes; Mealtime Challenges; and School Functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [702] "Factors: Accepted Relations; Initiated Relations; Group Relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [703] "ESDQ Self-Rating Factors: Anger, Emotional Dyscontrol, Helplessness, Inertia, Fatigue, Indifference, Inappropriate, and Euphoria. ESDQ Partner-Report Factors: Anger, Helplessness, Emotional Dyscontrol, Indifference, Inappropriateness, Fatigue, Maladaptive behaviour, and Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [704] "Subscales: Emotional; Cultural; Perceptual; Understanding; Flow-Proximal Conditions; Flow—Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [705] "Scales: Language brokering extent; Language-brokering attitudes. Factors: School-related language brokering; Home management language brokering; Burden of language brokering; Positive attitudes; Negative attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [706] "Factors (Families' attitudes): Anxiety and resistance to conveying; Not knowing how to convey; Expressing feelings on a daily basis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [707] "Subscales: Personal well-being; Communal well-being; Environmental well-being; and Transcendental well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [708] "Facets of Personality Factors: Self-Consciousness (Neuroticism; SJT-N), Gregariousness (Extraversion; SJT-E), Openness to Ideas (Openness to Experience; SJT-O), Compliance (Agreeableness; SJT-A); Self-Discipline (Conscientiousness; SJT-C)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [709] "Factors: Leadership; Culture; Evaluation; Social Capital; Formal Interactions; Informal Interactions Non-Direct; Informal Interactions Direct; Structural and Electronic Resources Formal; Structural and Electronic Resources Traditional; Structural and Electronic Resources - Electronic; Organizational Slack - Time; Organizational Slack - Space; Organizational Slack - Human Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [710] "Factors: Emotional Exhaustion; Pessimism; Devaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [711] "Factors: Negative emotions; Somatic symptoms; Intensity and frequency of major stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [712] "Subscales: Ganqing (4 items), Renqing (4 items), and Xinren (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [713] "Factors: Ecological approach, client-centred approach, accessibility, quality of the service providers and continuity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [714] "Factors: Willingness to learn, Social competence, Self-motivation, Stress resistance, and Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [715] "Subscales: Perceived Computer Attributes Scale and Computer Attitudes Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [716] "Subscales: Metacognitive Demands; Student-Student Discourse; Student-Teacher Discourse; Student Voice; Distributed Control; Teacher Encouragement and Support; Emotional Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [717] "Attention skills: attention maintenance duration; audiovisual matching accuracy; attention shifting speed. Lateral events: Social Positive; Social Neutral; Nonsocial. Central stimuli: High competition; Low competition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [718] "Subscales: (a) treatment of others; (b) religiousness; (c) personal strength; (d) belongingness; (e) affect-regulation; (f) self-understanding; and (g) optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [719] "Subscales: pay information seeking preferences; pay information sharing preferences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [720] "Factors: recognition of needs; collaboration to access help from formal and natural supports; activation of skills to cope with stress, enhance resilience, and develop and carry out plans of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [721] "Consensus Analysis/Second-Order Factors: Trusting Peers' experience while providing support and structure; Healthy peers, healthy clients; You can trust us, we are here to help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [722] "Factor 1: Worry about transplant; Factor 2: Guilt regarding donor; Factor 3: Disclosure; Factor 4: Adherence; and Factor 5: Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [723] "Factors: Cognitive; Affective; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [724] "Factors: Compulsory; Democratic; Politicized; and Integrative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [725] "Factors: Caring-fairness; Trust; Toughness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [726] "Subscales: Biopsychosocial conceptualization; Perceived competence in mental health diagnosis and treatment; Perceived importance of mental health providers; Access to mental health/ behavioral medicine services; and Perceived PCP role in mental health diagnosis and treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [727] "Eight subscales: Promotion and Prevention subscales for each of four types of crafting (task, relational, skill, and cognitive)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [728] "Subscales: Administrative data monitoring, Two-step screening, Furniture and equipment, Multidisciplinary staff, Discharge planning, Standardized assessment tools, Physical environment and design, Quality improvement, Clinical care protocols, Educational sessions, Geriatric team, Linkages between ED and homecare services, and Family-centered discharge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [729] "PCA extracted a single factor (i.e., patient insight)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [730] "Hope components: Attachment; Survival-Coping; Mastery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [731] "Subscales: Sleep quality; Sleep anxiety; Bedtime refusal; Sleep routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [732] "Factors: Inconsiderate Behavior; Abusive Supervision; Social Exclusion; Inappropriate Jokes; Violating Communication Etiquette; Free-Riding; Gossip and Cursing; Climate of Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [733] "Risk Factors: C=Coma; I=Intoxication suspected; D=Deficit (neurological); S=Seizure; S2=Skull Fracture. The five factors together comprise the CIDSS2 risk score (C-I-D-S-S2 added together)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [734] "Sharp/dull; Surface Pressure; Surface Localization; Temperature; Proprioceptive movement and direction; Sensory extinction; Two-point discrimination"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [735] "Dimensions: Involvement, Consistency, Adaptability, and Mission. Subscales: Empowerment, Team Orientation, Capability Development, Core Values, Agreement, Coordination and Integration, Creating Change, Customer Focus, Organizational Learning, Strategic Direction and Intention, Goals and Objectives, and Vision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [736] "Factors: Competency and Autonomy; Perception of Actual Cooperation; Perceived Need for Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [737] "Subscales: Happiness; Sadness; Anger; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [738] "Factors: Fear avoidance; damage; embarrassment avoidance; symptom focusing; all-or-nothing; resting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [739] "Factors: Religious needs; Existential needs; Forgiveness/generativity needs; Need for inner peace; Emotional needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [740] "Domains: Daily living and self-care; Work, study or purposeful daily activities; and Social contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [741] "Domains: Pain; Stiffness; Physical function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [742] "Domains: Self perception; Role-emotional; Role-social; and Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [743] "Factors: Conspicuous; Unique; Quality; Extended self; and Hedonic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [744] "Subscales: Impulsive aggression; Premeditated aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [745] "Subscales: Self-punishment; Escape; Dependence; Belonging; Revenge; Stigma; and Eliciting help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [746] "Subscales: Symptoms; Function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [747] "Factors: Persuasion; Nurturing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [748] "Factors: Family; Peer; and School."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [749] "Factors: Affect; Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [750] "Patient admission; Organization of work; Special treatments, examinations and procedures; Allocation of material resources; Allocation of staffing resources; Patient discharge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [751] "Factors: Salience; mood modification; tolerance; withdrawal; conflict; and relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [752] "Subscales: Orientation; Registration; Clock drawing; Delayed recall; Verbal fluency; Logical memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [753] "Scales: Social interdependence; Sociocognitive conflict regulation; Motivation. Subscales: Cooperation; Competition; Individualistic; Perceived Competence; Interest; Relatedness; Epistemic Regulation; Relational Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [754] "Factors: Attention; Internalizing; Externalizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [755] "Factors: Performance; Social; Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [756] "Factors: Therapist Adherence; Client-Therapist Alliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [757] "Factors: Engulfment; Rejection; Acceptance; and Enrichment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [758] "Subscales: General fatigue; sleep/rest fatigue; and cognitive fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [759] "Subscales: Work-related difficulties; Factors contributing to work difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [760] "Factors: Meaning in life judgments; Coherence; Purpose; Mattering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [761] "Factors: Hygiene; Eating; Sleep; Duties at home; Leisure at home; Exercising; Social activities; and Work/study involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [762] "Factors: Direct relation with God (DRC); Asceticism (ASCT); Divine love (DL); Meditation (MD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [763] "Factors: Cognitive empathy; affective empathy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [764] "Factors for the ARM-12: Bond, Partnership, Confidence, and Openness. Factor for the ARM-5: Core alliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [765] "Subscales: Positive Effects; Service and Cost; Negative Features; Personal Image."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [766] "Factors: Value of life; Negative emotions; Sense of alienation; Physical discomfort; Health care concerns; Existential distress; Food-related concerns; Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [767] "Factors: Indirect OIM tactics; Promotion; Ingratiation; Exemplification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [768] "Factors: Situational perspective; External perspective; Internal perspective; Views about approaches."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [769] "Subscales: Avoidance Reinforcement; Overprotection; Sanction; Reward; Problem solving; Encouragement. Factors: Autonomy-Promoting responses; Anxiety-Promoting responses; Reward responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [770] "Factors: Online Counseling Subjective Norm Scale, Online Counseling Perceived Behavioral Control Scale, Online Counseling Intention Scale, and Online Counseling Behavior Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [771] "The six factors identified were: Inhibitory Cognitions, Relationship Importance, Arousability, Partner Characteristics and Behaviors, Setting (Unusual or Unconcealed), and Dyadic Elements of the Sexual Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [772] "Subscales: Personal continuity--Care provider knows me; Personal continuity--Care provider shows commitment; and Team/cross-boundary continuity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [773] "Factors: Parental hostility; Sibling hostility; Domestic hostility; Peer hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [774] "Factors: Rejection; Minimization; Self-blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [775] "Subscales: Physical and Social Pleasure; Relaxation and Tension Reduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [776] "Subscales: Avoidance; Approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [777] "Factors: Triggers, Severity, Psychological distress, Functional impairment, Insight, Reassurance, and Coping strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [778] "Subscales: New Experiences Seeking and Physical Sensations Attraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [779] "Factors: Escape; Self-punishment; Antidissociation; Interpersonal influence; Stigma; Dependence; Problematic; Antisuicide; Enjoyable; Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [780] "Subscales: Work itself, Supervision, Coworkers, Pay, and Promotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [781] "Factors: General AUD factor; Residual Factor 1 (Compulsive use); Residual Factor 2 (Physiological dependence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [782] "Factors: Triggers; Severity; Psychological distress; Coping strategies; Functioning impairments; Insight; Reassurance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [783] "Factors: Interference and Avoidance; Other Body Dysmorphic Disorder Symptoms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [784] "Intensity Scale—Factor 1: Behavioral & Emotional Problems and Intensity Scale—Factor 2: Child Competencies. Parental Self-Efficacy Scale—Factor 1: Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [785] "Factors: Realistic, Investigative, Artistic, Social, Enterprising, and Conventional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [786] "Subscales: Active Function; Passive Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [787] "Subscales: Daily decision-making; Political attitudes and decision-making; Precautionary measures taken to reduce the threat; The relative threat of terrorism in regard to other threats or fears to the American public; and Feelings of uncertainty due to a potential attack."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [788] "Factors: Emotional deprivation; Abandonment; Mistrust/Abuse; Social isolation; Defectiveness/Shame; Social undesirability; Failure to achieve; Dependence/Incompetence; Vulnerability; Enmeshment; Subjugation; Self-sacrifice; Emotional inhibition; Unrelenting standards; Entitlement; Insufficient self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [789] "Subcomponents: Self-categorization and labeling; Sharing organizational goals and values; Sense of attachment, belonging, and membership of the organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [790] "Components: For the P (Positive aspects) section: Emotional well-being, individual competence, Social competence, and Physical well-being. For the N (Negative aspects) section: Individual suffering, Social suffering, Physical suffering, and Violence/criminality. For the T (Treatment readiness) section: Treatment readiness, Readiness to change, and Readiness to act."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [791] "The IPE has four factors: Internal Harmonious Passion (HP), External HP, Internal Obsessive Passion (OP), and External OP."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [792] "Factor 1: White Privilege Awareness; Factor 2: Heterosexism Awareness; Factor 3: Christian Privilege Awareness; and Factor 5: Sexism Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [793] "Factor 1: Parental Support Toward Music Training; Factor 2: Parental Expectations; Factor 3: Home Music Environment; Factor 4: Music Program Support; Factor 5: Attitude Toward Music; Factor 6: Family Music Background; and Factor 7: Family Music Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [794] "Factors: (1) Fine motor skills, (2) locomotor skills, and (3) ball skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [795] "Subscales: Physical; Psychosocial; and Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [796] "Subscales: Five subscales are common to both scales for Mothers and Fathers (i.e., Degradation and Rejection, Competitiveness and Status Seeking, Emotional Inhibition and Deprivation, Overprotection and Overindulgence, and Punitiveness). An additional scale emerged for Mothers (i.e., Controlling)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [797] "Factor 1: Social/practical; Factor 2: Illness/treatments; and Factor 3: Role/relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [798] "Factors: Orientation towards issues, Orientation towards facts, and Orientation towards evaluations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [799] "Factors: Leadership; Logical Thinking; Composure; Creativity; Fearlessness; Money Smart; Focus, Extroversion; Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [800] "Factors: Identity; Self-direction; Empathy; Intimacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [801] "Domains: emotional impact; usual and social activities; coping with control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [802] "Scales: These include three symptom (pain, exudate, odour), plus an itchiness item; four physical functioning (sleep, movement and mobility, daily activities, vitality); two psychological well-being (emotional well-being, self-consciousness and appearance); and one social participation scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [803] "Factors: Achievement; Relationship; Religion; Self-transcendence; Self-acceptance; Intimacy; Fair Treatment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [804] "Factors: Survival need satisfaction; Social contribution need satisfaction; Self-determination theory autonomy needs; Self-determination theory competence needs; and Self-determination theory relatedness needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [805] "Factors: Perceived Ability; Enjoyment factor; General factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [806] "Factors: Physical; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [807] "Factors: Creative imaginativeness; social imaginativeness; practical imaginativeness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [808] "Factor 1: Impulse control and Factor 2: Compliance/Executive control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [809] "Factor 1: Increased Preparation and Control (with e-mail); Factor 2: Enhanced Meaning and Emotion (with face-to-face); and Factor 3: Reduced Anxiety and Inhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [810] "Factors: Multi-item scales (Symptom experience; Body image; Sexual/vaginal functioning); Single-item scales (Lymphoedema; Peripheral neuropathy; Menopausal symptoms; Sexual activity; Sexual worry (Sexual enjoyment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [811] "Subscales: Confidence, complacency, constraints, calculation, and collective responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [812] "Factors: Severe Pain, Minor Pain, and Medical Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [813] "Domains: Identity; Self-direction; Empathy; Intimacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [814] "Factors: Stranger directed aggression; Dog-directed aggression/fear; Owner-directed aggression; Excitability; Stranger-directed fear; Separation-related behavior; Non-social fear; Dog rivalry/familiar dog aggression; Chasing; Trainability; Attachment/attention-seeking behavior; Energy level; and Touch sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [815] "Variables: projected criminal behavior; commitment to monetary success goals; weak commitment to institutionalized means for pursuing monetary success goals; commitment to non-monetary success goals; perceived risk of punishment; financial dissatisfaction; limited access to legitimate opportunities; and lack of consensus on normative means"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [816] "Subscales: Dissatisfaction with Success and Increase in Standards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [817] "Subscales: Managing the Psychosocial Aspects of Diabetes; Assessing Dissatisfaction and Readiness to Change; and Setting and Achieving Diabetes Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [818] "Factor 1: General Task and Team Knowledge; Factor 2: General Task and Communication Skills; Factor 3: Attitude Toward Teammates and Task; Factor 4: Team Dynamics and Interactions; and Factor 5: Team Resources and Working Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [819] "Factor: Fear; Avoidance; Attention; and Reassurance seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [820] "Subscales: Identity; Traditions; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [821] "Factor 1: Depression; Factor 2: Anger; Factor 3: Muscle Tension; Factor 4: Cardiopulmonary Arousal; Factor 5: Sympathetic Arousal; Factor 6: Neurological/GI; Factor 7: Cognitive Disorganization; and Factor 8: Upper Respiratory Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [822] "Subscales: Educational Play; Object Exploration; Social Games and Routines"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [823] "Motives structured a priori in the following five higher motive-categories: Wealth gain; social influence; identity/traits; emotional attachment; sustainability consciousness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [824] "Factors: Perceived Autonomy; Perceived Competence. Subscales: In-Game Autonomy; In-In-Game Competence; Presence; Intuitive Controls; Preference for Future Play; Game Enjoyment; ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [825] "Subscales: (1) Relationship Control and (2) Decision-making dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [826] "Factors: Locus of control; Time perspective; Planning; Information; Self-concept; Exploration; Key figures; and Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [827] "Subscales: (1) Uncertainty and (2) Certainty about mental states."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [828] "Factor 1: negative thoughts, feelings, and physical symptoms; Factor 2: negative self-efficacy/insolvability; Factor 3: prevention; Factor 4: annulation; Factor 5: ignoring the problem; Factor 6: expectation/diversion; Factor 7: mulling; Factor 8: procrastination/rethink; Factor 19: stopping/subordination; Factor 10: external pressure; and Factor 11: asking for help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [829] "Factors: Depression; Anxiety; Self-harm/suicide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [830] "Factors: Disgust Propension; Disgust Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [831] "Factors: Elemental forces and technological strain; Incidents and accidents; Reporting and assessment; Pressure and interruption; Team shortcomings and cultural differences; Interaction obstacles; Own individual shortcomings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [832] "Factors: Autonomy satisfaction; Autonomy frustration; Competence satisfaction; Competence frustration; Relatedness satisfaction; Related frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [833] "Scales: Questions; Evidence; Basic science processes; Integrated science processes; Analysis & Explain; Connect; and Communicate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [834] "Factors: Completing tasks; Avoiding distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [835] "Factors: Excessive certainty; Concrete thinking; Good mentalization; Teleological thought; Intrusive pseudomentalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [836] "Factor 1: Intention to innovative activities; Factor 2: Subjective norm; Factor 3: Perceived behavioral control; Factor 4: Attitude; Factor 5: Growth need strength; and Factor 6: Perceived benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [837] "Factors: Service behavior; Physical contact; Confirmatory words; Quality time; Buying presents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [838] "Subscales: Administrative process; Teachers and teamwork; School facilities; Diagnosis and education programmes; and Parents’ perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [839] "Factor 1: Pathological use and Factor 2: Problem use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [840] "Factors: Horizontal Individualism; Vertical Individualism; Horizontal Collectivism; Vertical Collectivism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [841] "Subscales: 1) Physical Activity, 2) Nutrition/Weight Management, and 3) Organizational Characteristics and Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [842] "Factors: Teaching Readiness; Teaching Excellence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [843] "Factors: Automatic informational processing and Controlled informational processing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [844] "Factors: Numerical data; symbolic data; spatial data; STEM-related ideas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [845] "Factors/Subscales: External Driving Environment; Internal Driving Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [846] "The ISRE has three factors—Factor 1: Information Retrieval & Organization, Factor 2: Strategy Regulation & Schedule Monitoring, and Factor 3: Time Management Efficiency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [847] "The IKME has four factor-based subscales: Knowledge Acquisition, Knowledge Application, Knowledge Sharing, and Knowledge Creation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [848] "Factors: Process/Competence; Interests/Values; and Complexity/ Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [849] "Factors: Perception of health professionals; Nursing/midwifery care in labor (in caesarean version: preparation for caesarean); Comforting; Information and involvement in decision making; Meeting baby; Postpartum care; Hospital room; Hospital facilities; Respect for privacy; and Meeting expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [850] "Factors: Autonomy support; Competence support; Relatedness support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [851] "The ERS-ACA has three factor-based subscales: Avoidance Strategies, Approach Strategies, and Self-Development Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [852] "The questionnaire includes four scales formed by summing the items in the corresponding portion of the instrument: Confidence, Driving avoidance, Perceived barriers to restriction of driving, and Regulatory self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [853] "Subscales: Test anxiety (AAI-TEST, 10 items); Math anxiety (AAI-MATH, 10 items); Science anxiety (AAI-SCI, 10 items); Trait anxiety (AAI-TRAIT, 10 items); Writing anxiety (AAI-WRI, 10 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [854] "Subscales: Fear of Abandonment; Instability of Interpersonal Relationship, Identity Disturbance; Impulsivity; Suicidal/Self-injurious Behaviors; Affective Instability; Feelings of Emptiness; Anger and Transient Paranoid/Dissociative Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [855] "Factors: Acceptance for Sexual Freedom; Acceptance for Sexual Shyness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [856] "Factors: Social Awareness; Social Isolation; Self-Control; Social Anxiety; Establishing Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [857] "Factors: Anger; Happiness/Joy; Surprise; Disgust; Sadness; Fear; Pride; Guilt; Shame; Depression; Anxiety; Jealousy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [858] "Factors: Labile laughter and Labile tearfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [859] "Factors: Intrusions; Avoidance; Negative Affect; Anhedonia; Externalizing; Anxious Arousal; Dysphoric Arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [860] "Dimensions: Challenges hindering SP-PQL; Personal and professional strategies to support SP-PQL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [861] "Survey constructs: awareness of consequences; ascription of responsibility; personal norm; attitude; subjective norm; perceived behavioral control; intention to choose an organic menu item; and intention to visit a restaurant featuring organic menu items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [862] "Scales: ADHD Total (ASIS Inattention subscale and ASIS Hyperactivity/Impulsivity subscale); and ASIS Infrequency (INF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [863] "Factors: ADL (activities of daily living); Mastery; Well-being; Volition; Determination; Loneliness; Dressing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [864] "Factors: Assessment and care planning; Teaching of patients and families; Communication and care coordination; Integration and supervision of staff; Quality of care and patient safety; and Knowledge updating and utilization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [865] "Factors: (1) Peers, (2) Patients, (3) Managers, (4) Hospital, and (5) Physicians."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [866] "Subscales: Drunk Driving; Risky Driving; Negative Cognitive/Emotional Driving; Aggressive Driving"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [867] "Subscales: Task subscale and Ego subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [868] "Factors: Cognitive; Emotional; Social; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [869] "Subscales: Communicating basic needs (CBN); making routine requests (MRR); communicating new information (CNI); and attention/other communication skills (AO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [870] "Factors: Identity concerns; Black/white thinking; Homophobic beliefs; Beliefs about feelings during relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [871] "Factors: Closeness; Conflict; Dependence; Rivalry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [872] "Factors: Passion; Effort; Ideation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [873] "Factors: Health orientation; Weight; Exceeding personal goals and Competition; Recognition; Affiliation; Psychological goal; and Meaning of life and Self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [874] "Factor 1: Cohesiveness; Factor 2: Implementation & Preparedness; and Factor 3: Counterproductive Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [875] "Factors: Emotional-informational support; tangible support; affectionate support; and positive social interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [876] "Microaggression Factors: Dismissal; mistrust; sexualization; social exclusion; and denial of complexity. Microaffirmation Factors: Acceptance; social support; recognition of bisexuality and biphobia; and emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [877] "Factors: Instability stereotypes, Sexual irresponsibility stereotypes, and General hostility dimensions of binegative experiences for both binegative experiences from heterosexual and LG individuals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [878] "Factors: Speed; Extension; Value; Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [879] "Factors: Appearance, Competence, Importance of physical activity, and Encouragement from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [880] "Factors: Depressive symptoms, Irritability/aggression, Psychotic symptoms, Behavioral dysregulations, Sleep disturbance, Inertia, and Appetite."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [881] "Subscales: Emotion Regulation; Information Gain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [882] "Factors: Perceived control, Pleasantness, Distress, and Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [883] "Factor 1: Weakness; Factor 2: Invasion; Factor 3: Emotion; Factor 4: Serious Disease; Factor 5: Digestion; Factor 6: Supernatural Power; and Factor 7: Social Demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [884] "Domains: feeling negative but displaying positive emotion; feeling positive but displaying negative emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [885] "Subscales: Relationship to the Organization (RO); Organization as Mediator (OM); Influence of the Organization (IO); Bond to the Community (BC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [886] "Factors: Music empathizing; Music systemizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [887] "Factor 1: Parent Outcome Expectations and Factor 2: Parent Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [888] "Factors: (1) Fear of Negative Evaluation (FNE), (2) Social Avoidance and Distress in New Situations (SAD-New), and (3) Social Avoidance and Distress-General (SAD-General)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [889] "Factors: Perceived stigma; Barriers to care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [890] "Factors: Arousal/Power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [891] "Higher-Order Factors: Social Interaction; Attention to Detail. Lower-Order Factors: Social Skill; Communication; Attention Switching; Imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [892] "Factors: Blame and Judgment; Interpersonal Distancing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [893] "Factors: Openness to Men; Openness to Women."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [894] "Factors: Female-Female Competition Stress; Concern with Physical Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [895] "Factors: Personal responsibility; Social responsibility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [896] "Sections: Intimate partner violence risk factors; Psychosocial adjustment risk factors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [897] "The scale is unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [898] "Factor: Experiential avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [899] "Persistence despite difficulty; Persistence despite fear; Inappropriate persistence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [900] "Subscales: Suicidal ideation and Suicidal behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [901] "Subscales: Perceived Benefit; Perceived Privacy Risk; Willingness to Provide Privacy Information; Information Sensitivity; Trust; Number of IoT Services; Perceived Critical Mass; Perceived Compatibility; and Perceived Complementarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [902] "Individual characteristics; Technology characteristics; Fit; Perceived usefulness; Perceived ease of use; Attitude; Intention to use; Actual use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [903] "Factors: For the Sexual image-based abuse myth acceptance scale: minimize/excuse; blame. For Online dating behaviors: online dating behaviors. For sexual self-image behaviors: sexual self-image behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [904] "Factors: Parental encouragement; Parental worry; Parental monitoring; Parental permission."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [905] "Factor 1: Brand experience; Factor 2: Self-congruity; Factor 3: Brand love; Factor 4: Brand loyalty; and Factor 5: Word-of-mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [906] "Constructs: Ex-post transaction cost; Relationship commitment; Trust; Communication; Contract completeness; Symmetric dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [907] "Contract details; contract adjustments; relationship continuity; buyer dependence on supplier; supplier dependence on buyer; product importance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [908] "Factor 1: Perceived Usefulness and Factor 2: Perceived Ease of Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [909] "Enacted (social) stigma; Internalized (self) stigma; mistrust of healthcare providers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [910] "Factors: Conduct Reconstruction; Minimization of Blame; and Distortion of the Action Agent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [911] "Factors: Personal autonomy; Domestic autonomy; Extra-domestic autonomy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [912] "Factors: Physical Aspects-Completing Work; Psychological Aspects-Avoiding Distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [913] "Factors: Goal-Setting for Physical Activity, Goal-Setting for Healthy Food Choices, Decision-Making for Physical Activity, and Decision-Making for Healthy Food Choices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [914] "Subscales: Physical; Psychological; Independence; Learning & Growth; Material; Environmental; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [915] "Re-experiencing; Avoidance; Numbing/Dysphoria; Hyperarousal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [916] "Factors: Safety behaviors of behavioral orientation, Safety behaviors of cognitive orientation, and Catastrophizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [917] "Subscales: Autonomy Satisfaction; Autonomy Frustration; Relatedness Satisfaction; Relatedness Frustration; Competence Satisfaction; Competence Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [918] "Factors: Psychological (Life meaning; self-esteem; psychological coping); Achievement (Personal goal achievement; Competition); Social (Recognition/Approval; Affiliation); Physical (Health orientation; Weight concern)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [919] "Subscales: Bond, Tasks, and Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [920] "Factors (single-factor solution): Positive Orientation. Factors (three-factor solution): Self-Esteem; Life Satisfaction; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [921] "Factors: Fatherhood and Family Not Prioritized; Reject Marital Negotiation; Recouple After Widowerhood; Maintain Sex and Vitality; Retain Patriarchal Authority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [922] "Dimensions: Assertiveness; independence; instrumental competence; leadership competence; concern for others; sociability; and emotional sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [923] "Subscales: Spiritual Endurance; Spiritual Enterprise; and Redemptive Purpose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [924] "Subtests: Real objects; letters; numbers; pictures; words; colors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [925] "Factors: intrusion; avoidance; failure to adapt. ADNM Subtypes: intrusion/rumination; avoidance; failure to adapt; depressed mood; anxiety; impulsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [926] "Decision-making components: Understanding; Appreciation; Reasoning; Communicating a Choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [927] "Factors: General Factor; Negative Effects of Pets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [928] "Domains: Comprehensiveness; coordination function; personalized care; family/community orientation. One composite domain is included: First Contact (FC). For the First Contact composite domain there are five subscales: FC utilization; facility accessibility; cost appropriateness; demographic accessibility; basic health care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [929] "Factors: Agreement on care plan; Understanding care plan; Medication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [930] "Factors: Motivators to Practice a Healthy Lifestyle and Barriers to the Practice of a Healthy Lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [931] "Factor 1: Parental Preoccupation With Adolescent Distress; Factor 2: Parental Distress About Adolescent Separation; Factor 3: Insecurity About Sharing of Caregiving; and Factor 4: Exclusivity of Parental Caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [932] "Factors: Positive reinforcement; Negative reinforcement; Loss of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [933] "Factor 1: Information and Relationship Needs; Factor 2: Emotional Needs; Factor 3: Personal Needs; Factor 4: Work and Finance; Factor 5: Health Care Access and Continuity of Care; and Factor 6: Worries About Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [934] "Subscales: Chronically and significantly disturbed sleep; Failure to recover between work shifts; Chronic maladaptive fatigue; Maladaptive alcohol consumption; PTSD symptomology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [935] "Domains: Well-Being; Problems/Symptoms; Functioning; Risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [936] "Parental Behavior Dimensions: Threatening; Frightened; Dissociative; Deferential/Sexualized; Disoriented; Non-responsive; Physical distance; Lack of interaction; Intrusiveness; Aggressiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [937] "Existing subscales: Personal standards; Concern over mistakes; Perceived parental pressure; Perceived coach pressure. New subscales: Doubts about actions; Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [938] "Factors: Cognitive specific (CS); Motivational general (MG); Motivational specific (MS); MG-Arousal (MG-A); MG-Mastery (MG-M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [939] "Factors: Uncontrolled eating; Cognitive restraint; Emotional eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [940] "Factors: During-cycling skills; Before/after-cycling skills; Transitional-cycling skills"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [941] "Factor 1: Patience and tolerance; Factor 2: Pleasure in interaction; and Factor 3: Affection and pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [942] "Subscales: Frequency; Severity; and Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [943] "Factors: Considerateness; Task Orientation; Extraversion; Verbal Facility; Response to Unfamiliar."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [944] "Factors: Medical staff, Nurses’ staff, Midwives staff, Other staff, Staff identification, Admission, Room arrangement, Food, and Waiting time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [945] "Subscales: Tolerance; Fatalism; Communication; Psychological or Cognitive Effect; Immune System; Monitor; Side Effects and Distracting MD"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [946] "Factors: Perceived parental pressure; personal standards; concern over mistakes; and perceived coach pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [947] "Subscales: Parenting, Support, and Child development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [948] "Factors: Health system and information; Psychological; Physical and daily living; Patient care and support; Sexuality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [949] "Scales: Direct rupture markers, Indirect rupture markers, Collaborative processes, Positive interventions, and Negative interventions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [950] "Factors: Joint participation in the cure/care decision making process, Sharing of patient information, and Cooperativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [951] "Factors: Controllability/internality; Stability/globality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [952] "Factors: Weight-Loss Social Norms; Physical Activity Social Norms; Eating Social Norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [953] "Factors: Disparagement; Hostility; Indifference; Intimidation; Imposition of behavior patterns; Blaming; and Apparent kindness. Sub-factors: Ridicule; Disqualification; Trivialization; Opposition; Disdain; Reproaches; Insults; Threats; No empathy or support; Monopolization; Judging, criticizing, correcting; Threatening postures & gestures; Destructive behavior; Social isolation; Orders; Deviations; Abusive insistence; Invasion of privacy; Sabotage; Accusations; Gaslighting; Negation/denial; and Manipulation of reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [954] "Factors: Modification; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [955] "Factors (first-order): Network location; Collective assets–Peer norms; Collective assets–Sense of belonging; Access to resources. Factors (second-order): Youth social capital; Network structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [956] "Domains: Physical health; Psychological well-being; Social relationships; Satisfaction with the environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [957] "Factors (first-order): Ambience; Navigation; Seating Comfort; Interior Décor. Factors (second-order): Casino Servicescape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [958] "Factors (first-order): Physical Environment (PE); Food Quality (FQ); Customer Orientation (CO); Communication (CU); Relationship Benefits (RB); Price Fairness (PF); Trust (TU); Commitment (C); Satisfaction (SA); Customer Loyalty (CL). Factors (second-order to TU, C, and SA): Relationship Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [959] "CFA verified five factors: Workplace sexual harassment, Depression, Organizational deviance, Interpersonal deviance, and Family Undermining."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [960] "Factors (first-order factors loading on one second-order HREPM factor): Identification of the reputation landscape (IRL); Assessment of changes in ratings and rankings (ARR); Determination of publication reach (DPR); Comparison with industry competitors (CIC); Review and comparison of ranking methodologies (RRM); Increasing reputational scores (IRS). Factors (first-order perceived benefits): Perceived financial benefits (PFB); Perceived customer relationship benefits (PCRB); Perceived customer-based brand benefits (PCBB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [961] "Factors: Draws and contests; Economic incentives; Perceived support; Customers’ suggestions; Word-of-Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [962] "Perceived ethical leadership; Ethical values Person-organization fit; Customer orientation; Commitment to service quality; service sabotage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [963] "Upbeat/elation; Serenity/calm; Warm/tender; Brand self-connection; Brand prominence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [964] "Domains: Memory; Attention/speed; Executive; Language; Visuospatial; Global cognitive decline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [965] "Consumer need for prestige; Trust; Social connection; Customer return on investment; Search convenience; Rider usage behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [966] "Subscales: Cognitive, Emotional, and Behavioral self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [967] "Personalization; Perceived benefits; Perceived risk; Perceived ease of use; Perceived value of disclosure; Trust; Continuance intentions for branded mobile apps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [968] "Perceived similarity; Physical appearance; Suitable behavior; Satisfaction; Return intention; Word-of-Mouth intention; E-Word-of-Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [969] "Organizational culture; Organizational climate; Organizational capacity; Perceived benefits; Menu intentions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [970] "Factors: External affective demands; Internal requirements; and Functionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [971] "Parameters: Overall severity; Roughness; Breathiness; Strain; Loudness; Pitch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [972] "Attributes: Overall Severity; Roughness; Breathiness; Strain; Pitch; Loudness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [973] "Subtests: 1) similarities (abstract reasoning/conceptualization); 2) lexical fluency (mental flexibility [i.e. self-organization, strategy and change]); 3) motor series (programming and motor planning); 4) conflicting instructions (sensitivity to interference); 5) Go-no-go test (inhibitory control and impulsiveness); and 6) prehension behavior (ability to inhibit a response to sensorial stimulation [i.e. environmental autonomy])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [974] "Factors: Power distance; uncertainty avoidance; collectivism; masculinity; long-term orientation; tie-strength; homophily; conformity; normative influence; informational influence; bridging social capital; bonding social capital; trust; opinion seeking; opinion giving; opinion passing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [975] "Perceived usefulness; Perceived ease of use; Innovation resistance; Perceived privacy risk; LBS connectedness (scope, intensity, centrality)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [976] "Factors: Chores; Enjoyment; Educational Benefits; Relaxation; and Reward."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [977] "Factors: Decline in basic taste; Discomfort; Phantogeusia and parageusia; General taste alterations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [978] "Performance criteria: Threshold; Uncertainty region; Confidence interval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [979] "Factors: Perfectionism/Certainty (PC); Importance/Control of Thoughts (ICT); Responsibility/Threat Estimation (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [980] "Unidimensional structure (1 factor): Emotional Dysregulation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [981] "Factors: Psychosis; Neurologic impairment; Amnestic disorders; and Affective disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [982] "Dimensions: promoting socio-emotional needs of students (Initial training); coping with students' socio-emotional deficits (Coping); school/teacher conditions for the promotion of social/emotional skills in students (School/teacher needs); difficulties in integrating social/emotional skills promotion in daily teaching (Learning/teaching process)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [983] "Factors: Personal Burnout; Studies-related Burnout; Colleagues-related Burnout; Teachers-related Burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [984] "Subscales: Functional scale: Physical Functioning (PF); Role Functioning (RF); Emotional Functioning (EF); Cognitive Functioning (CF); Social Functioning (SF); Global Health/Quality of Life (GH/QoL). Symptom scale: Fatigue (FA); Nausea and Vomiting (NV); and Pain (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [985] "Subscales: Health-directed activities, Positive and active engagement in life, Emotional distress, Constructive attitudes and approaches, Self-monitoring and insight, Skill and technique acquisition, Social integration and support, and Health service navigation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [986] "Factors: Theory-ladenness; Creativity; Tentativeness; Durability; Coherence; Science for girls; and Science for boys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [987] "Factors and Variables: Instrumentality; Need for achievement; Interest in foreign languages and cultures; Desire for knowledge and values associated with English; Bad learning experiences; Desire to spend some time abroad; Language learning is a new challenge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [988] "Factors: Intrinsic motivation; Identified regulation; External regulation; and Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [989] "Factors: Job satisfaction; perceptions of management; safety climate; working conditions; stress recognition; and teamwork climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [990] "Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [991] "Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [992] "Composite scales: Satisfaction with Life; Mental Health Continuum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [993] "Subscales: Mathematical computation anxiety; application anxiety; mathematics course anxiety; mathematics teacher anxiety; and mathematics test anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [994] "This instrument includes eight factor-based subscales—Factor 1: Changes in Situational Beliefs; Factor 2: Meaning Making; Factor 3: Changes in Global Beliefs; Factor 4: Long-Term Prevention Strategies; Factor 5: Rational Use of Resources; Factor 6: Acceptance; Factor 7: Heuristic Thinking; and Factor 8: Changes in Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [995] "Subscales: Violations; Errors; Lapses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [996] "Factor 1: Gender Expression; Factor 2: Vigilance; Factor 3: Parenting; Factor 4: Discrimination/Harassment; Factor 5: Vicarious Trauma; Factor 6: Family of Origin; Factor 7: HIV/AIDS; Factor 8: Victimization; and Factor 9: Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [997] "Subscales: Procedural Knowledge Routines (PKR); Executive Operations (EXO); Time Management; Domestic Activities; Trip Planning; Health and Hygiene; Crisis Management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [998] "Factor 1: Taste/Smell; Factor 2: Pleasure/Satisfaction; and Factor 3: Vapor Cloud Production."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [999] "Factors (by domain): Attachment Domain—Detached; Uncommitted; Unempathetic; Uncaring. Behavioral Domain—Lacks Perseverance; Unreliable; Reckless; Restless; Disruptive; Aggressive. Cognitive Domain—Suspicious; Lacks Concentration; Intolerant; Inflexible; Lacks Planfulness. Dominance Domain—Antagonistic; Domineering; Deceitful; Manipulative; Insincere; Garrulous. Emotional Domain--Lacks Anxiety; Lacks Pleasure; Lacks Emotional Depth; Lacks Emotional Stability; Lacks Remorse. Self Domain—Self-Centered; Self-Aggrandizing; Sense of Uniqueness; Sense of Entitlement; Sense of Invulnerability; Self-Justifying; Unstable Self-Concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1000] "Factors: Perceived Respect; Perceived Methodological Rigor; Perceived Intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1001] "Subscales: Cognitive domain, Affection domain, and Psychomotor domain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1002] "Factors: Suicide Ideation and Suicide Attempt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1003] "Factors: Membership; Influence; and Fulfillment of needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1004] "Subscales: Coerciveness; Supportiveness; Chaos; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1005] "Situations Factors: Daily situation characteristics were captured by three scales, i.e., Positive Events, Social Stress, and Workload. Behaviors Factors: Daily behaviors were captured by six scales, i.e., Sociability, Attention Seeking, Externalizing Symptoms, Internalizing Symptoms, Daydreaming, and Perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1006] "Factor 1: Menu; Factor 2: Technology-based service; Factor 3: Experiential; and Factor 4: Promotional innovativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1007] "Factors: Boundary management strategies; Strength of boundary at work (BSW); Strength of boundary at home (BSH); Personal life interference with work (PLIW); Personal life enhancement (PLEW); Work interference with personal life (WIPL); Work enhancement of personal life (WEPL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1008] "Factors: Resourcefulness; Robustness; Self-care; Alignment; Capability; Connectedness; Perseverance; Finding your calling; Managing stress; Maintaining perspective; Staying healthy; Living authentically; Interacting cooperatively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1009] "Subscales: Avoidance; Intrusion; Hyperarousal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1010] "Subscales: Behavior; Impairment; Symptoms; Social Dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1011] "Factors: Cognitive Arousal; Somatic arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1012] "Factor analyses indicated the presence of three factor-based subscales—Factor 1: Negative states prior to performance; Factor 2: Relations with the coach; and Factor 3: Burden of the training regime."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1013] "Factors: Upset; Positive experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1014] "Factors: Social PAS-S; Academic PAS-S. Subscales: Childhood subscale; Early adolescence subscale; Late adolescence subscale; Adulthood subscale; General subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1015] "Factors: Socialness; Mindreading; Patterns; Attention to Details; and Attention Switching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1016] "Factors: Wellbeing and participation; communication and physical health; school wellbeing; social wellbeing; access to services; family health; and feelings about functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1017] "Factors: Fear of Abandonment and of physical illness; Worry of Calamitous Events; and Fear of Being Alone."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1018] "Factor analysis indicated there were three factor-based subscales—Factor 1: Authentic living; Factor 2: Self-alienation; and Factor 3: Accepting external influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1019] "Reproducing knowledge; Rehearsing; Accountability; Improving learning; Problem solving; Critical judgment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1020] "Physical domain; Familial/Milieu domain; Demographic domain; Emotional/Behavioral domain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1021] "Satisfaction with one’s romantic partner; Perception of quality among available alternatives; Size of investments applied in the relationship; Commitment level towards one’s romantic relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1022] "Factor Structure: Mokken analysis resulted in a major one-dimensional scale directly related with burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1023] "Factors: Communication; Teamwork; Situation Awareness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1024] "Factor 1: Cough; Factor 2: Fever; Factor 3: Pain-Weakness; Factor 4: Urine; Factor 5: Fatigue; Factor 6: Feet-Bone Steaming; Factor 7: Kidney-Liver Deficiency; and Factor 8: Skin-Hair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1025] "Factors: Attention; Receptivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1026] "Factors: Physical independence; Clinical burden; Mobility; Schooling; Economic burden; and Social integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1027] "Subscales: Cultural Adaptability; Determination; Tolerance; Self-Presentation; Mission Focus; Engagement; Lie and Social Desirability (control scale)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1028] "Subscales: Public expression of religious beliefs; Neutrality of the state and its institutions; Equality between different religious cults; Protection of religious cults by the state."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1029] "Factors: Negative work-to-family interface; negative family-to- work interface; positive work-to-family interface; positive family-to-work interface."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1030] "Factor structure: One-dimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1031] "Factor analysis indicated the presence of two factors—Factor 1: Independent mobility, and Factor 2: Mobility-enhancing knowledge and skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1032] "Factors: Work-to-life segmentation/integration and Life-to-work segmentation/integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1033] "Subscales: Distress; Intrusiveness; Frequency"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1034] "Factors: Non-physical violence; Physical violence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1035] "Factors: Autonomy; Job Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1036] "Factors: Divine; Meaning; and Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1037] "Factors: Depression; Hostility; Interpersonal sensitivity; Obsession compulsion; Paranoid thinking; Phobic anxiety; Psychoticism; Somatization; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1038] "Factors: Physical health; mental health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1039] "Factors: Attachment anxiety; attachment avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1040] "Factors: Satisfaction with general and sex life; Interpersonal relationships with people in social life; Personal appearance related to weight and interpersonal relationship with people of same gender; Relations with family and friends; Physical exercise and appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1041] "Factors: Interpersonal violence; indirect trauma (with two subgroups); Other stressors (with two subgroups)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1042] "Factors: Intra psychic; Inter psychic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1043] "Subscales: Meaning; Peace; Faith"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1044] "Factor 1: Physical and psychological cravings; Factor 2: Lack of resistance to betel quid; and Factor 3: Maladaptive use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1045] "CFA verified the presence of two factors. Factor 1 included six items generally reflecting helplessness and anger, and Factor 2 included four items tapping self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1046] "Factors: Compassion satisfaction; Secondary traumatic stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1047] "Factors: Attitude of curiosity towards yourself; Raising self-awareness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1048] "Subscales: agoraphobia; panic disorder; generalized anxiety disorder; social anxiety disorder; illness anxiety disorder; obsessive-compulsive disorder; major depressive disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1049] "Domains: Deficiency; Disability; Handicap."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1050] "Factors: Control against obsessions; Resistance and control against compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1051] "Factors: Accepting, nonreactive, and insightful orientation; Present awareness; Describing of experiences; Open, non-avoidant orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1052] "Factors: Appetite and hunger cues; Food responsiveness; Emotional preference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1053] "Dimensions: Job design; Selection; Training; Rewards; Career Development; Employee Participation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1054] "Subscales: Planning; Self-Management; Humor; Search of Social Support; Substance Use; Emotional-Religious-Spiritual Support; Self-Incrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1055] "Factor 1: Sleep quality; Factor 2: Insomnia; Factor 3: Drowsiness; Factor 4: Hours; and Factor 5: Problems somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1056] "Domains: Problems; Functioning; Risk (to self)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1057] "Factors: To build a relationship with a supportive quality; To support/encourage social skills; To participate in joint social activities; To develop the resident’s self-awareness; To talk to the resident about his/her inner world, feelings and perceptions; To develop the residents’ practical skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1058] "Subscales: Organizational/Logistic Difficulties (OD); Poor Motivation of Patients (PM); Clinician Doubt/Lack of Expertise (D/LE); Clinician Fear of Side Effects (SE); Clinician Preference for Exposure to be Self-Help (SH)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1059] "Factors: Enthusiasm; Appreciation; and Social Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1060] "Factors: Group‐focused leadership; Individual‐focused leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1061] "Factors: RLS Symptom; Symptom Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1062] "Factors: Withdrawal; Continuance; Tolerance; Lack of control; Reduction in other activities; Time; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1063] "Subscales: Distress and Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1064] "Subscales: Functional limitation; Pain intensity; and Concern with personal appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1065] "Factors: Identity Questioning; Identity Denial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1066] "Factors: Neuroticism; Extraversion; Openness to Experience; Agreeableness; Conscientiousness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1067] "Factor analysis indicated the presence of three factor-based subscales—Factor 1: Social Concerns; Factor 2: Perfectionism; and Factor 3: Physical Reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1068] "Subscales: Pain Avoidance; Cognitive Fusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1069] "Factors: Neuroticism; Extraversion; Agreeableness; Conscientiousness; Openness. Subscales: Anxiety; Somatic Complaints; Depression; Anger Proneness; Envy; Venturesomeness; Sociability; Positive Temperament; Ascendance; Frankness; Self-Discipline; Order; Deliberation; Achievement Striving; Dutifulness; Empathy; Modesty; Straightforwardness; Trust; Novelty Seeking; Intellectance; Nontraditionalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1070] "EFA and CFA indicated the presence of two factors—Factor 1: Curiosity and Exploration, and Factor 2: Courage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1071] "Factors: Executive Control and Attention; Reasoning and Memory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1072] "Subscales: Negative Cognitions of the Self; Negative Cognitions of the World; Self-Blame"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1073] "Subscales: Fear of Negative Evaluation (FNE); Social Avoidance and Distress–New (SAD-New); Social Avoidance and Distress–General (SAD-General)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1074] "Factor 1: Superstitious Behaviors and Factor 2: Reassurance Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1075] "Factors: Physical; Verbal; Relational; Cyber. Subscales: Victimization; Perpetration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1076] "Factors: Retentive; Expulsive; Gassy; Motoric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1077] "Factors: Ethical leadership; Perceived organizational politics; Moral courage; Internal whistleblowing. Subfactors: General Political Behavior; Go Along to Get Ahead; Pay and Promotion Policies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1078] "Factors: Ethical awareness; Ethical judgment; Perceived moral intensity; Emotions; Internal whistleblowing; Anonymous whistleblowing; External whistleblowing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1079] "Subscales: dysphagia; eating restriction; reflux; odynophagia; pain; discomfort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1080] "Subscales: Impulse Buying; Individualism-Collectivism; Masculinity/Femininity; Power Distance; and Uncertainty Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1081] "Corporate-level attributes; Consumer benefits; Controlled communication; Uncontrolled communication; Consumer satisfaction; Consumer brand loyalty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1082] "Factors: Parental beliefs about education; Parental beliefs about self-efficacy; Parental involvement opportunities; Parental involvement activities; and Parental beliefs about shared reading."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1083] "Factors: Corporate social responsibility performance; Consumer recycling behavior; Environmental impact purchase and use criterion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1084] "Factors: Technology Dependence (TD); Technology Identity (TI); Technology Affection (TA); Technology Social Bonding (TSB); Experiential Satisfaction (ES); Experiential Trust (ET); Experiential Risk (ER); Experiential Sharing Intentions (ESI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1085] "Subscales: M-Reappraisal; Suppression; Proper Voicing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1086] "Factors: Personal Deficiency Related to Winter (PD); Global Summer Positivism (GS); Global Winter Negativity GW); Effects from Lack of Light (ELL); and Lack of Perceived Seasonal or Weather Effect (LPSWE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1087] "Factor 1: Revenge; Factor 2: Retaliation; Factor 3: Emotion-State; Factor 4: Forgiveness; and Factor 5: Perception of Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1088] "Subscales: Patients intention to stop smoking; Advantages and disadvantages of smoking; Awareness that smoking is a problem; The desire to stop smoking; Benefits and inconvenience of quitting smoking; The attitude of the smokers; The personal efficacy and self-confidence of the patient stopping tobacco use; Prediction of success at smoking cessation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1089] "Negative consequences; Difficult to acquire; Not enjoyable; Social disapproval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1090] "Factors: Confidence through caring; supportive learning climate; appreciation of life meaning; control versus flexibility; and professional nurse autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1091] "Factors: Gross motor development; Fine motor coordination and visual motor integration; Emergent numeracy and mathematics; Cognition and executive functioning; Emergent literacy and language."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1092] "Scales: Boldness; Meanness; Disinhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1093] "Subscales: (1) Heterosexual Intimacy, (2) Protective Paternalism, and (3) Complementary Gender Differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1094] "Factors: Differentiating Emotions; Verbal Sharing of Emotions; Not Hiding Emotions; Bodily Awareness; Others’ Emotions; Analyses of Own Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1095] "Six factors: I was angry; I was bullied; I was kicked; I wanted to be mean; I took pleasure out of it; I wanted to be the boss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1096] "Subscales: Underinvolved; Appropriate; and Overinvolved."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1097] "Subscales: Self-Value (SV); Behavioral Respect-Self (BRS); and Behavioral Respect-Others (BRO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1098] "Factors: (1) Collaboration With Parents, (2) Diabetes Care Activities, (3) Diabetes Problem-Solving, (4) Diabetes Communication, and (5) Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1099] "Subscales: lonely-negativity; former partner attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1100] "Factors: Facebook Positivity; Facebook Openness; Facebook Assurances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1101] "Domains: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1102] "Scales: Supernatural Forces; Social/Stress; Lifestyle; Physical Health; Substance Use; Personal Weakness; and Hereditary/ Biological."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1103] "Factor 1: Self-Blame; Factor 2: Self-Shame; and Factor 3: Bad-Parent Self-Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1104] "Factor analysis supported the use of five scales: Physical mistreatment, Psychological mistreatment, Neglect, Economic mistreatment, and Sexual mistreatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1105] "Factor 1: Motivation; Factor 2: Self-Efficacy; Factor 3: Perceived Social Support; and Factor 4: Subjective Norm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1106] "Scales: Alienation; Despair; Hope; Despair-Alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1107] "The French SAI includes four school situational factors and three response system factors. The situational factors are: Anxiety about Academic Failure and Punishment (AAFP); Anxiety about Aggression (AA); Anxiety about Social Evaluation (ASE); and Anxiety about Academic Evaluation (AAE). The response system factors are: Cognitive Anxiety (CA); Behavioural Anxiety (BA); and Physiological Anxiety (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1108] "Factors: (Male version) Erection concerns thoughts; Lack of erotic thoughts; Age- and body-related thoughts; Negative thoughts toward sex; Worries about partner’s evaluation and failure anticipation thoughts. (Female version) Sexual abuse thoughts; Lack of erotic thoughts; Low self-body image thoughts; Failure and disengagement thoughts; Sexual passivity and control; Partner’s lack of affection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1109] "Subscales: Physical pleasure in touching oneself; Physical pleasure in parental touching; Physical pleasure in touching in a partnership; Disgust; Shame"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1110] "Scales: Negative scenarios; Positive scenarios. Factors: Globality; Internality; Stability; Internality/stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1111] "Factors: Affective Commitment; Costing Commitment; Opportunity Commitment; Normative Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1112] "Factor 1: Premarital Cognitions; Factor 2: Premarital Emotions; and Factor 3: Premarital Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1113] "Factors: Safe life with peace; maintaining physical health; painful emotions; psychological tolerance; maintaining physical–psychological potency; families and relatives support; health care system support; moral–financial support; maintaining social relationships; and worry over the label."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1114] "Factors: Positive attitudes to institutional authority; Positive attitudes towards transgression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1115] "Factor 1: Critically read and evaluate qualitative research literature; Factor 2: Critically read and evaluate quantitative research literature; Factor 3: Collective efficacy of the clinical unit; Factor 4: Obtaining science-based knowledge resources; and Factor 5: Understanding and applying theory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1116] "Female version Factors: Sexual Abuse Thoughts; Failure/Disengagement Thoughts; Partner's Lack of Affection; Sexual Passivity and Control; Lack of Erotic Thoughts; Low Self-Body-Image Thoughts. Male version Factors: Failure Anticipation Thoughts; Erection Concern Thoughts; Age and Body Related Thoughts; Negative Thoughts Toward Sex; Lack of Erotic Thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1117] "Latent orthogonal factors: Time/Speed; Accuracy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1118] "Scales: Moral Sensitivity Scale (Second-order factors: Connecting and caring, Responding to diversity, Interpreting situations, Reasoning); Moral Judgment Scale (Second-order factors: Reasoning, Implement decisions, Understanding ethics, Reflecting outcome); Moral Motivation Scale (Second-order factors: Respecting others, Helping and peace, Ethical identity, Act responsibly); Moral Character Scale (Second-order factors: Courage and leadership, Need identification and conflict resolution, Communication, Hard working, Perseverance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1119] "Factors: (Openness to seeking treatment for emotional problems; Value and need in seeking treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1120] "Factor 1: Participating in groups and associations; Factor 2: Consuming cultural events; Factor 3: Carrying out activities requiring expertise or creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1121] "Factors: God-centeredness and Asceticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1122] "Factor 1: Religious orientation and Factor 2: Science acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1123] "Hardiness; Resourcefulness; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1124] "Factors: Fear; Happiness; Anger; Sadness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1125] "Subscales: Time Demands (9 items); Safety (9 items); Passengers (6 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1126] "Subscales: Fear of Rejection or Abandonment (FRA); Desire for Closeness (DC); Preference for Independence (PI)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1127] "Factors: Arranging the caring situation to bring optimal benefit to the client and the family (C/F); Strong will to face difficult situations; Judgment based on the values as a nurse; Judgment based on the standards; Recognition of a discrepancy of intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1128] "Scales: Exploratory excitability; Novelty Seeking; Harm Avoidance; Reward Dependence; Persistence; Self-Directedness; Cooperativeness; and Self-Transcendence. Subscales: Impulsiveness; Extravagance; Disorderliness; Anticipatory worry; Fear of uncertainty; Shyness; Fatigability; Sentimentality; Openness to warm communication; Attachment; Dependence; Eagerness of effort; Work Hardened; Ambitious; Perfectionist; Responsibility; Purposefulness; Resourcefulness; Self-acceptance; Enlightened second nature; Social acceptance; Empathy; Helpfulness; Compassion; Pure-hearted conscience; Self-forgetful; Transpersonal identification; and Spiritual acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1129] "Factors: Psychological Benefits; Physical Benefits; and Relational Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1130] "Factors: Interpersonal deviance, Education deviance, Time deviance, and Collaboration deviance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1131] "Factors: Work functioning; Interpersonal relationships; Cognitive functioning; Autonomy; Finances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1132] "Factor 1: Using Instrumental Social Support; Factor 2: Humor; Factor 3: Focus on and Venting of Emotions; Factor 4: Substance Use; Factor 5: Acceptance; Factor 6: Suppression of Competing Activities; Factor 7: Turning to Religion; Factor 8: Denial; Factor 9: Behavioral Disengagement; Factor 10: Mental Disengagement; Factor 11: Restraint Coping; Factor 12: Positive Reinterpretation; Factor 13: Using Emotional Social Support; and Factor 14: Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1133] "Subscales: Agent; Recipient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1134] "Factor 1: Understanding; Factor 2: Resentful; Factor 3: Insecure; and Factor 4: Enticing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1135] "Factors: Legal antipathy; Legal corruption; Low legal legitimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1136] "Factors: Encounter; Participation; Discharge; Support; and Secure environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1137] "Factors: Labour resources; Communication; Material resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1138] "Dimensions: Openness; Conscientiousness; Extraversion; Agreeableness; Neuroticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1139] "Factors: Depressed mood; Deference; Mother estrangement; and Counseling needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1140] "Factors: Knowledge (Pain assessment knowledge; pain assessment tool knowledge); Confidence (Pain assessment confidence)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1141] "Factor 1: Affective symptoms; Factor 2: Somatic symptoms and school life; Factor 3: Daily habits for menstrual health; Factor 4 Menstrual cycle characteristics, and Factor 5: Attitudes and perceptions on menstruation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1142] "Factor 1: Psychological empowerment; Factor 2: Decision-making empowerment; Factor 3: Social empowerment; and Factor 4: Gender empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1143] "Categories: 1. The teacher communicates learning objectives that focus on historical thinking and reasoning goals; 2. The teacher demonstrates historical thinking or reasoning; 3. The teacher uses historical sources to support historical thinking and reasoning; 4. The teacher makes clear that there are multiple perspectives and interpretations; 5. The teacher provides explicit instructions on historical thinking and reasoning strategies; 6. The teacher engages students in historical thinking and reasoning by individual or group assignments; 7. The teacher engages students in historical thinking and reasoning by a whole-class discussion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1144] "Factors: Individual social responsibility; Tendency of self-display; Subjective norms; Psychological well-being; and Regular sponsorship of African children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1145] "Dimensions: Intrapersonal suffering; Interpersonal suffering; Awareness of suffering; and Spiritual suffering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1146] "Domains of practice: Expert care planning; Integrated care; Interprofessional collaboration; Education; Research and evidence‐based practice; Professional leadership"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1147] "Factors: Behavior Problems; Emotive Limitedness; Affective; Cognitive Structures; and Sleep Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1148] "Subscales: Emotional intimacy (EI); Personal gratification (PG); Reaction to social circumstances (RS); Desire to reproduce (DR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1149] "Factors: Relational resources; Personal resources; Contextual resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1150] "Factors: (1) General self-concept, (2) Leadership, (3) Communication, (4) Knowledge, (5) Staff relationship, and (6) Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1151] "Factors: Recreational; Physical; Social; Skill-based; Educational; Volunteering/employment; Homecare/chores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1152] "Subscales: Fake identity; Ulterior motivation; Service failure; Distrust; Psychological discomfort; Negative electronic word-of-mouth; Repeat purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1153] "Subscales: Attitudes toward single checking; Advantages of single checking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1154] "Factors: Positive attitude; Attitude toward health; Everyday behavior. Subfactors: Hope; Sense of fulfillment; Social support; Care about one’s health; Wakefulness; Eating in moderation; Lack of self-control; Correction of bad habits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1155] "Behavioral components: Component 1 includes the negative emotional responses of the user, component 2 subsumes positive emotional responses, and component 3 contains physical avoidance behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1156] "Subscales: Critical thinking and reasoning, General clinical skills, Basic biomedical science, Communication and teamwork capability, Caring, Ethics, Accountability, and Lifelong learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1157] "Subscales: Fear-Distress; Sadness-Depression; Anger; Disgust; Anxious-Apprehension; Negative Social Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1158] "Factors: A challenging activity that requires skill; Immersion; Clear goals and feedback; Concentration on the task at hand; The paradox of control; Autotelic experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1159] "Subscales: Familiarity; Utility; Motion; Controllability; Toughness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1160] "Factor 1: Negative reinforcement and Factor 2: Desire and intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1161] "Factors: Skills for care; Skills related to the role of mother; Acceptance of the baby; Relational expectations towards the baby; and The affects that the mother develops towards pregnancy, labor, and childbirth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1162] "The measure includes four subscales: \"Excessive self-efficacy for managing stress,\" \"Insensitivity to stress,\" \"Overgeneralization of stress,\" and \"Evasive attitude towards stress.\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1163] "Factors: Insincerity and communicative opacity; Manipulation; Denial and relapse; Mystification and distrust; and Distorted perception of reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1164] "Factors: Perceived Parental Control; Perceived Parental Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1165] "Subscales: Body Areas and Appearance Satisfaction (BAAS); Appearance Orientation (AO); Weight Perception and Concerns (WPC)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1166] "Factors: Resilience; Intention to leave; Work engagement; and Abusive supervision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1167] "Factors: Information Sharing; Empowerment; Outcome Expectation; Self-Disclosure; Similarity; Communication Openness; Attachment to Airbnb; Attachment to Airbnb Peer Hosts; Psychological Ownership; Organizational Citizenship Behavior toward Airbnb; Organizational Citizenship Behavior toward Peer hosts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1168] "Factor 1: Socialization; Factor 2: Relaxation & escape; Factor 3: Travel-related novelty; Factor 4: Sexual desire/excitement seeking; Factor 5: Sex-related learning; Factor 6: Sexual mastery; Factor 7: Social prestige; and Factor 8: Business/pragmatic purpose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1169] "Factors (first-order): Challenge; Feedback; Autonomy; Immersion; Social Interaction; Self-Efficacy; SETA Effectiveness; Psychological Ownership; and Security Compliance Intention. Flow is conceptualized as a second-order construct comprising Challenge, Feedback, Autonomy, Immersion, and Social Interaction dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1170] "Factors: Training; Transfer of training; Perceived organizational support (POS); Job satisfaction; Customer service quality; POS Training (this sixth interaction latent variable was created by combining one Training item and one POS item)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1171] "Subscales: Family Strengths (FS); Family Communication (FC); Family Difficulties (FD)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1172] "Factors: Psychiatric care and Treatment, Personal and Social function, Community and Daily living, and Money management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1173] "Factors: Hostility; Physical aggression; Impulsivity; Anger proneness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1174] "Factors: Family honor; Social honor; Feminine honor; and Masculine honor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1175] "Factors: Human growth; Provided support; Minimizing expected emotional damage; Preparation for negative situations; Facilitation of understanding and care for others; Smoothing human relationships; Prevent meaningless loss; Self-handicapping; Harmony with others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1176] "Factors: Exploratory engagement; Placatory/evasive engagement; Passive resistance; Active resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1177] "Subscales: Dependency-Oriented Psychological Control (DPC) ; Achievement-Oriented Psychological Control (APC)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1178] "Factors: Leisure belief; Increasing positive mood; Improving social relationships; Improving the environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1179] "Factors: Good teaching; Clear goals and standards; Approximate workload; Approximate assessment; and Generic skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1180] "Subscales: Emotional blunting; Lack of initiative; and Lack of interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1181] "Factors: Conqueror, Savior, and heroic Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1182] "Factors: Sensory Experience; Food/drink; Social Interests/hobbies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1183] "Dimensions: Workload; Segmentation culture; Life satisfaction; Time-based work interference with leisure; Strain-based work interference with leisure; Behavioural leisure attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1184] "Factors: Cultivating Emotion Strategies; Understanding Emotion Connotations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1185] "Factors: Participation limitation; Stigma; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1186] "Subscales: Negative; Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1187] "Factors: Desire for success and challenge; Attitude toward entrepreneurship; Attitude toward money; Social norms; Perceived Behavioral Control; Entrepreneurship education; Experiences in Entrepreneurship; Government's supportive policies; Creativity; Entrepreneurial intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1188] "Factors: Technology-Sensing Capability (TSC); Market-Sensing Capability (MSC); Exploratory Innovation (EXI); Exploitative Innovation (EII); Firm Performance (FP)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1189] "Subscales: Innovativeness; proactiveness; risk-taking; dominance; self-efficacy; firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1190] "Factors: Motivation; Communication; Coaching; Facilitation; Changing the mindsets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1191] "Factors: Informativeness; Credibility; Entertainment; Irritation; Incentives; Advertising value; Flow experience; Emotional value; Web design quality; Brand awareness; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1192] "Factors: Premarital sexuality; masturbation; homosexuality; pornography; abortion; and sexual coercion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1193] "Factors: Content and Facilitation; Emotional Support; Structural and Informational Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1194] "Factors: Perceived role stress; Benefit finding; School impact; Social impact; Family impact; Social recognition of role"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1195] "Factors: Health Care Provider Information; Patient Information; Health Care Provider Facilitation; and Patient Participation in Decision-Making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1196] "Five factors: rational use of time (RUT); quality of teaching behavior chain (QTBC), match degree (MD); quality of using resource and technology (QUR&T); rationality of primitive content (RPrC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1197] "Sections: bed; chair; static balance; walking; dynamic balance (without a gait aid)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1198] "Three unidimensional constructs: intellectual competence; physical/manual competence; interpersonal competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1199] "Factors: Feelings; Appearance; Motherhood; Biological sex characteristics; Strength; and Weakness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1200] "Factor 1: Family Support; Factor 2: Confidant-Friend Support; Factor 3: School Support; Factor 4: Adjustment; Factor 5: Sense of Struggle; and Factor 6: Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1201] "Factors: Disqualification and negative attitude; Avoidance of contact; Influence of the custodial parent; Arguments for the rejection; Extension of the rejection to the social network; and Arguments that do not correspond to the child's age."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1202] "Factors: Perceived race-related concerns, preoccupations and emotional distress; Social dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1203] "Factors: Relatives; Neighbors; Friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1204] "Scores were calculated by dichotomizing every answer (correct/incorrect) and were summarized for each domain. The questionnaire has no total score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1205] "Factor 1: Communication barriers; Factor 2: Confidence; Factor 3: Timing of Discussion; Factor 4: Patient-family relationship; and Factor 5: Patient-provider relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1206] "Factors: Presence; Search."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1207] "Factor 1: Work-family conflict; Factor 2: Self-promotion; Factor 3: Ingratiation; Factor 4: Emotional Exhaustion; Factor 5: Intrinsic motivation; and Factor 6: Proactive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1208] "Factors: Apology; Compensation; Voice; Forgiveness-Absence; Forgiveness-Presence; Reconciliation; Repatronage; Negative Word Of Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1209] "Factors: Privacy concern; Perceived level of control; Desire for privacy; Perceived ad benefits; Intrusiveness; Brand ethics; Privacy management; Attitude towards behavioral advertisements; Avoidance of behavioral advertisements; and Brand romance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1210] "Factors: Brand experience (Sensory dimension, Affective dimension, Behavioral dimension, Intellectual dimension); Brand commitment; Harmonious brand passion; Obsessive brand passion; Brand attitude; Customer satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1211] "Subscales: Parental Strategies; Child Outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1212] "Factors: Skill Discretion; Decision Authority; Job Demands; Job Insecurity; Job Readjustment; Family Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1213] "Factors: Trust; Norm of reciprocity; Power distance; High-low context; Social decision-making constraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1214] "Factors: Agreeableness; Extraversion; Conscientiousness; Emotional Stability; Honesty; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1215] "Factors: Sensation search; Risk assumption; Perceived competition; Risk perception; and Competitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1216] "Subscales: Concern Dieting; and Weight Fluctuation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1217] "Factors: Social interaction; School performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1218] "Subscales: Validity; Purpose; Disillusionment; Parents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1219] "Factors: Designing and collecting; Reporting, interpreting, and presenting; Conceptualizing and collaborating; Planning; Funding; Protecting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1220] "Factors: Pessimism; Optimism; General hopelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1221] "Subscales: Acceptance of defects; Emotion regulation; Adaptability; Self-efficacy; External support; Frustration coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1222] "Domains: Affection; Responsiveness; Encouragement; Teaching"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1223] "Factors: In-group bias, Paternal cronyism, and Reciprocal exchange of favor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1224] "Factors: Customer; Employee; Environment; Community; Society; Shareholder; Supplier; Company evaluation; Purchase intention; Customer-company identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1225] "Factors: Positive Feelings; Negative Feelings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1226] "Subscales: Family; Friends; Living environment; School; and Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1227] "Factors: Fear; Lack of Positive Anticipation; Isolation; Riskiness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1228] "Factors: Interest in Science, Interest in Technology, and Interest in Mathematics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1229] "Dimensions: Drive; Regressive Cognition; Perceptual Disinhibition; Sensation; Icarian Imagery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1230] "Subscales: Use of the mobile telephone, Use of video games, Use of television, Use of the Internet, Lying about the use, Relaxing with the use, and Attempts to stop the use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1231] "Subscales: Impulsiveness; Negative Thinking; Thrill Seeking; and Sensitivity to Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1232] "Factors: School/employment dedication, Social isolation, and Life discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1233] "Factors: Attitudes toward peace and Attitudes toward war."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1234] "Factors: Comprehension and Numeracy; Health-related Terms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1235] "Factors: Stability; Vitality. Subscales: Stability; Vitality; Pleasure; Arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1236] "Factors: Opportunity; information; support; resources; formal power; informal power; global empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1237] "Factors: Cognitive (personal investment and personal cost); affective (positive and negative feelings); symbolic (meaning, compensation for parenthood, continuity, and burden); and behavioral (emotional support, contribution to upbringing, and instrumental support)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1238] "Factors: Overwhelmed, Controlled, and Resilient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1239] "Subscales: Developmental/Social; Biomedical; and Behavior Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1240] "Factors: Social Flexibility; Perseveration; Respondent Discomfort; Adaptive Coping; and Atypicality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1241] "Subscales: Satisfaction of Basic Psychological Needs; Non-Satisfaction of Basic Psychological Needs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1242] "Factors: Trust in Competence; Trust in Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1243] "Subscales: Teamwork climate; Safety Climate; Job satisfaction; Stress recognition; Perception of ward management; Perception of hospital management; and Working condition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1244] "Factors: Adjustment method of head VR glasses; Design aspect of VR glasses; Installation of the VR glasses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1245] "Elements: satisfaction with the system; emotions experienced during system use; and system to be evaluated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1246] "Factors: Seeking Distraction; Withdrawal; Actively Approaching; Seeking Social Support; and Ignoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1247] "Factors: Barriers to adherence and Positive beliefs about medication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1248] "Subscales: Social network app overuse (S-scale); Recreational app overuse (R-scale); and Information overload (I-scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1249] "Factors: Religious Integration; Religious and Social Morality; Nonritual Social Religious Activity; and Ritual Attendance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1250] "Factors: Family therapy; Motivational interviewing/Cognitive-behavioral therapy; Drug counseling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1251] "First Order Factors: Autonomy (AUT); Self-initiation (SIN); Self-Direction (SDIR); Pathways (PTH); Empowerment (EMP); Self-Realization (SRE); Control Expectancy (EXP); Volitional Actions (VOL); Agentic Actions (AGEN); Action-Control Beliefs (ACC). Second Order Factors: Autonomy (AUT); Self-initiation (SIN); Self-Direction (SDIR); Pathways (PTH); Empowerment (EMP); Self-Realization (SRE); Expectancy (EXP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1252] "Subscales: Work scheduling and output demands; Physical demands; Mental and social demands; Flexibility demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1253] "Factors: Measuring negative expectancies; Process/outcome expectancies; Expectancies for a positive therapeutic relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1254] "Factors: Deliberate risk taking (DRT) and Precautionary behaviors (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1255] "Factors: Proper Use of Health Care Resources (PUHCR); Diet (D); Anger and Stress (A&S); Substance Use (SU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1256] "Subscales: Emotional blunting, Lack of initiative, and Lack of interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1257] "Factors: Identity; Consequences; Control; Timeline; Illness coherence; Treatment burden; Prioritization; Causal relationship; Activity restriction; Emotional representations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1258] "Subscales: With self-regulation; Without self-regulation. Volitional action construct (autonomy and self-initiation); facet-representative parcels for the agentic action construct (self-regulation, self-direction, and pathways thinking); and facet-representative parcels for the action-control beliefs and attitudes construct (self-realization, psychological empowerment, and control expectancies and agency and causality beliefs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1259] "Factors: Theoretical knowledge; Practical knowledge; Critical thinking; Self-awareness; and Citizenship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1260] "Subscales: Impulsiveness; Venturesomeness; Empathy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1261] "Factors: Positive/Likelihood of Showing Expression; Negative Emotions/Frequency of Experience; Negative Emotions/Likelihood of Showing Expression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1262] "Factors: Program evaluation skill level; Interest in program evaluation; Program Evaluation Training Importance; Confidence in Conducting Program Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1263] "Factors: Distress; Well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1264] "Subscales: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1265] "Factors: BDA Planning; BDA Investment Decision-Making; BDA Coordination; BDA Control; SC Preparedness; SC Alertness; SC Agility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1266] "Factors: Interactivity; Autonomy; Visual Aesthetics; Self-Expression; Satisfaction; Pleasure; and Product Attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1267] "Factors: Firm generated content; Brand loyalty; Brand awareness; Electronic word of mouth; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1268] "Factors: Perceived efficacy; Personal/professional change resistance; Certainty on results; Recognition of theoretical and procedural training; Disposition to actualization (continuing education)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1269] "Factor: Memory Ability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1270] "Factors: Self-confidence; Attitude and mental preparation; Stress and anxiety control; Concentration; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1271] "Factors: Disorganization; Linguistic control; Emptiness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1272] "Factors: Rumination; Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1273] "Factors: Confidence in teaching; Motivation for teaching; Preparedness to teach; Preparedness to lead initiatives; Expected influence on participants."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1274] "Subscales: Depressive Symptoms; Inertia; Vegetative Symptoms; Irritability/Aggression; Behavioral Dysregulation; Psychotic Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1275] "Factors: Communication skills; Creativity; Problem solving; Teamwork; Planning ability; Cross-cultural capability; Adaptability; Ability to integrate resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1276] "Factor 1: Relationship to the Organization; Factor 2: Organization as Mediator; and Factor 3: Bond to the Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1277] "Factors: Blatant group discrimination; Subtle group discrimination; Blatant individual discrimination; Subtle individual discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1278] "Factors: Teacher beliefs about preschoolers and math; confidence in helping preschoolers learn math; and teachers’ confidence in their personal math abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1279] "Factors: nurturance; discipline; play; routine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1280] "Subscales: Bodily shame; Cognitive shame; Existential shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1281] "Factors: Satisfaction of health and safety needs; satisfaction of economic and family needs; satisfaction of social needs; satisfaction of esteem needs; satisfaction of actualization needs; satisfaction of knowledge needs; and satisfaction of aesthetics needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1282] "Factors: Persistent walking; Spatial disorientation; Eloping behavior; Shadowing; and Routinized walking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1283] "Factors: Psychological/Emotional Conflict; Time Management; Neglect Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1284] "Subscales: Stereotype awareness (\"Aware\"); Stereotype agreement (\"Agree\"); Self-esteem decrement (\"Harm\")."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1285] "Factors: Meaning; Enthusiasm; Decision making; Autonomy; Trust in competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1286] "Factors: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1287] "Subscales: Basic Mobility; Daily Activities; Applied Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1288] "Factors: External regulation; Introjected regulation; Identified regulation; Integrated regulation; Intrinsic regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1289] "Pro‐environmental behavior; Environmentally friendly behavior; Ecotourism guideline behavior; Site‐specific ecological behavior; Socioculturally beneficial behavior; Economically beneficial behavior; and Learning behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1290] "Factors: Lack of punctuality; Lack of planning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1291] "Factors: Personal self-esteem; Team-based self-esteem; Personal integrity; Self-competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1292] "Factors: Disrupted schedule; Financial problems; Lack of family support; Health problems; and Caregiver’s self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1293] "Factors: Self-Promotion; Abusive Leadership; Unpredictability; Authoritarianism. Subscales: Abusive Leadership; Authoritarian Leadership; Narcissism; Self-promotion; Unpredictability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1294] "Subscales (for both Perpetration and Victimization): Negotiation; Psychological aggression; Physical aggression; Sexual coercion; Injury."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1295] "Subscales: Knowledge; Skills; Encounters/Situations; Awareness; Cultural Desire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1296] "Factors: Personal spiritual practices; Spiritual practices; Physical spiritual practices; and Interpersonal spiritual practices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1297] "Subscales: Emotional reluctance; Poor awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1298] "Subscales: Digit sequencing; Symbol coding; Tower of London; Token motor task; Verbal fluency; and Verbal memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1299] "Factors: Creative potential; Practiced creativity; Perceived organizational support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1300] "One-factor solution (psychological flexibility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1301] "Factor: Global social physique anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1302] "Factors: Dynamism; Meddlesomeness; Mediating; Arrogance; and Approachability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1303] "Factors: Empathy; Active Support; Compassionate; Antagonism; Egoism; and Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1304] "Factors: Emotional Manipulation; Defection Threat; Violence Threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1305] "Factors: Student ratio; Abilities/skills; Power/being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1306] "Factors: Athletes identity; Body and sport; Training for weight regulation; Body and parents; Socially prescribed perfectionism and athletic performance; and Distrust of the team."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1307] "Dimensions: Apprehension of Knowledge; Utilization of Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1308] "Factors: Pleasure and relaxation; Tolerance; Lack of control; Withdrawal and craving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1309] "Factors: Protectiveness; Supervision beliefs; Risk tolerance; Fate beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1310] "Domains/Sub-Domains: Lesson Design and Implementation; Content (Propositional Knowledge; Procedural Knowledge); Classroom Culture (Communicative Interactions; Student–Teacher Relationships)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1311] "Domains: Child; Maladaptive Coping; Maladaptive Parent; Healthy Adult. Subscales: Vulnerable Child; Angry Child; Enraged Child; Impulsive Child; Undisciplined Child; Happy Child; Compliant Surrender; Detached Protector; Detached Self-Soother Child; Self-aggrandizer Child; Bully and Attack Mode Child; Punishing Parent; Demanding Parent; Healthy Adult"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1312] "Factors: Positive set of thoughts and results (\"Positive set\"); Negative set of thoughts and results (\"Negative set\")."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1313] "Factors: Theoretical knowledge; Practical knowledge; Critical thinking; Self-awareness; and Citizenship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1314] "Factors: Total efficacy; Severity; Susceptibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1315] "Factors: Identity; Self-direction; Empathy; Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1316] "Factors: Job Content; Work Environment; Work–Home Interference; Relationships; Lack of Stability; Development Possibilities; Home–Work Interference; Tools."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1317] "Factors: Emotional evaluation of Status; Situation; Self; Power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1318] "Factors: Communication; Provision of information; Clinical visits and accessibility; General courtesy of staff; Staff liaison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1319] "Model Constructs: Performance expectancy; Effort expectancy; Social influence; Facilitating conditions; Sense of trust; Experience expectation; Intention to donate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1320] "Normative Factors: Friend Identity (NR); School Identity (NR). Informational Factors: Friend Identity (IF); School Identity (IF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1321] "Subscales: Sexual Inexperience Distress; Masturbation/Pornography Remorse; Libido Distain; Body Dissatisfaction; Dystonic Sexual-Actualization; and Sexual Performance Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1322] "Factors: Physical and psychological changes; Coping in daily life; Health of the mother and baby; Maternal role; Family support; Healthcare services; Social atmosphere; and Reconciliation of work life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1323] "Subscales: Positive attitudes toward care for the dying person; Perception of patient- and family-centered care. The authors note that the subscales need to be explored in other Swedish samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1324] "Factors: Communication skills; Communication etiquette."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1325] "Factors: Deep approach; Superficial approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1326] "Subscales: Faking Orgasm Scale—Sexual Intercourse Subscale; Faking Orgasm Scale—Oral Sex Subscale. Factors: Altruistic Deceit; Fear and Insecurity; Elevated Arousal; Sexual Adjournment; Insecure Avoidance; Fear of Dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1327] "Factors: Feeling And Thinking Support; Learning Process Support; Evaluation Process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1328] "Subscales: Experiential knowledge provided/received; Emotional support received; Humor exchanged; Unwanted behavior received; Exchanges outside meetings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1329] "Subscale: Bonding capital; Bridging capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1330] "Factors: Enacted stigma; disclosure concerns; negative self-image; and concern with public attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1331] "Subscales: Stigma; Emotional wellbeing; Pain; Activities of daily living; Social/family life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1332] "Factors: Household Needs; Informational Needs; Financial Needs; Health Needs; Social Support Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1333] "Subtests: Copying diagram (15 points); Passage comprehension (5 points); Recall of drawing (15 points); Recall of answers (5 points); Recognition of flowers (4 points); No flowers correctly recognized (2 points) New questions (4 points)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1334] "Factors: Reciprocity; Justification; Reflexivity; Ideal role taking; Sincerity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1335] "Factors: Physical symptoms; Emotional distress; Headache/jaw symptoms; and Urological symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1336] "Factors: Reflection; Rumination; Preoccupation With Others’ Perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1337] "Factors: Psychosocial; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1338] "Factor 1: Daily Activities; Factor 2: Perceived Support; Factor 3: Social Life; and Factor 4: Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1339] "Factor 1: Research; Factor 2: Entertainment; and Factor 3: Operational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1340] "Factor 1: Internal; Factor 2: External-family; Factor 3: External-peers; and Factor 4: External-spiritual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1341] "Domains: urinary problems; bowel problems; sexual dysfunction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1342] "Student perception factors: ‘SWN support during placement’; ‘clinical facilitator support during placement’; ‘welcoming and acceptance'. SWN factors: ‘support to meet learning needs’; ‘confidence and competence: reflections on learning’; ‘welcoming students to the unit’."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1343] "Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1344] "Subscale: Self-Injurious behavior; Stereotyped behavior; Aggressive/destructive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1345] "Subscales: Anxiety-based performance deficits; exaggerated safety/caution behaviors; and hostile/aggressive behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1346] "Factors: Self-Worth; Control the World; World of Justice; Secure World."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1347] "Factors: Medication compliance; Medication management; Symptom management; Maintain daily life and social functioning; Manage health recourse and support; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1348] "Factors: One factor (perceived devaluation-discrimination); Two factors (perceived devaluation; perceived discrimination)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1349] "Subscales: Culture and values supporting use of research evidence to inform decisions; Setting of priorities for obtaining research evidence; Ability to acquire research evidence to inform decisions; Capacity to assess quality and applicability of the research evidence and to interpret the results so that they inform priority decisions; Use of research evidence to inform recommendations and decisions; Monitoring and evaluation of policies and programs; Continuing professional development on evidence-based topics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1350] "Subscales: Pervasive Developmental Disorders; ADHD; Intellectual Disabilities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1351] "Dimensions: Instrumental support; Informative support; Positive emotional support; Negative emotional support; Positive social companionship; Negative social companionship; Limitations; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1352] "Factors (Temperaments): Dysthymic; Cyclothymic; Anxious"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1353] "Factors: Commitment; Control; and Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1354] "Subscales: Beliefs about the scientific validity of complementary and alternative methods; Attitudes towards holistic medicine in general."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1355] "Factor 1: Conflict; Factor 2: Closeness; and Factor 3: Dependency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1356] "Factors: Nurse Manager Ability, Leadership, and Support of Nurses (Liderazgo y Gestion); Nursing Foundations for Quality of Care (Calidad del cuidado brindado); Nurse Participation in Hospital Affairs (Participadon del profesional en la institucion); Staffing and Resource Adequacy (Reconocimiento y recursos); Collegial Nurse-Physician Relations (Relaciones de practica conjunta)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1357] "Factors: Principles of nursing care; clinical guidelines; nursing interventions; ethical activity and familiarity of health care laws; decision-making; development work and collaboration factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1358] "Factors: Facilitators; Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1359] "Factor 1: Safety culture; Factor 2: Teamwork culture; Factor 3: Error disclosure culture; Factor 4: Experiences with professionalism; and Factor 5: Comfort expressing professional concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1360] "Factors: Ethnic identity exploration; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1361] "Factor 1: Care for Others/Goal Setting; Factor 2: Self-Responsibility; Factor 3: Self-Control/Respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1362] "Higher-order factors: Agency; Structure. Subscales: Want and Ability; External conditions; Being met."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1363] "Measurement Model Constructs: Entertainment; Education; Escapism; Esthetics; Hospitableness; Pleasure; Arousal; Memorability; Brand Loyalty Attitudes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1364] "Subscales: Task; Ego."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1365] "This measure consists of the following three factor analytically-derived subscales: Resource Manipulation/Violence, Commitment Manipulation, and Defection Threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1366] "Subscales: Distress; Atypicality; Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1367] "Factor 1: Mood-Related Signs; Factor 2: Behavioral Disturbance; Factor 3: Physical Signs; Factor 4: Cyclic Functions; and Factor 5: Ideational Disturbance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1368] "Dimensions: Degree; Severity; Distress; Degree of interference with activities of daily living; and Timing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1369] "Factors: Level of fatigue; Personal body care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1370] "Knowledge domain factors (15): Production and productivity software; Word processing software; Development methodology, software, and programming; Organizational development and management; Learning theory and human performance technology; Assessment, evaluation, and teaching techniques; Curriculum standards and frameworks; Learning management software and higher education; Instructional design, development, and online facilitation; Computer and communication hardware; Web and interface design; Cloud and mobile technologies; Content management systems and learning objects; Project management; Games, simulations, and the flipped classroom; Copyright laws, policies, and procedures in training programs. Skills domain factors (7): Communication, problem-solving, and interpersonal skills; Development and production skills; Leadership and team development skills; Business and research skills; Customer service and resolution skills; Project and quality management skills; Computer and database programming skills. Ability domain factors (9): Project management and providing feedback; Teaching and delivery of instruction; Application of instructional design, development, and evaluation; Analysis and strategic management; Adaptability to technology and process; Work and communication with diverse constituencies; Trouble-shooting and use of hardware; Initiative and focus; Leadership and ethical judgment."                                    
##  [1371] "Subscales: Distress due to inattention/disorganization; Distress due to hyperactivity/impulsivity; Distress due to self-esteem deficit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1372] "Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1373] "Subscales: Material conditions; Lifestyle and culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1374] "Factors: Interpersonal; Intrapersonal. Subfactors: Affect Regulation; Self-Punishment; Anti-Dissociation; Anti-Suicide; Marking Distress; Introspective Mechanism; Replacement of Suffering; Self-Care; Escape Mechanism; Interpersonal Boundaries; Peer Bonding; Interpersonal Influence; Autonomy and Toughness; Revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1375] "Dimensions: Risk factors older person; Risk factors key figure; Signals of elder abuse and mistreatment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1376] "Subscales: Patient’s personal status; Patient’s knowledge; Patient’s coping ability; Patient’s expected support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1377] "Factors: Concern over Mistakes; Parental Expectations; Parental Criticism; Doubts about Actions; Personal Standards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1378] "Factors: Psychological; Academic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1379] "This measure consists of two factor analytically-derived subscales: Interpersonal and Intrapersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1380] "Factors: Professional support; Perceived safety; Participation; Own capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1381] "This measure consists of the following two factor analytically-derived subscales: Intuitive Understanding and Vicarious Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1382] "This measure consists of three factor analytically-derived subscales: Dissociative Features, Emotional Distress Features, and Syncope Features."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1383] "Factors: Performance; Social value; Educational value; Emotional value; and Marketing activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1384] "This measure consists of the following factors: Intention of CDISV; Long-term orientation (LTO: Continuity, Futurity, and Perseverance); Value identification; Trusted relationship fulfilment; and Growth needs fulfilment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1385] "This measure consists of the following factor analytically-derived subscales: Understanding local travel environment; Cross-cultural communication and Interaction skills; Understanding local Culture; Language ability; Understanding local life habit; Understanding cultural backgrounds of tour members; Cultural Empathy; Cultural affinity; Cultural mediation; and Cultural adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1386] "This measure consists of five factor analytically-derived subscales: Self Expression; Enrichment of Dining Experience; Social Connection; Virtual Community Engagement; and Special Occasion Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1387] "This measure consists of the following four constructs (factors): Green training (TRA); Green performance management (PEM); Green employee involvement (EIN); and Organizational citizenship behavior towards the environment (OCBE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1388] "Factors: U.S. identity exploration; U.S. identity affirmation; U.S. identity resolution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1389] "Subscales: Health Care Service and Information Needs; Emotional and Psychological Needs; Work and Social Security Needs; Communication and Family Support Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1390] "This measure consists of four factor analytically-derived subscales: Competence, Benevolence, Integrity, and Fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1391] "Factors: Causal Subscale: Cancer and treatment factors; Psychological factors; Behavioural factors; Physical factors; and Uncontrollable factors. IPQ- R: Timeline; Consequences; Personal Control; Treatment Control; Illness coherence; Timeline cyclical; and Emotional Representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1392] "Criteria: Recognizing impacts; Taking responsibility; Providing leadership; Issue literacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1393] "This measure consists of three factor analytically-derived subscales: Food responsiveness, Slowness in eating, and Satiety responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1394] "Factors: Parents’ reported behaviours (reinforcement, encouragement, instruction and modelling); athletes’ perceptions of parents’ behaviours (perceived reinforcement, encouragement, instruction and modelling); and athletes’ psychological variables conducive to achievement in their sport (social self-efficacy, self-efficacy, intrinsic motivation, and self-regulation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1395] "Factors: Practice; Attitudes; Knowledge/skills related to research; Knowledge/skills related to practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1396] "Subscales: Commercial truth; Collaboration; Control; Product value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1397] "This measure consists of five subscales: Identifying Variables, Operationally Defining, Identifying Testable Hypotheses, Data and Graph Interpretation, and Experimental Design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1398] "Factors: Core symptoms; Abilities; Mobility; Sleep; Thriving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1399] "Screening Categories: Cognition/perception; Physical/sensation; Psychosocial; Medications; Other"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1400] "Scale: Childhood Trait Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1401] "This measure consists of three factor analytically-derived subscales: Family strengths, Difficulties and Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1402] "This measure consists of six factor analytically-derived subscales: Adventure, Gratification, Role, Value, Social, and Idea."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1403] "Factors: Strengths and adaptability; Overwhelmed by difficulties; Disrupted communication"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1404] "Domains: Divergent Graphic; Integrative Graphic; Divergent Verbal; Integrative Verbal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1405] "Factors: Respect and safety; Information and participation; Rehabilitation interventions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1406] "Factors: Male: Macho beliefs; sexual conservatism; control over sexuality. Female: Sexual conservatism; affection primacy; control over sexuality; age related beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1407] "Factors: Support from parents; Support from coach; Need for competence; Need for relatedness; Need for autonomy; Autonomous motivation; Controlled motivation; Keeping winning in proportion; Acceptance of cheating; Acceptance of gamesmanship; Self-reported cheating; Self-reported yellow cards; Yellow-cards given by the referee."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1408] "Higher-second-order construct: Perceived Person-Group Fit. Dimensions: value congruence; shared interests; perceived demographic similarity; needs-supplies match; goal similarity; common workstyle; complementary attributes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1409] "Factors: Information; Healthcare access and continuity; Personal and emotional needs; Worries about future; Financial needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1410] "QLQ-C30 Domains: Physical; Role; Emotional; Cognitive; Social; Fatigue; Nausea; Pain; Global health status; Dyspnoea; Insomnia; Appetite Loss; Constipation; Diarrhoea; Financial; QLQ-OH15 Domains: OH-QoL; Sticky saliva; Sensitivity; Sore mouth; Dentures; Information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1411] "Subscales: Equality; Need; Equity; Entitlement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1412] "Factors: Activity; co-morbidity; diagnosis beliefs; emotions; harm & blame; pain control; and work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1413] "Factors: Psychological well-being (PsW); Self-esteem (SE); Relationships with family (RFa); Relationships with friends (RFr); Resilience (RE); Physical well-being (PhW); Autonomy (AU); Sentimental life (SL)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1414] "Factors: Appreciation of Cultural Diversity (ACD); Attitudes towards Integration (ATI); Ethno-Relative Worldview (ERW); Goals of Intercultural Education (GIE). Higher Order Factor: Beliefs, Values, and Goals (BVG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1415] "Factors: Medical and obstetric risks/death; Psychosocial changes during pregnancy; Birth expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1416] "Factor structure: The authors found support for use of the InDI-A as a unidimensional scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1417] "Scales: Technology Innovation Acceptance (Benefit of innovation; Innovation compatibility); Organizational Innovation Climate (Organizational learning; Innovative culture; Job autonomy; Group cohesion); Innovative Teaching Behavior with Information and Communication Technology (Outcomes of innovative teaching; Innovative teaching materials and methods)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1418] "Theoretical Dimensions (note: the 'Identity' and 'Causes' dimensions were not included in the final CFA model, but analyzed separately in EFA): (1) identity; (2) causes; (3) timeline chronic-acute; (4) consequences; (5) personal control; (6) treatment control; (7) illness coherence; (8) emotional representation. A 'timeline cyclical' dimension was removed from the caregiver version following CFA."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1419] "Factors: Moral authenticity; Type authenticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1420] "Factors: Mental guidance; Coach relations; Task instruction; Career assistance; Role modeling; and Friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1421] "Factors: Attitude toward multilingualism; Attitude toward linguistic simplification; Attitude toward language awareness in lesson planning; Self-efficacy to teach culturally diverse PE classes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1422] "Factors: Enjoyment; Heightened; Helplessness; Role reversal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1423] "Factors: Pastimes/Hobbies; Foods/Drinks; Social activities; Sensory experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1424] "Factors: Physical strength; Emotional energy; Cognitive liveliness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1425] "Two-Factor Model: Collective efficacy to stop physical aggression; Collective efficacy to stop non-physical aggression. Three-Factor Model: Collective efficacy to stop physical aggression; Collective efficacy to stop relational aggression; Collective efficacy to stop verbal aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1426] "Factors: Internal feelings; Competing demands; Situational/interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1427] "This measure consists of the three factor analytically-derived subscales: Acknowledgement, Assistance, and Individual attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1428] "This measure consists of seven subscales: Family-Structure/Resources, Social Support, Child Problems, Sibling Problems, Family Problems, Stress Reactions, and Family Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1429] "Skill dimensions: optimism; emotion control; action orientation; self-reflection; trust; empathy; assertiveness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1430] "Subscales: Family Structure/Resources; Social Support; Child Problems; Sibling Problems; Family Problems; Stress Reactions; Family Beliefs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1431] "Self-Awareness of Strengths/Weaknesses; Self-Awareness of Emotion; Self-Management of Emotion; Self-Management of Goals; Self-Management of Schoolwork; Social Awareness; Relationship Skills; Responsible Decision-Making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1432] "Factors: Social influence; Ordering restrictions; and Personal views about nutrition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1433] "Factors: Interactivity; Relative Advantage; Compatibility; Cost-Effectiveness; Trust; Top Management Support; Entrepreneurial Orientation; Institutional Pressure; Social Media Usage; Organization Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1434] "The scale has two orthogonal subscales: Anglo (AOS; 13 items) and Mexican Orientation (MOS; 17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1435] "Subtests: The Performance Test consists of ten subtests: Cognitive Verbal/Preverval; Expressive language; Receptive language; Fine motor skills; Gross motor skills; Visual-motor skills; Affective expression; Social reciprocity; Characteristic motor behaviors; Characteristic verbal behaviors. The Caregiver Report contains three subtests: Problem behavior; Personal self-care; Adaptive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1436] "Factors: Low; Guilt; Emotional; Wakefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1437] "Factors: Just Met Scenarios; Familiar Scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1438] "Factors: Motivation or purpose for listening; Lack of focus or detachment; Understanding and perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1439] "Subscales: Respect and Safety; Information and Participation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1440] "Factors: Virtue–admiration; Dominance–fear; Competence–respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1441] "Factors: Anxious anticipation; Difficult transition; Interpersonal discomfort; and School avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1442] "Dimensions: Physical Space; Variety of Stimulation; Fine-Motor Toys; Gross-Motor Toys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1443] "Subscales: Activity opportunities; Social interaction; Developing as a person; Organization and information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1444] "Factors: Other—disparaging; Related; Unrelated; Offensive; and Self-disparaging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1445] "Factors: Perceived harm; Perceived Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1446] "Subscales: Work negatively influencing home life/WHI; Home negatively influencing work/HWI; Work positively influencing home life/WHI; Home positively influencing work/HWI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1447] "Self-regulatory efficacy; Mastery experiences; Vicarious experiences; Social persuasion; and Physiological/Emotional states."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1448] "Dimensions: Mobility; Self-Care; Usual Activities; Pain/Discomfort; Anxiety/Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1449] "Self & team development; Staff & care delivery; Technology & care initiatives; Financial & service management; Leadership & clinical practice; Patient safety & risk management; and Standards of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1450] "Awareness of emotion; Regulation of own emotions; Regulation of others' emotions; and Use of emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1451] "Subscales: Worried; Sad; Pain; Tired; Annoyed; Schoolwork/homework; Sleep; Daily routine; Able to join in activities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1452] "Interpersonal aspects; Organizational/Service aspects; and Negatively phrased/Reverse-scored items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1453] "Family well-being; Responsibilities and social life; Financial well-being; and Jobs and careers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1454] "Comparative Self-Criticism (CSC); Internalized Self-Criticism (ISC); and Favourable Comparison with Others (FSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1455] "Factors: Satisfaction with Appearing Pregnant; Weight Gain Concerns; Physical Burdens of Pregnancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1456] "Chance or fate; Criticality; Significant others; Professional help; and Gender."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1457] "Subscales: Struggle; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1458] "Factors: Self-directed; Values-driven"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1459] "Subscales: Authenticity; Acquiescence; Clarity/Projectuality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1460] "Subscales: Low; Dull; Guilt; Emotional; Wakefulness; Nervous."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1461] "Subscales: Intrinsic motivation; Integrated regulation; Identified regulation; Introjected regulation; External regulation; Amotivation. Factors: Autonomous; Controlled motivation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1462] "Dimensions: Spatial reasoning; mathematical reasoning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1463] "Subscales: Callousness; Unemotional; Uncaring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1464] "Factor structure: Single-factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1465] "Subscales in the Afrikaans version: Autonomy; Relatedness; Competence. The Setswana version showed a unidimensional solution (i.e., Basic psychological needs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1466] "Constructs: Physical servicescape; Social servicescape; Company identification; Place attachment; Word-of-mouth behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1467] "Subscales: Motivation to help; Motivation to live; Putting life in perspective; Legacy; Connection to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1468] "Item categories: Agreeableness; Conscientiousness; Exploratory excitability; Extravagance; Disorderliness; Sensation seeking; Impulsivity; Theft; Alienation; Rebelliousness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1469] "Factor 1: Vulnerable Narcissism (NSC-VN) and Factor 2: Grandiose Narcissism (NSC-GN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1470] "Factors: Behavioral; Cognitive; Emotional; Transcendental."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1471] "Subscales (three of 13 total): Continuity; Curiosity; Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1472] "Subscales: Physical Appearance; Physical Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1473] "Subscales: Positive mindset; Joy; Life satisfaction; Confidence; Self-esteem; Social interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1474] "Domains: Symptoms; Emotional; Functional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1475] "This measure consists of eight factor analytically-derived subscales (Directing, Helpful, Understanding, Compliant, Uncertain, Dissatisfied, Confrontational, and Imposing) and two underlying dimensions (Agency and Communion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1476] "This measure consists of two factor analytically-derived subscales: Expectation of pro-environmental behavior and Expectation of anti-environmental behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1477] "This measure consists of two factor analytically-derived subscales: Callousness and Uncaring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1478] "Subscales: Problems in feeling accepted; Readiness for self-disclosure; Need for care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1479] "Factors: Negative Perceived Value; Discomfort with Emotions; In-group Stigma; Lack of Knowledge; Lack of Access; Cultural Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1480] "First-order Factors: Mimetic Pressure; Coercive Pressure; Normative Pressure; Top Management Beliefs; E-Health Championing; E-Health Usage. second-order factor: Institutional Forces."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1481] "Domains: Self-related emotional impact; Patient-related emotional impact; Personal/Social Impact"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1482] "Factors: Promotion and Prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1483] "Factors: Family communication and problem solving; Utilizing social and economic resources; Maintaining a positive outlook; Family connectedness; Family spirituality; and Ability to make meaning of adversity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1484] "Model constructs: Industrial ethical climate; Organizational ethical climate; Customer orientation; Adaptive selling; Moral equity; Outcome salesperson performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1485] "Factor: Global scale of resource management; Help seeking; Learning environment; Time management; Effort; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1486] "Subscales: Object control skills; Locomotor skills"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1487] "Subscales: Restriction; Monitoring (Supervision)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1488] "Factors: Competence; Good will; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1489] "This measure consists of two factor analytically-derived subscales: Knowledge of cognition and Regulation of cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1490] "Factors: Personal Strengths; Impulsivity; Childhood/adolescence abuse; Stressful life events; Depression; Family alcohol; Short term problems; Mental health; Suicide environment; Suicide irrigation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1491] "Subscales: Formality; Integrability; Complexity; Modality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1492] "Factors: Academic; Social; Emotional; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1493] "Factors: Stress; Assertiveness; Difficulties to conciliate the care of grandchildren with personal time; Emotional self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1494] "Factors: Loss of control; Emotional deregulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1495] "Factors: Affective empathy; Cognitive empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1496] "Subscales: Physical Violence; Sexual Violence; Atypical Violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1497] "Factors: Direct relational aggression; Indirect relational aggression; Proactive relational aggression; and Reactive relational aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1498] "Subscales: Time demands; Safety; Passengers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1499] "Factors: Interpersonal grandiose narcissism; intrapersonal grandiose narcissism; interpersonal vulnerable narcissism; intrapersonal vulnerable narcissism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1500] "Subscales: SYMP-6 (non-visual); FUNC-4 (visual problems)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1501] "Subscales: Economic Exploitation; Economic Restriction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1502] "Factors: Self-image; Compassion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1503] "Factors: Desire; Arousal; Lubrication; Orgasm; Satisfaction; and Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1504] "S-CALVS subtests: core academic language skills; academic vocabulary knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1505] "This measure consists of five subscales: Financial impact, Social relationships, Personal strain, Problems in coping, and Concern for siblings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1506] "Factors: Impact of social work on one’s faith; Impact of faith on one’s social work practice; Impact of faith on one’s social work identity; Conflict between one’s faith and social work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1507] "Factors: Knowledge of cognition; Regulation of cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1508] "Factors: Difficulty deleting; Accumulating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1509] "Factors: Technical advantage; Attitude of game providers; Perceived risk; Source credibility; Critical mass; Self-efficacy; Positive cheating attitude; Personal engagement; and Intention to stop cheating behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1510] "Factors: Past negative; Present fatalistic; Past positive; Future; Present hedonistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1511] "Factors: Positive engagement; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1512] "Constructs: Sharing of risk information; Attitudes towards sharing information; Self-efficacy; Injunctive norms; Sociability; Information seeking; Information need; Descriptive norms; Anxiety; Risk perception; Trust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1513] "Factor: Self-Efficacy for Teaching Students With ASD."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1514] "Factors: Speeding Violations; Errors; Non-Speeding Violations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1515] "Domains/Subdomains: Learning environments (Safety; Organization of Learning Environment; Materials; Visual schedules; Transitions); Positive learning climate (Staff-student interaction; Staff behaviors; Promoting diversity); Assessment and IEP development (Assessing student progress; Assessment process; IEP goals; Transition planning); Curriculum and instruction (Classroom instruction); Communication (Communication rich environment; Individualized communication instruction; Responsiveness to student communication; Communication systems); Social competence (Arranging opportunities; Teaching and modeling; Peer social networks); Personal independence and competence (Personal independence; Self-management); Functional behavior [interfering and adaptive] (Proactive strategies; Behavioral assessment; Behavior management; Data collection); Family involvement (Teaming; Communication; Parent teacher meetings); Teaming (Team training; Team membership; Team meetings; Implementation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1516] "Fine motor; Gross motor; Language; Cognitive; Personal-social-emotional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1517] "Factors: Time Management/Organization; Extracurricular/Social; Hygiene; Household; Family Communication"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1518] "Factors: Antisocial; Drugs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1519] "Factors: Everyday-life business deviance; Materialism; Trust in institutional justice; Ethical standards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1520] "Factors: Eight first-order factors: Internalizing/Catastrophizing [IC]; Positive Self-Statements [PSS]; Information Seeking [IS]; Seeking Social Support [SSS]; Cognitive Distraction [CD]; Externalizing [EXT]; Behavioural Distraction [BD]; and Problem Solving [PS]. Second higher-order scales: Approach [APP]; Emotion-Focused Avoidance [EFA]; Distraction [DIS])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1521] "Subscale: Consulting behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1522] "Self-care Maintenance; Self-care Management; Self-care Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1523] "Maintenance; Management (Consultative and Autonomous); and Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1524] "Factors: Social Advising; Decisiveness; Emotional Regulation; Insight; Pro-Social Behaviors; Tolerance for Divergent Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1525] "Factors: Salience; Conflict, Tolerance and Mood Modification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1526] "Factors: General Bonding (F1A); Frustration (F1B); Anxiety (F2); Feeling trapped (F3A); and Aggression/Rejection dimensions (F3B) loaded onto three subscales 1, 2, and 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1527] "Subscales: Community Mobility; Emotional; and Resources and Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1528] "Factors: Wärme/Nähe (Warmth/Closeness); Konflikt (Conflict); Status/Macht (Status/Power); Elterliche Parteilichkeit (Rivalry)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1529] "Subscales: SYMP-6 (characterizes nonvisual ocular symptoms); FUNC-4, (characterizes visual symptoms)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1530] "Subscales: kog = kognitive Strategien; Org = Organisieren; Ela = Elaborieren; KrP = kritisches Prüfen; Wie = Wiederholen; metakog = metakognitive Strategien; ZP = Planen; Kon = Kontrollieren; Reg = Regulieren; erm = Strategien des Managements externer Ressourcen; LmS = Lernen mit Studienkolleg innen; Lit = Literaturrecherche; LU = Lernumgebung; irm = Strategien des Managements interner Ressourcen; Ans = Anstrengung; Auf = Aufmerksamkeit; Zei = Zeitmanagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1531] "Dimensions: Warmth/Closeness; Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1532] "Single-factor structure: Emotional Intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1533] "Factors: Physical Appearance; Physical Health; Intelligence; Academic Achievement; Leisure Activities; Personality; Family Relationship; Close Relationship; Friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1534] "Factors: Fear of Accountability; Classroom Disruption; Hopelessness; and Teacher Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1535] "Part B domains: Communication; Labor resources; Material resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1536] "Factors: Social; Environmental; Economical; and Physical according."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1537] "Factors: Learning with fellow students (Lernen mit Studienkollegen); Using literature for help (Literatur zur Hilfe nehmen); Design of the study environment (Gestaltung der Studienumgebung). Scales: Organization (Organisation); Relationships (Zusammenhänge); Critical review (Kritisches Prüfen); To repeat (Wiederholen); Metacognitive strategies (Metakognitive Strategien); Effort (Anstrengung); Attention (Aufmerksamkeit); Time management (Zeitmanagement); Learning environment (Lernumgebung); Lemen with (Lernen mit); Fellow students (Studienkollegen); Literature (Literatur)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1538] "Subscales: Factor 1; Factor 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1539] "Subscales: Internal; External; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1540] "Subscales: Physical aggression; Exclusion; Insults/mockery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1541] "Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1542] "Subscales: Competence & Autonomy; Perceived Need for Cooperation; Perception of Actual Cooperation; Understanding Others' Value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1543] "Subscales: Self-belief; Learning focus; Value of schooling; Persistence; Planning and monitoring; Study management (Boosters); Anxiety; Low control; Failure avoidance; Self-sabotage (Guzzlers)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1544] "Factors: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness. Subscales: Anxiety; Anger; Depression; Self-consciousness; Immoderation; Vulnerability; Friendliness; Gregariousness; Assertiveness; Activity Level; Excitement-seeking; Cheerfulness; Imagination; Artistic Interest; Emotionality; Adventurousness; Intellect; Liberalism; Trust; Morality; Altruism; Cooperation; Modesty; Sympathy; Self-efficacy; Orderliness; Dutifulness; Achievement-striving; Self-discipline; Cautiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1545] "Subscales: Defeat/Victory; Acceptance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1546] "Factors: Customer involvement; Supplier involvement; Green product innovation; Supplier uncertainty; Demand uncertainty; Technological uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1547] "Subscales: Traditional; Intellectual; Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1548] "Subscales: Pain Impact; Catastrophizing; Outcome-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1549] "Subscales: Social Quality of Life (SOCQOL); Vocational Quality of Life (VOCQOL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1550] "Subscales: Symptom; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1551] "Domains: Bodily functions; Mental functions and perception; Spiritual/existential; Quality of life; Social and societal participation; and Daily functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1552] "Subscales: Comfort; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1553] "Dimensions: Psychological demands; physical demands; Organizational demands; Work overcommitment; Interferences between work and family; nonwork domains to work (Overall job requirements); job control; autonomy; Social support from coworkers; social support from supervisors; Social support by relatives (Overall job resources)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1554] "Subscales: Verbal aggression; Physical aggression against objects; Physical aggression against self; Physical aggression against other people; Sexual behavior; Perseverative/repetitive; Wandering/absconding; Inappropriate social behavior; Reduced initiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1555] "Subscales: Acts of Service; Physical Touch; Words of Affirmation; Quality Time; Gifts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1556] "Subscales: Intrusion; Avoidance; Changes in Cognition and Mood; Arousal and Hyperreactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1557] "Factors: Relatedness; Mastery; Competence; Fun; Narratives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1558] "Factors: Reflective skepticism; Self-examination; Empathetic reflection; Critical open-mindedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1559] "Factors: Compulsory living; Absence of romantic behavior toward spouse; and Emotional vacuum."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1560] "Scales: Behaviour; Materialism; Environment; Life Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1561] "Subscales: psychological aggression; minor physical violence/corporal punishment; severe physical violence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1562] "Subscales: Limitation; Emotional; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1563] "Subscales: Severity; Frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1564] "Subscales: Contamination; Responsibility for harm or mistakes; Unacceptable thoughts; Incompleteness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1565] "Subscales: Virtual tolerance; Virtual communication; Virtual problem; Virtual information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1566] "Subscales: Innate predilection; Abstinence; Family attitudes; Peer pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1567] "Subscales: Psychologic; Health system and information; Physical and daily living; Patient care and support; Sexuality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1568] "Domains of Practice: Direct comprehensive care; Support of systems; Education; Research; Publication and Professional Leadership"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1569] "Subscales: Rape victims want to be raped; Rape allegations are often false; Rape must involve violence; Victims are responsible for being raped; The motivation to rape is understandable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1570] "Factor: Global trait Emotional intelligence. Indicators: Well-Being; Self-Control; Emotionality; Sociability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1571] "Factors: Positive religious coping; Negative religious coping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1572] "Factors: The size of the discrepancies; The resulting distress; The presence to unwanted traits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1573] "Subscales: Efficiency and effectiveness of nutrition care; Training and support; Integration into dietetic work systems; Familiarity with apps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1574] "Factors: Respect for basic rights; Support of self-determination; Sense of social responsibility; Commitment to individual freedom."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1575] "Subscales: Perceived personal control in health care; Anticipated personal control regarding future health care; Perceived support from the social network."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1576] "Subscales: Arrangement of professional health care; Help from family members/friends/neighbors; When needing (more) complex care in the future; Communication with medical workers; Self-care at home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1577] "Factors: Nonacceptance; Goals; Impulses; Awareness; Strategies; Clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1578] "Subscales: Secure; Fearful; Dismissing; Preoccupied"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1579] "Levels: Word; Category procedure; Phrasal procedure; Interphrasal procedure (word order rules); Clause and subclause"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1580] "Subscales: Indifference; Over-control; Abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1581] "Subscales: Fear; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1582] "Factors: Mission analysis; Strategy formulation; Situation monitoring; Backup behaviors; Coordination; Conflict management; Motivating others; Affect management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1583] "Factors: Ability to Relax; Ability to Image to Music; Responsiveness to Music and Guiding; Comfort with Self-Disclosure; Meaningfulness of the Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1584] "Subscales: Poor awareness; Expressive reluctance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1585] "Components: Assessment Type; Timing of Feedback; Personalization; Form; Type; Peer Feedback; Resubmission Opportunities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1586] "Factors: Nurse participation in hospital matters; Environment allows for quality nursing practice by providing basic fundamentals required; Management capabilities; Support from other nurses and adequacy of resources; Nurse-doctor relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1587] "Scales: Mania Symptom Index; Depression Symptom Index; General Symptom Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1588] "Subscales: Hyperthymic; Depressive; Cyclothymic; Irritable; Anxious"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1589] "Factors: Irreversibility; Loss of control; Narcissistic wounds; Emotional flooding; Freezing; Estrangement; Confusion; Social distancing; and Emptiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1590] "Factors: Positive aspects of mania; Negative aspects of mania."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1591] "Factors: Perspective taking; Online simulation; Emotional contagion; Proximal responsivity; and Peripheral responsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1592] "New subscales: Quality of transitions; Presence of interdisciplinary teams; Opportunities to engage children in art, play, literature, and exploration; Pedagogical quality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1593] "Factors: Past imagery; Physiological reactions; Positive emotions; Negative emotions; Collective nostalgia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1594] "Subscales tested: Individual Problems and Strengths (IPS); Relationship with Partner (RWP); Family/Household (FH); Child Problem and Strengths (CPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1595] "Subdomains: recovery; sequelae; insight; hidden injury"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1596] "Factors: Communication; Accommodation; Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1597] "Factors: Showing interpersonal sensitivity; Communicating specific information about the child; Treating people respectfully."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1598] "Factors: Encouraging interprofessional interaction; Respect for each professional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1599] "Instruments types: Parent report; Closed-set Words; Closed-set Sentences; Open-set Words; Open-set Sentences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1600] "Subscales: Frequency; Importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1601] "Factors: Cancer fatalism; Health fatalism; Health temporal orientation and internal control; External control; Physical space."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1602] "Factors: Altruistic behavior; Attitude; Persuasive communication; Self‐efficacy belief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1603] "Factors: Perceived economic impacts; Perceived social impacts; Perceived environmental impacts; Opportunity; Knowledge & awareness; and Participation in conservation & tourism development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1604] "Factors: Secure environment; Interactive environment; Family environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1605] "Subscales: Idea Openness; Idea Selection; Idea Application."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1606] "Levels: Individual Level (4 scales); Organizational Level (13 scales); System Level (8 scales)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1607] "Factors: Attitude towards rule violations and speeding; Attitude towards the careless driving of others; Attitude towards drinking and driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1608] "Scales: General; Walking; Cycling barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1609] "Subscales: Personal irrational beliefs; Low frustration tolerance; Awfulizing; Depreciation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1610] "Factors: Trustworthiness; Competency; Having someone’s back; Value-life interest similarity; Caring personal relationship; and Socio-cultural similarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1611] "Factors: Psychological aggression towards the mother; Physical aggression towards the mother; Psychological aggression towards the father; Physical aggression towards the father."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1612] "Subscales: Cumulative humiliation; Fear of humiliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1613] "Factors: Exchange Legitimacy; Influence-Dispositional Legitimacy; Consequential Legitimacy; Procedural Legitimacy; Structural Legitimacy; Comprehensibility; Taken-for-grantedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1614] "Factors: Proactive Strategies; Protective Strategies; Reactive Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1615] "Factors: Noncompliance; Procedural effort; Substantive effort; Focal effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1616] "Subscales: Fitbit financier; Status; The Cash Splasher; Anxious trader."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1617] "Factors: Physical and mental health; Family life; Social security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1618] "Factors: Positive idealization; Sexual attraction; Positive emotion; Negative emotion; Obsessive thinking; Taking love for granted; and Negative idealization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1619] "Subscales: Structure; Presence; Social Support; and Self-Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1620] "Factors: Authoritarian Aggression; Authoritarian Submission; Conventionalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1621] "Factors: Performance Expectancy; Effort Expectancy; Facilitating Conditions; Hedonic Motivation; Social Influence; Intention to Use; Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1622] "Factors: Transactional leadership; Transformational leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1623] "Factors: Fatigue; Exhaustion; and Recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1624] "Factors: Positive meaning; Meaning making through work; Greater good motivations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1625] "Factors: Instrumental; Affective; Defense."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1626] "Factors: Sad mood and agitation; Cognitive inefficiency; Lack of energy; Positive mood; and Social withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1627] "Subscales: Negative post-event processing degree subscale and Negative post-event processing distress subscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1628] "Factors: Self-perception; role-emotional, role-social, acne symptoms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1629] "Factors: Alleviating Workload (AW); Monitoring (M)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1630] "Factors: Escapism; browsing; socialization; activity; shopping for fashion products; uniqueness; service; and aesthetics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1631] "Dimensionality: The measure is unidimensional. Specifically, it was expected that reliability would be high without indicating redundancy. In this case, the reliability of 0.98 demonstrates unidimensionality, i.e., that the instrument is in fact measuring the impact of the sensory environment on participation of young children in the community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1632] "Part 1 factors: goal frustration; external demands; external prohibitions. Part 2 factors: endurance; negative emotions; immediate acceptance; negotiation; obedience; respecting prohibitions; evasiveness; physical pressure. Part 3 factors: rewarding; praising; giving in; discussing; distraction; call for self-regulation; negative pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1633] "Factors: Recovery; Brain injury sequelae; Insight; Hidden injury."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1634] "Subscales: Nurturant-parent (NP); Strict-father (SF)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1635] "Factors: Animal pride; Solidarity with animals; Human-animal similarity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1636] "Composite Scales/Subscales: Factor: Incremental: Self-kindness; common humanity; mindfulness; Factor: Decremental: Self-judgment; isolation; over-identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1637] "Factors: Mood and coping; Esteem and worth; Socialization; Cognition; and Self-actualization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1638] "Fight-flight system; Behavioral activation system; Behavioral inhibition system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1639] "Factors: Unsolvability; Unbearability; Unlovability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1640] "Factors: Managing the Pain; Enduring the Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1641] "Subscales: Inattentive (INA); Hyperactive/Impulsive (H/I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1642] "Factor structure: household disruption; abuse; neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1643] "Subscales: Surfeit of the pain; Belief in the ability to cope with the pain; Containing the pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1644] "Subscales: Irreversibility; Loss of control; Narcissistic wounds; Emotional flooding; Freezing; Self-estrangement; Confusion; Emptiness; Social distancing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1645] "Factors: Self-deception; Impression management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1646] "Factors: Affiliative humor; Aggressive humor; Self-enhancing humor; and Self-defeating humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1647] "Factors: Reactivity; Holding a Grudge; Negative thoughts about situations; Easily Frustrated/Angered; Hostility towards one's partner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1648] "Subscales: Anger response; Anger impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1649] "Sub-tasks: Dictating into a tape-recorder a brief account of two journeys (to here; from here); writing down names of as many pictures as one can (from two sets of pictures); solving sets of arithmetic problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1650] "Subscales: Anger response; Anger impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1651] "Subscales: Fight-flight-freeze system (FFFS); Behavioral inhibition system (BIS); Behavioral approach system (BAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1652] "Subscales: Frequency of exposure; Age at exposure; Nature of relationship to the person exhibiting suicidal behavior; degree of Emotional reaction to exposure. Factors: Exposure to suicidal communication; Direct exposure to suicide attempts and deaths; Indirect exposure to suicide attempts and deaths."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1653] "Subscales: Factors Increasing Anxiety; Compulsion/Hypochondria; Factors Decreasing Anxiety; Doctor-Patient Interaction; Dysfunctional Internet Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1654] "Factors: Sluggish; Daydreaming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1655] "Factors: Fortitude; Trust in Nurses; Cancer Patient Optimism; Authentic Self-Representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1656] "Factors: Creative anxiety; Noncreativity anxiety control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1657] "Factors: Direct aggression perpetration; Direct aggression victimization; Control perpetration; Control victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1658] "Factors: Non-interference and action; Acceptance and Life functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1659] "Factors: Outlook; Resilience; Social Intuition; Self-Awareness; Sensitivity to Context; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1660] "Factors: Perceived competence; Autonomy support; Intrinsic motivation; Relatedness; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1661] "Dimensions: Motivation and Sense of Life; Catastrophizing of the Present and the Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1662] "Scales: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1663] "Subscales: Perceived ability; Role clarity; Customer satisfaction; Continuance intention; Perceived benefit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1664] "Factors: Suppression; Adjusting/Reappraisal; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1665] "Independent Factor: General Sense of Humor. Correlated Specific Factors: Enjoyment of Humor; Laughter; Verbal Humor; Finding Humor in Everyday Life; Laughing at Yourself; Humor under Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1666] "Subscales: Dyadic sexual behaviour with a casual partner; Dyadic sexual behaviour with a steady partner; Solitary sexual behaviour and use of erotic material; Unconventional sexual behaviour; Online sexual behaviours."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1667] "Factors: Personal Growth; Emptiness and Meaninglessness; Continuing Bonds; Sense of Peace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1668] "Factors: Sexual pressure; Sexual coercion; Online grooming by an adult; Unwanted exposure to sexual content; Violation of privacy; Online harassment; Happy slapping; Pressure to obtain personal information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1669] "Factors: Reckless contact with strangers; Indirect risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1670] "Factors: Emotional abuse (Emocionálne týranie); Physical abuse (Fyzické týranie); Sexual abuse (Sexuálne zneužívanie); Emotional neglect (Emocionálne zanedbávanie); Physical neglect (Fyzické zanedbávanie)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1671] "Dimensions: attentional control; inhibitory control; metacognition; organization; planning; cognitive flexibility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1672] "Factors: Financial preparedness; Social obligation; Social alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1673] "Factors: Test/exam; Writing; Public speaking; Group work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1674] "Factors: Cognitive problems; Distress; Sleep problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1675] "Factors: Free will; Determinism; Dualism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1676] "Factors: Knowledge of content; Pedagogical knowledge; Pedagogical knowledge of content; Technological knowledge; Pedagogical technological knowledge; Technological knowledge of content; Pedagogical technological knowledge of content."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1677] "Factors: Positive work-family interface; Positive family-work interface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1678] "Factors: realistic; investigative; artistic; social; entrepreneur; conventional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1679] "Dimensions: Working excessively; Working compulsively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1680] "Factors: Supportive behavior; Resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1681] "Sub-Factors: Setting Goals; Academic Time Management; Resource Organization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1682] "Factors: Conversation skills; Ability to say 'no'; Ability to accept praise; Public speaking; Positive moods; Lack of negative moods; Ability to disagree; Standing up for one's rights"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1683] "Factors: Locomotive skills; Object control/ball skills"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1684] "Factors: Continuous Learning; Inquiry and Dialogue; Collaboration and Team Learning; Systems to Capture Learning; Empower People; Provide Strategic Leadership for Learning; Connect the Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1685] "Ethical Commitment; Cooperation with Other Professionals; Project Design and Development; Diversity Disposition; Professional Development Disposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1686] "Dimensions: “Beliefs/knowledge about/of schizophrenia”; “Attitudes towards schizophrenia”."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1687] "The dimensionality of the measure showed two distinct elements (verbal and non-verbal pragmatic language) of a unidimensional construct."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1688] "Factors: Self-Emotion Appraisal; Other’s Emotion Appraisal; Use of Emotion; Regulation of Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1689] "Factors: Harmonious passion; Obsessive passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1690] "Factors: Sense of control or autonomy; Sense of meaning and purpose; Personal expressiveness; Feeling of belonging; Contribution and social competence; Personal growth and self-acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1691] "Factors: A population perspective – value for money, no special cases; Life is precious – valuing life-extension and patient choice; Valuing wider benefits and opportunity cost - the quality of life and death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1692] "Subscales: Medication adherence; Low-salt diet adherence; Physical activity; Nonsmoking; Weight management; Alcohol abstinence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1693] "Subscales: Medication Adherence; Healthy Eating; Physical Activity; Tobacco Exposure; Weight Management; Alcohol Intake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1694] "Factors: Cognitive Imbalance; Affective Imbalance; Imbalance toward Others; Automatic Imbalance; Imbalance toward Self; External Imbalance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1695] "Factors: Worrying about relationships; Frustration about unavailability; Turning away from others; Discomfort with closeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1696] "Factors: Survival; Meaning; Power; Autonomy; Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1697] "Factors: Community link; Reliability; Commitment; Congruence; Benevolence; Transparency; Broad impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1698] "Factors: Brooding; Reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1699] "Subscales: Emotional symptoms; Physical symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1700] "Factors: Capacity; Work procedures; Participation strategies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1701] "Dimensions: Overall quality; Dialogue with students; Respect for students; Affect; Teaching performance quality; Learning potential; Student discipline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1702] "Dimensions: Educational; Quality Presentation; Intrinsic Concepts are Covered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1703] "Factors: Disrespect towards people; Respect toward people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1704] "Factors: Socio-emotional Characteristics; Cognitive Characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1705] "Factors: Conspiracy theory ideation; Skepticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1706] "Factors: Preoccupation; Failure to adapt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1707] "Subscales: Student social emotional learning; Engaging families; Supporting students experiencing mental health difficulties; Positive school community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1708] "Factor structure: Unidimensional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1709] "Subscales: Static sitting balance; Dynamic sitting balance; Co-ordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1710] "Indicators: Therapist use of praise; Therapist demonstration of warmth; Client comfort level; Therapist-client collaboration; Client interest and enthusiasm; Openness to the therapy process; Client use of strengths-based language; Provider listening behaviors; Provider overall comfort; Provider confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1711] "Domains: (1) activities of daily living (ADL) and personal care; (2) positioning, transferring and mobility; (3) comfort and emotions; (4) communication and social interaction; (5) health; (6) overall quality of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1712] "Subscales: Range of motion (ROM); Accuracy; Dexterity; Fluency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1713] "Factors: Lighthearted; whimsical; other-directed; intellectual"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1714] "Factors: Temperament (Novelty Seeking; Harm Avoidance; Reward Dependence; Persistence); Character (Persistence; Self-directedness; Cooperativeness; Self-transcendence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1715] "Factors: Past Life Satisfaction; Present Life Satisfaction; Future Life Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1716] "Factors: Inattention; Hyperactivity/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1717] "Factors: Emotional demands of work; Superficial action; Deep action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1718] "Factors: Courage (Coragem); Temperance (Temperança); Justice (Justiça); Prudence (Prudência); Humanity (Humanidade)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1719] "Factors: Early Academic Skills (Creative Thinking; Critical Thinking; Numeracy; Early Literacy; Comprehension); Early Academic Enablers (Approaches to Learning; Social-Emotional Competence; Fine Motor Skills; Gross Motor Skills; Communication)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1720] "Subscales: Perceived Workplace Power; Perceived Workplace Status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1721] "Father Factors: Ego promoting values and behaviors; Task promoting behaviors; Task promoting values. Mother Factors: Ego promoting values and behaviors; Task promoting values and behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1722] "Factors: Benefits in Usefulness (BIU, 6 items); Concern Scenarios (CS, 5 items); Benefits in Situations (BIS, 3 items); System Concerns (SC, 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1723] "Factors: Core disgust; Animal-reminder disgust; Physical and mental contamination disgust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1724] "Factors: Orientation for problem-solving related to children and child-rearing; Feelings of avoidance of children and child-rearing; Inclination toward child-rearing at home; Acceptance of the tax burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1725] "Factors: Spiritual Transcendence (ST); Religious Sentiments (RS). Subfactors: Religious Involvement (RI); Religious Crisis (RC); Prayer Fulfillment (PF); Universality (UN); Connectedness (CN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1726] "Latent factors: Quality of Day; Affective Well-Being"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1727] "Factors: 1. Relationships inside the pediatric team; 2. Health professionals’ relationship with themselves; 3. Health professionals’ relationship with children; 4. Health professionals’ relationship with families; 5. Families’ relationship with child’s condition and treatment; 6. Children’s relationship with their own disease and treatment; 7. DA’s intervention “durability” on children; 8. DA’s impact on the staff’s cultural development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1728] "Subscales: Retribution in this life; Afterlife retribution; Retribution in descendant; Create destiny; Offset of good and evil; Religious redemption; Accept destiny."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1729] "Factors: Emotional Deprivation; Abandonment; Mistrust; Social Isolation; Defectiveness; Failure; Dependence; Vulnerability; Enmeshment, Subjugation; Self-Sacrifice; Emotional Inhibition; Unrelenting Standards; Entitlement; Insufficient Self-Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1730] "Factors: Training for employment/career (Formación para el empleo/Carrera); Personal and social development (Desarrollo personal y social); Student mobility (Movilidad estudiantil); Political and citizenship involvement (Implicación política y ciudadanía); Social pressure (Presión social); Quality of education (Calidad de formación); Social interaction (Interacción social)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1731] "Factors: Change Unnecessary; Conflicting Goals and Aspirations; Interpersonal Relations; Lacking Knowledge; Tokenism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1732] "Subscales: Patient Activation; Non-Patient Activation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1733] "Factors: Flexibility of Truth; Acceptance of Differences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1734] "The short-form scales are unidimensional (as opposed to the 4-factor original measure)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1735] "Factors: Communication; Respect; Excellence; Altruism and caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1736] "Subscales: Confidence in Learning; Confidence in Creativity; Confidence in Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1737] "Subscales: Perception of trust and receptivity; Patient-centered information giving; Rapport building; Facilitation of patient involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1738] "Subscales: Warmth; Rejection; Structure; Chaos; Autonomy support; Coercion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1739] "Subscales: Coping asset of problem (Afrontamiento activo del problema); Consumption of alcohol or drugs (Consumo de alcohol o drogas); Focus on emotions and Unburden (Centrarse en las emociones y desahogarse); Search of social support (Búsqueda de apoyo social); Humor (Humor); Religion (Religión); Negation (Negación); Restrain the coping (Refrenar el afrontamiento); Acceptance and increase personal (Aceptación y crecimiento personal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1740] "Factors: Psychological State; Having family; Achievement Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1741] "Subscales: Frequency; Importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1742] "Factors: Reading; Concentration and Memory; Time Management; Emotional Management; Other learning practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1743] "Dimensions: Physical Space; Variety of Stimulation; Fine-Motor Toys; Gross-Motor Toys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1744] "Parenting dimensions: warmth; rejection; structure; chaos; autonomy support; coercion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1745] "Parenting dimensions: warmth; rejection; structure; chaos; autonomy support; coercion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1746] "Factors: Self-concept; Self-efficacy; Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1747] "Sub-measures: Picture Naming; Expressive Verbs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1748] "Factors: Dyadic Reciprocity; Maternal Unresponsiveness to Infant’s Cues; Dyadic Conflict; Maternal Intrusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1749] "Factors: Peer comparison; Parents, School; Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1750] "Factors: Symptoms-addiction (síntomas-adicción); Social-use (uso-social); Traits-freaky (rasgos-frikis); Nomophobia (nomofobia)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1751] "Factors: Word reading and knowledge of letter components (language development); Letter ordering/sorting (psychomotor development)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1752] "Factors: Autonomy Satisfaction; Autonomy Frustration; Relatedness Satisfaction; Relatedness Frustration; Competence Satisfaction; Competence Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1753] "Factors: General positive reactivity; General negative reactivity. Subscales: Negative-activation; Negative-intensity; Negative-duration; Positive-activation; Positive-intensity; Positive-duration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1754] "Factors: Rumination; Reappraisal; Acceptance; Problem-solving; Expressive suppression; Experience suppression; Avoidance; Activity/Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1755] "Factors: Fear of Injury; Fear of Illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1756] "Factors: General Distress; Anxious Arousal; Anhedonic Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1757] "Subscales; general distress; anhedonic depression; anxious arousal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1758] "Factors: Negative affect; Positive affect; Somatic affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1759] "Factors: Academic functioning; Behavior functioning; Social functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1760] "Factors: Behavioral Regulation and Metacognition. Scales: Initiate; Working Memory; Plan/Organize; Organization of Materials; Task-Monitor; Inhibit; Self-Monitor; Shift; Emotional Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1761] "Construct validity: There was evidence for strong concurrent validity with both self-report and behavioral measures of DI (across several types of distress) and evidence for elevations in clinical relative to healthy samples (McHugh&Otto, 2011), providing support for the construct validity of the 10 items. Criterion validity: Results provided preliminary support for the items' correlation with behavioral measures across types of distress (McHugh & Otto, 2011)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1762] "Subscales: Courage; Temperance; Prudence; Justice; Humanity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1763] "Subscales: Assimilation; Miseducation; Self-Hatred; Anti-Dominant; Ethnocentricity; Multiculturalist Inclusive; Ethnic-Racial Salience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1764] "Factors: Food preparation skills; Resilience and resistance; Healthy snack styles; Social and conscious eating; Examining Food Labels; Daily food planning; Healthy budgeting; Healthy food stockpiling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1765] "Factors: Holistic care; Communication modes; Professional behaviours; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1766] "Subscales: Self-blame; Acceptance; Rumination; Positive refocusing; Refocus on planning; Positive reappraisal; Putting into perspective; Catastrophizing; Blaming others. Factors: Adaptive; Less adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1767] "Factors: Abnegation; Difficulty receiving affection; Fear of singleness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1768] "Dimensions: (I) Actions carried out to give orientations; (II) Difficulties following guidelines; (III) Personal style of the professional when giving guidance; (IV) Guidelines for training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1769] "Dimensions: Students' Capabilities (Critical thinking; Creative thinking; Self-managed learning; Adaptability; Problem solving; Interpersonal skills; Communication skills); Teaching-learning Environment (Active learning; Teaching for understanding; Assessment; Coherence of curriculum; Teacher-students relationship; Feedback to assist learning; Relationship with other students; Cooperative learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1770] "Factors: Self-efficacy; Hope; Resilience; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1771] "Factors: Aloof; Pragmatic; Rigid."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1772] "Factors: Attitude; Threat; Benefit; Esteem; Cheating; Legitimacy; Reference group; Stress; Susceptibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1773] "Factors: Present satisfaction; Past satisfaction; Future satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1774] "Subscales: Static sitting balance; Dynamic sitting balance; Coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1775] "Factors: Spiritual; Attachment; Survival; Mastery. Subscales: Ultimate Gains; Supported Strivings; Interpersonal Bonding; Trust Experiences; Fear Reduction; Liberation Experiences; Interpersonal Assurance; Spiritual Inspiration; Spiritual Presence; Spiritual Assurance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1776] "Factors: Attached Mastery; Personalized Mastery; Basic Trust; Attached Survival; Self-generated Survival; Spirituality. Subscales: Ultimate Ends; Supported Mastery; Basic Trust; Openness; Personal Terror Management; Social Terror Management; Positive Future; Spiritual Empowerment; Benign Universe; Spiritual Openness; Mystical Experience; Spiritual Terror-Management; Symbolic Immortality; Spiritual Integrity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1777] "Subscales: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1778] "Factors: Shared treatment information and decision-making; Patient–physician contact; Discussion of the impact of pain and treatment on work, rehabilitation, and daily activities; One contact person for the patient; Treatment outcome; Received pain questionnaire; Waiting list."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1779] "Subscales: Heart; Nutrition; Exercise/physical activity; Medication; Work/vocational/social; Stress/psychological factors; General/social concerns; Emergency/safety; Diagnosis and treatment; Risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1780] "Subscales: The heart; Nutrition; Exercise/physical activity; Medication; Work/vocational/social; Stress/psychological factors; General/social concerns; Emergency/safety; Diagnosis and treatment; Risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1781] "Factors: External Driving Environment (EDE); Internal Driving Environment (IDE)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1782] "Factors: Anticipatory Anxiety (AA); School-based performance Anxiety (SA); Generalized Anxiety (GA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1783] "Factors: Spirituality; Support/empowerment; Liberation/trust; Personal mastery. Subscales: Ultimate gains; Supported strivings; Interpersonal bonding; Trust experiences; Fear reduction; Liberation experiences; Interpersonal assurance; Spiritual inspiration; Spiritual presence; Spiritual assurance; Nonspiritual hope; Spiritual hope; Total hope."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1784] "Subscales: Cannabis use; Subjective norms; Self-efficacy towards non-use; Intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1785] "Factors: numeric; symbolic; spatial; ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1786] "Subscales: Owner-worry; Dog-anxiety; Dog-joy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1787] "Subscales: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1788] "Scales: Extraversion; Agreeableness; Neuroticism; Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1789] "Subscales: Social Comparison; Social Ineptness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1790] "Factors: Instructional strategies; Classroom management; Student engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1791] "Dimensions: Business Analytics (BA) capabilities; Information quality; Innovative capability; Firm agility; Technological turbulence; Market turbulence; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1792] "Dimensions (Sub-Constructs): (1) identity multiplicity; (2) cultural hybridity, (3) boundary spanning; (4) network expansion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1793] "Factors: Positive reappraisal and personal growth (PRG); Lowering of aspirations and acceptance (LAA); Downward comparison (DCO); Reorientation (REO); Detachment from goal (DET)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1794] "Factors: Cannot Cope Alone; Need to Escape from Others; Consumed in Intolerable Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1795] "Subscales: Energy; Neuroticism; Affection; Conscientiousness; Intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1796] "Subscales: Control during movement; Fine motor/Handwriting; General coordination"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1797] "Factors: Externalizing; Internalizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1798] "Factors: Cognitive; Emotional; Social; Metacognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1799] "Subscales: Supporting Good Behavior; Setting Limits; Proactive Parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1800] "Factors (higher-order): Learning goal orientation; Performance approach goal orientation; Performance avoidance goal orientation; Work avoidance goal orientation. Factors (lower-order): Pedagogical; Content; Pedagogical-content; Approach-Colleagues; Approach-Principal; Approach-Students; Approach-Self; Avoidance-Colleagues; Avoidance-Principal; Avoidance-Students; Avoidance-Self; Work avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1801] "Subscales: Confidence to Care; Doubts and Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1802] "Subscales: Learning goal orientation; Performance approach goal orientation; Performance avoidance goal orientation; Work avoidance goal orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1803] "Factors: Actual or potential injuries; Self-harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1804] "Factors: Observing; Describing; Acting with Awareness; Non-judging of inner experience; Non-reactivity to inner experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1805] "Facets: Observing; Describing; Acting with Awareness; Non-judging of internal experience; Non-reactivity to internal experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1806] "Factors: Adaptive; Less adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1807] "Subscales: Attachment; Mastery; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1808] "Factors: Intolerance of uncertainty (IU); Negative problem orientation (NPO); Cognitive avoidance (CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1809] "Latent Dimensions: relational closeness; anthropomorphic autonomy; critical concern; sense of control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1810] "Subscales: Universality; Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1811] "Factors: General episodic memory; retrospective memory; prospective memory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1812] "Subscales: Information; Friendship; Influence; Entertainment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1813] "Subscales: Craving; Tolerance; Abstinence; Lack of Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1814] "Subscales: Cybervictimization; Cyberaggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1815] "Factors: Integration and needs satisfaction; membership status; influence; shared emotional relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1816] "Subscales: Mother Helpless; Mother Frightened; Child Frightened; Child Cheers Mothers; Child Caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1817] "Subscales: Fame; Wealth; Image; Personal growth; Relationships; Community; Intrinsic aspirations subscales; Extrinsic aspirations subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1818] "Factors: General Physical Activity (PA); Work-Related Activities (W)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1819] "Factors/Dimensions: Teamwork preparation (Mission analysis; Goal specification; Action planning); Execution (Coordination; Cooperation; Communication); Evaluation (Performance monitoring; Systems monitoring); Adjustment (Problem-solving; Innovation; Intrateam coaching; Backing up); Management of team maintenance (MTM) (Integrative conflict management; Psychological support)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1820] "Subscales: Anxiety; Enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1821] "Subscales: Intimate others; Social others; Belonging and affiliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1822] "Subscales: Importance; Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1823] "Factors: Intensity; Imagery; Intrusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1824] "Factors: Psychoticism; Extraversion; Neuroticism; Lie."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1825] "Subscales: Modeling; Logistical support; Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1826] "Subscales: Concerns about health; Concerns about recovery; Concerns about procedures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1827] "Subscales: Digitization; Flexibility; Dissolution; Participation; Relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1828] "Factors: Affection-Motivation; Confidence; Usefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1829] "Factors: social acceptance; negative emotions; school satisfaction; self-assessment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1830] "Factors: Depression/Hopelessness; Suicidal intention/ideation; Social isolation; Lack of family support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1831] "Subscales: Operational Skills; Instructional Usage; Informational Skills; General Usage; Strategic Skills; Exogenous Motivation; Endogenous Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1832] "Subscales: Self-Oriented Performance Perfectionism; Socially Prescribed Performance Perfectionism; Other-Oriented Performance Perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1833] "Subscales: Anger; Fear; Sadness. Factors: Supportive Strategies; Unsupportive Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1834] "Subscales: Generic HRQL; Fatigue; Pain; Sexual function/satisfaction; Bladder function; Bowel function; Visual function; Cognitive function; Emotional status; Social relationships and support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1835] "Factors: Negative Consequences; Positive Reinforcement; Negative Reinforcement Appetite/Weight Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1836] "Subscales: Unusual perceptions; Unusual salience/reality monitoring; unusual beliefs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1837] "Subscales: Behavioural approach system (BAS); Fight, flight and freeze system (FFFS); Behavioural inhibition system (BIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1838] "Factors: Core Characteristic of repetitive negative thinking; Unproductivity of repetitive negative thinking; Mental Capacity Captured by repetitive negative thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1839] "Factors: Preferences Scale (PS); Strength of preference (SOP); Time awareness (TA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1840] "Factors: Passive outsider online; Defender of the cybervictim online; Reinforcer of the cyberbully online; Passive face-to-face outsider; Face-to-face defender of the cybervictim; and Face-to-face reinforcer of the cyberbully."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1841] "Subscales: Sensitivity; Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1842] "Factor 1: relatively light activities of daily living. Factor 2: sport-related and strenuous activities for the knee."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1843] "Subscales: working conditions (7 items); psychosocial factors in the workplace (5 items); opportunities for training and development (2 items); compensation and rewards (5 items); job satisfaction and job security (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1844] "Factors: Tension and Discomfort; Embarrassment; Sexual and Reproductive Consequences; Health Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1845] "Subscales: General; Specific."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1846] "Factors: Alcohol consumption; Drinking behavior/Alcohol-related problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1847] "Subscales: Saving; Acquisition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1848] "Subscales: Corporate environmental sustainability strategy; corporate social sustainability strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1849] "Subscales: Cognitive-affective appraisal; Situational precondition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1850] "Subscales: Work; Home; Social; Health; Finance; Academic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1851] "Factors: Rigidity/flexibility of sleeping habits (Factor 'R'); Ability/inability to overcome drowsiness (Factor 'V'); Morningness/eveningness (Factor 'M'). Subscales: Inability to sleep at unusual times ('R' subfactor 1); Preference for regular sleeping times ('R' subfactor 4); Relatively low level of drowsiness after reduced sleep ('V' subfactor 3); Ability to overcome drowsiness when necessary ('V' subfactor 5); To feel livelier and to prefer working, at 'normal' times of day ('M' subfactor 6); To find it easy to get up early in the morning ('M' subfactor 7)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1852] "Subscales: Skills; Emotion; Performance; Interaction; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1853] "Subscales: Teacher Support; Positive Student Affiliation; Negative Student Interactions; Unstructured Classroom Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1854] "Subscales: trauma related stressors, social stressors, familial stressors, emotional stressors and personal stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1855] "Subscales: Values/Ethics for Interprofessional Practice (VE), Roles and Responsibilities (RR), Interprofessional Communication (IC), and Teams and Teamwork (TT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1856] "Factors: Creative Potential; Practised Creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1857] "Subscales: Idealistic distortion; Marital satisfaction; Personality issues; Communication; Conflict resolution; Financial management; Leisure activities; Sexual relationship; Children and parenting; Family and friends; Equalitarian roles; Religious orientation; Marital cohesion; Marital change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1858] "Subscales: Social/Leisure; Student."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1859] "Factors: Sexual Confidence and Functioning; Cognitive-Emotional Regulation; Specific Sexual Functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1860] "Subscales: Self; Self & Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1861] "Factors: Negotiated exchange orientation (NEO); Reciprocal exchange orientation (REO); Generalized exchange orientation (GEO): Unilateral giving with an expectation of indirect reciprocation (UG); Paying it forward (PIF); Rewarding reputation (RR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1862] "Factors: Perceived coercion; External pressure; Choice expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1863] "Factors: Competence; Suspicion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1864] "Factors: Sense of Mastery; Sense of Relatedness; Emotional Reactivity. Subscales: Optimism subscale (Mastery); Adaptability subscale (Mastery); Self-Efficacy subscale (Mastery); Comfort subscale (Relatedness); Trust subscale (Relatedness); Tolerance subscale (Relatedness); Support subscale (Relatedness); Recovery subscale (Reactivity); Sensitivity subscale (Reactivity); Impairment subscale (Reactivity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1865] "Factors: Academic achievement of mainstream students; Social benefits for mainstream students; Academic achievement of students with SEN; Social benefits for students with SEN."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1866] "Subscales: Private Religious Self-Esteem; Public Religious Self-Esteem; Importance to Religious Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1867] "Factors: Safety; Emotional risk; Neighbor-hood factors; Gun presence; Social perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1868] "Subscales: Shared Positive Views and Values; Active Engagement; Solo Parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1869] "Factors (some constructs and sub-constructs had one or two items and could not be validated through CFA): Laissez-Faire; Pressuring; Restrictive (Diet Quality); Indulgence (Permissive, Coaxing, Soothing, Pampering)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1870] "Factors: Extraversion; Verträglichkeit; Conscientiousness (Gewissenhaftigkeit); Negative Emotionality (Negative Emotionalität); Open-Mindedness (Offenheit)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1871] "Factors: Professional/specialist expertise (Berufliche Expertise/Fachliche Expertise); Labour market knowledge (Arbeitsmarktwissen); General (Allgemeine); Importance of the work/study (Wichtigkeit der Arbeit/des Studiums); Confidence (Zutrauen); Clarity (Klarheit); Development opportunities (Entwicklungsmöglichkeiten); Organisational support/support of the university (Organisationale Unterstützung/Unterstützung der Hochschule); Work challenge (Arbeitsherausforderung); Social support (Soziale Unterstützung); Networking (Netzwerken); Informing about possibilities (Informieren über Möglichkeiten); Continuous learning (Kontinuierliches Lernen)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1872] "Subscales: Pleasure; Recreation; Flow experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1873] "Factors: PDA (Factor 1, unrotated solution). Factors (rotated): Agoraphobia/Disability; Anticipatory anxiety/Assumption of organic disease; Panic attack. Subscales: Panic attacks; Phobic avoidance; Anticipatory anxiety; Disability; Worries about health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1874] "Factors: Cognitive reevaluation; Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1875] "Factors: Behavioral Control; School Cognitive Performance; Socialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1876] "Subscales: Navigation and orientation; Distance estimation; Spatial anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1877] "Factors: Relatedness support; Autonomy support; Structure before the activity; Structure during the activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1878] "Factors: Reactive Attachment Disorder; Disinhibited Social Engagement Disorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1879] "Subscales: Use; Effectiveness. Factors: Present-oriented use; Future-oriented use; Present-oriented effectiveness; Future-oriented effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1880] "Factors: Family mealtime communication; Family mealtime stress; Appearance weight control; Mealtime structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1881] "Subscales: Prohibitive Utilitarian; Prohibitive Retributive; Permissive Utilitarian; Permissive Retributive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1882] "Scales: Upper Extremity Functional Index; Lower Extremity Functional Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1883] "Sections: Somatometry (SM); Developmental behavior (DB); Developmental reactions (DR); Warning signs (WS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1884] "Subscales: Economic/occupational expectations; Academic expectations; Personal well-being expectations; Family expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1885] "Subscales: Independence; Interdependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1886] "Factors: Birth-related symptoms (BRS); General symptoms (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1887] "Subscales: Physical; Psychosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1888] "Factor structure: Unidimensional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1889] "Subscales: Retribution and Revenge; Death Penalty is a Deterrent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1890] "Dimensions: Mobility; Looking after myself; Doing usual activities; Having pain or discomfort; Feeling worried, sad, or unhappy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1891] "Factors: Work–Life-Balance; Supervision; Feedback from Supervisors; Social Structure; Organization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1892] "Subscales: Nocturnal sleep (NS); Daytime sleepiness (DS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1893] "Factors: Interventions; Leadership; Psychoeducation; Seek Input."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1894] "Eight Factors (personality dimensions): Achievement motivation; Autonomy; Innovativeness; Self-efficacy; Locus of control; Optimism; Stress tolerance; Risk taking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1895] "Factors: Communication Disturbance; Phone Obsession."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1896] "Factors: Vertical Involvement; Diagonal Interaction; Horizontal Intimacy; and Horizontal Influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1897] "Subscales: Coparenting Agreement; Coparenting Closeness; Exposure to Conflict; Coparenting Support; Coparenting Undermining; Endorse Partner Parenting; Division of Labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1898] "Subscales: Gaining attention (GA); Informing learners of the objective(s) (IO); Presenting the stimulus materials (PSM); Stimulating recall of prior knowledge (RK); Providing learning guidance (PG); Eliciting performance (EP); Getting feedback from others (FO); Getting self-feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1899] "Subscales: Solve information, communication and collaboration tasks in digital environment; Develop an information product and guide students to solve tasks in a digital environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1900] "Factors: Daytime Distress or Impairment; Insomnia Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1901] "Subscales: Information systems; Knowledge sharing; Service quality; System quality; Technological factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1902] "Subscales: Workplace values; Heteronormative assumptions; Cisnormative culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1903] "Subscales: Microinvalidations; Assumption of Pathology; Heterosexist Language; Enforcement of Binary Gender Roles; Environmental Microaggressions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1904] "Factors: Values attainment; Persistence with barriers. Major life domains: Work/Education, Relationships, Leisure, Health/Personal Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1905] "Factors: Cognitive Fusion (CF); Experiential Avoidance (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1906] "Factors: Cognitive fusion; Experiential avoidance; Inaction of behavioral ineffectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1907] "Factors: Coping; Control; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1908] "Subscales: Object control skills; Locomotor skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1909] "Subscales: Physical functioning; Social functioning; Role limitations (physical); Role limitations (emotional); Mental health; Vitality; Pain; General health; Health change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1910] "Subscales: Outness to the world; Outness to family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1911] "Factors: Cognitive Interference; Physiological Hyperarousal; Social Concerns; Task-Irrelevant Behaviors; Worry; Facilitating Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1912] "Factors: Peer Acceptance; Peer Friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1913] "Subscales: Social isolation within the classroom (SIWC); Social isolation outside school (SIOS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1914] "Subscales: Respecting parental authority; Experiencing parental control; Adopting parents’ values/beliefs; Questioning parents’ beliefs/authority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1915] "Subscales: Negative affective; Detachment; Dissocial; Disinhibition; Anankastic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1916] "Factors: Factor 1: Communicative-relational management; Factor 2: Educational action; Factor 3: Involvement in research for educational innovation; Factor 4: Work ethics; Factor 5: Design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1917] "Subscales: Negative Consequences of WhatsApp Use (NCWU); Controlling Intimate Relationships through WhatsApp (CIRW); Problematic Use of WhatsApp (PUW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1918] "Subscales: Positive Communication; Negative Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1919] "Subscales: Frequency; Difficulty. Factors: Communication; Medical Care; Role Function; Emotional Functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1920] "Subscales: Insecure Attachment, Undeserving Self-Image, and Self-Sacrificing Nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1921] "Subscales: Rigid perfectionism; Self-critical perfectionism; Narcissistic perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1922] "Factors: Recognition; Engagement; Competition; Sharing and Sociability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1923] "Factors: System to win; Superstitions; Follow and blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1924] "Factors: Passive vs. Active coping; Coping with an Oedipal conflict; Need for independence from others; Need for control; Need for others in coping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1925] "Subscales: Physiological Anxiety; Worry/Social Anxiety; Defensiveness. Factors: Worry and Social Anxiety; Physiological Anxiety; Defensiveness I; Defensiveness II."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1926] "Subscales: Physical Deprivation; Boredom Escape Smoking; Affective Deprivation; Alcohol Consumption Incidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1927] "Subscales: Autonomy support; Warmth; Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1928] "Subscales: Affirmative Active; Affirmative Passive; Negative Active; Negative Passive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1929] "Factors: Perceived benefits; Perceived self-efficacy; Perceived barriers; Perceived susceptibility; Perceived severity; Cues to action; Breast self-examination behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1930] "Factors: Descriptive norms; Injunctive norms; Instrumental attitudes; Affective attitudes; and Perceived behavioral control (PBC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1931] "Subscales: Compassion fatigue/secondary traumatic stress; Compassion satisfaction; Burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1932] "Factors: Autonomy; Environmental mastery; Personal growth; Positive relations to others; Purpose in life; Self-acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1933] "Factors: Prescriptive Beauty Norm (PBN); Body attribute standards; Attainabilty; Grooming standards"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1934] "Subscales: Ease of Excitation; Aesthetic Sensitivity; Low Sensory Threshold."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1935] "Subscales: Narcissism; Psychopathy; Machiavellianism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1936] "Factors: Superiority; Exploitativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1937] "Factors: Death-related; Moral; Food-related; Sexual; Pathogen disgust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1938] "Subscales: Mindset of emotion and behavior; Mindset of intelligence; Perseverance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1939] "Subscales: Regret for one's life; Regret for purchase; Maximization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1940] "Subscales: Self-Relatedness; Environment-Directedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1941] "Subscales: Consistency of Interest; Perseverance of Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1942] "Subscales: Belonging; Agency; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1943] "Factors: Social mastery-approach goals; Social mastery-avoidance goals; Social performance-approach goals; Social performance-avoidance goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1944] "Subscales: Internal; Chance; Health Care Professionals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1945] "Subscales: Beliefs related to drug use; Beliefs related to craving. Factors: What the person believes that he or she will not be able to do in the absence of the effect of the substance; Lack of withdrawal; Conditions required to decide to use drugs again; Consumption makes you feel good about yourself and develops your potential; Craving when faced with negative emotional states; Difficulty to deal with craving; Craving with positive emotional states or well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1946] "Subscales: Denial of Gender Identity; Misuse of Pronouns; Invasion of Bodily Privacy; Behavioral Discomfort; Denial of Societal Transphobia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1947] "Factors: Mealtime Communication Based Stress; Mealtime Structure; Appearance-Weight Control; Parental Mealtime Control; Emphasis on Mother's Weight; Present Parental Meal Influence; Traditional Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1948] "Subscales: Support; Conflict; Depth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1949] "Factors: Nearness of God; Fundamentalism-Humanitarianism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1950] "Factors: Protective Factors; Problematic Behavior; Rehabilitation Skills"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1951] "Subscales: Meal presentation; Food variety; Meal disengagement; Taste aversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1952] "Subscales: Cognitive Interference; Physiological Hyperarousal; Social Concerns; Task Irrelevant Behaviors; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1953] "Subscales: Network responsiveness; Access to collective efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1954] "Subscales: Helpful involvement; Harmful involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1955] "Factors: Management of the disease; Cognitive distress; Interpersonal distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1956] "Subscales: Relationship distress; Physical, psychological, and sexual violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1957] "Factors: Problem-focused coping; Maladaptive emotional coping; Distancing emotional coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1958] "Subscales: Interpersonal trust (trust); Interpersonal liking (liking); Similarity of business values (similar); Frequency of personal interaction (frequent)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1959] "Subscales: Discrimination; Isolation; Homesickness; Cultural shock; Guilt; Hate; Social support; Poor self image; Sad; Safety; Academic challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1960] "Subscales: Mutual Communication; Mutual Relationship; Attention and Support; Availability and Providing Comfort; Mutual Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1961] "Factors: Psychosocial impact; Physical impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1962] "Factors: Psychiatric symptoms; Interpersonal Relations; Social-role functioning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1963] "Factors: Criterion B (e.g., preoccupation with the deceased and/or circumstances of the death); Criterion C (e.g., reactive distress and/or social/identity disruption)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1964] "Support subscales: Emotional; Practical; Negative Support Experiences; Inadequacy of Support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1965] "Factors: Likelihood to develop articular and extra-articular manifestations; Likelihood to develop complications and/or comorbidities and disease severity; Likelihood to develop socioeconomic unfavorable consequences; Perception of personal responsibility to prevent and develop RA-related complications; Perception of personal control over the disease."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1966] "Factors: Foundation skills; Performance skills; Interpersonal skills; Self-talk; Mental imagery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1967] "Structure: Care/justice in peer relationships; Care/justice in intimate relationships; Care/justice in the workplace; Care/justice in family relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1968] "Subscales: Technology Knowledge (TK); Content Knowledge (CK); Pedagogical Knowledge (PK); Pedagogical Content Knowledge (PCK); Technological Pedagogical Knowledge (TPK); Technology Pedagogical Content Knowledge (TPACK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1969] "Factors: Lack of concern regarding others’ reactions; Desire to not always follow rules; Willingness to defend one’s beliefs publicly."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1970] "Factors: Emotional support; Concrete support; Role approval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1971] "Subscales: Negative Affect Reduction; Stimulation/State Enhancement; Health Risks; Taste/Sensorimotor Manipulation; Social Facilitation; Weight Control; Negative Physical Feelings; Boredom Reduction; Negative Social Impression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1972] "Factors: Thought Overactivation; Burden of Thought Overactivation; Thought Overexcitability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1973] "Factors: Loneliness; Self-regulation; Cell Phone Addiction; Technology-family conflict; Technology-work conflict; Technology-personal conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1974] "Factors: Affective dysregulation; Avoidance; Disturbances in relationships; Negative self-concept; Re-experiencing in the here and now; Sense of threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1975] "Factors: Attachment Anxiety; Attachment Avoidance; Satisfaction of the Need for Relatedness; Satisfaction of the Need for Self-Presentation; Satisfaction of the Need for Autonomy; SNS Addiction; Computer Playfulness; IT Innovativeness; Agreeableness; Conscientiousness; Extraversion; Neuroticism; Intensity of Use; Social Desirability Bias; Fashion consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1976] "Factors: Avoidant; Dependent; Obsessive– compulsive; Histrionic; Paranoid; Schizoid; Schizotypal; Antisocial; Narcissistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1977] "Factors: Fear; Obligation/Guilt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1978] "Factors: Affective-Identity Motivation to Lead; Social–Normative Motivation to Lead; Noncalculative Motivation to Lead."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1979] "Subscales: (COH-INT) Leadership commitment and support; Communications and engagement strategy; Programs and policies; Physical activity and nutrition; Psychological well-being; Participation; (COH-EXT) Organizational commitment; Charitable giving; Employee volunteerism; Public leadership"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1980] "Subscales: Concentration; Emotion; Hearing; Sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1981] "Subscales: Guilt-proneness; Shame-proneness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1982] "Factors: Nutrition; Social support; Avoiding diabetes; Physical activity; Problem solving; and Challenges related to being healthy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1983] "Factors [Direct Measure of Attitude]: Cognitive; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1984] "Factors: Meeting Expectations; Discipline; Burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1985] "Factors: Dependency/Restrictions; Changes in Social Activities; Physical Symptoms; Changes in Family Roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1986] "Scales (subscales): Burden (Physical Burden; Psychological Burden; Economic Burden; Familial; Social Burden); Benefit (Physical; Psychological; Economic; Familial; Social)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1987] "Subscales: Resistance to Framing (RtF); Recognizing Social Norms (RSN); Under/ Overconfidence (UOC); Applying Decision Rules (ADR); Consistency in Risk Perception (CRP); Resistance to Sunk Costs (RtSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1988] "Factors: Personal/Psychosocial Barriers; Program Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1989] "Subscales: Job knowledge; Acculturation to the organization; Establishing relationship; Satisfaction with learning experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1990] "Subscales: Organizational adjustment; Group adjustment; Task adjustment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1991] "Factors: Transcendence (TR); Fidelity (FI); Contribution (CO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1992] "Subscales: Transcendence; Fidelity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1993] "Factors: Contentment; Inner-Peace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1994] "Factors: Fluctuant Subjective Happiness; Long-Lasting Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1995] "Factors: Contentment; Inner Peace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1996] "Subscales: Adaptive Coping; Maladaptive Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1997] "Subscales (extended version): Value; Image; Specificity; Accuracy. Subscales (brief version): Value; Image; Specificity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1998] "Subscales: Affective; Moral; Identification with goals and values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1999] "Subscales: Separation Anxiety; Couple’s Affective Expression; Change of Plans; Fear of Loneliness; Borderline Expression; Attention seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2000] "Subscales: Motivation to relieve suffering; Affective reaction to suffering; Compassion towards animals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2001] "Subscales: Content; Support; Facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2002] "Subscales: Awareness; Motivation; Determination; Elasticity; Communication; Sociability; Endurance; Emotionality; Proactivity; Commitment; Productivity; Dynamism; Cooperativeness; Leadership; Reliability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2003] "Unidimensional Factor: Memory Ability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2004] "Subscales: Temporal lobe experience; Chemosensation; Clinical psychosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2005] "Factors: Student-centered practices from students' perception; Student-centered practices from teachers' perception; Teacher-centered practices; Self-efficacy in troubleshooting; Self-efficacy in teaching; Utility and importance of problem-solving"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2006] "Subscales: Cancer Worry; Risk Perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2007] "Subscales: Cognitive problems/fatigue; Sexuality concerns; Urogenital symptoms; Weight concerns; Nausea; Musculoskeletal symptoms; Vasomotor/arm symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2008] "Subscales: Intrinsic Motivation (IM); Integrated Regulation (INT); Identified Regulation (ID); Introjected Regulation (IJ); External Regulation (ER); Amotivation (AM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2009] "Factors: Relationship to one’s own voice; Awareness of one’s own voice; Voice and emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2010] "Subscales: Physical; Emotional; Social; Sensory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2011] "Subscales: Intellectual; Personality; Meta-skills; Job specific. Factors: Foundation skills; Core business skills; Cognitive skills; Self-management skills; Innovation and creativity; System-thinking skills; Teamwork and political skills; Communication skills; Information Technology skills; Leadership skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2012] "Subscales: Internet Addiction (AI); Videogames Addiction (AV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2013] "Subscales: Effortful control; Surgency; Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2014] "Subscales: Leadership; Total quality; Mission; Technology; Adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2015] "PISA Model Categories: information access and retrieval; interpretation and integration; reflection on and evaluation of content. Internet Scenarios: Forums; Wikipedia; Youth Web; Google."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2016] "Factors (elementary school youth): General; Optimistic future orientation; Thrift; Civic strengths. Factors (middle school youth): General; Perseverance; Respect; Leadership; Optimism; Teamwork. Factors (high school youth): General; Future orientation; Thrift; Integrity; Respect; Leadership; Optimism; Teamwork."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2017] "Factors: Egocentric; Adaptive; Pathological."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2018] "Domain Factors: Why ADS is used; Events prior to ADS use; Process of ADS use: why ADS does not work; Process of ADS use: why ADS does work; Pathways to benefits. Subscales: Social reasons for ADS use; Logistical reasons for ADS use; Events prior to ADS use; Dissatisfaction with ADS use; Problems with ADS use; Temporal issues with ADS use; Perceived quality of ADS; Engagement process in ADS; Health benefit; Memory and functional benefit of ADS; Lack of interaction problems; ADS is essential"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2019] "Factors: Concern with Performance; Self-Doubt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2020] "Factors: Beliefs about Sharing Struggles; Benefits of Sharing Illness Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2021] "Factors: Family consequences; Internal emotions; Dangerous escape; Individual consequences; Destructive assumptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2022] "Factors: Relational Decency (RD); Relational Culture (RCu); Relational Readiness (RR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2023] "Factors: Level; Benefit; Increase; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2024] "Subscales: Physical symptom distress score; Psychological symptom distress score; Global Distress Index; Total distress symptom score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2025] "Factors: Speech Characteristic of the Word (SC); Situational Difficulty (SD); Compensatory Strategies (CS); Perceived Reactions of Others (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2026] "Subscales: Physical symptom distress score (CMSAS PHYS); Psychological symptom frequency score (CMSAS PSYCH); Total symptom distress score (CMSAS SUM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2027] "Factors: Physical well-being; Emotional well-being; Social/family well-being; Relationship with M.D.; Functional well-being. Subscales: Physical symptom distress (CMSAS PHYS); Psychological distress subscale (CMSAS PSYCH); Total symptom distress (CMSAS SUM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2028] "Factors: Entrepreneurship; Leadership; Professionalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2029] "Factors: Yielding; Revenge; Verbal aggression; Malice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2030] "Factors: Learner–content interaction; Learner–instructor interaction; Learner– learner interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2031] "Factors: Work Execution; Interpersonal labor relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2032] "Factors: Emotional (EMO); Social (SOC); Physical (PHY); Academic (ACA); Creative Self-Esteem (CREA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2033] "Peer-group integration, Peer-personal intimacy, Family-group integration, and Family-personal intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2034] "Factors: General subjective financial well-being; Financial future; Money management; Having money; Peer comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2035] "Factors: Avoidance of Social Roles; Complaint; Low Self-Esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2036] "Factors: Couple bond; Family responsibility; Religion; Relationship self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2037] "Dimensions: Father’s childhood family structure; Perceived social support; Couple communication and marital satisfaction; Job stress; General stress; Masculinity; Personal control; Empathy; Role conflict/strain of being a parent; Family leave."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2038] "Factors: Working conditions and job satisfaction; Confidence to execute delegated tasks; Excessive demands associated with executing delegated tasks; Relevance of task shifting for patient care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2039] "Factors: Protective Behaviors; Problematic Behaviors; Resocialization Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2040] "Factors: Theoretical-Reflexive; Pragmatic; Individual Active; Interpersonal Active."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2041] "Factors: Support for vocational exploration; Support for vocational decision-making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2042] "Factors: Intrusion; Arousal; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2043] "Factors: Homework Absorption; Enjoy; Intrinsic Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2044] "Factors: Cooperation; Conflict; Triangulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2045] "Factors: General factor; Difficulty with change; Emotional overcontrol; Maladaptive perfectionism; Reluctance to delegate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2046] "Factors: Expectation confirmation; Perceived advantage; Aesthetic experience; Perceived enjoyment; Augmented Reality satisfaction; Attitudes toward a destination (cognitive and affective); Behavioral intention toward a destination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2047] "Factors: Benefits of Disclosure; Convenience Orientation; General Privacy Concerns; Perceived Security; Positive Emotions; Negative Emotions; Willingness to Disclose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2048] "Subscales: Attention (ATT); Interest (INT); Desires (DE); Behavioral intentions (BI); Attitude (AT); Subjective norms (SN); Perceived behavioral control (PBC); Positive anticipated emotion (PAE); Negative anticipated emotion (NAE); Frequency of past behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2049] "Factors: Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2050] "Factors: Learning about your baby; Taking care of yourself and your family; Taking care of your baby."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2051] "Subscales: Nausea; Oculomotor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2052] "Subscales: Thought overactivation; Burden of thought overactivation; Thought overexcitability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2053] "Factors: First-Order: Re-experiencing; Avoidance; Sense of Threat; Affective Dysregulation; Negative Self-concept; Disturbed Relationships. Second-Order: Posttraumatic Stress Disorder; Disturbances in Self-Organisation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2054] "Factors: Concentration; Confidence; Activation; Motivation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2055] "Factors: Social values; Personal values; Individualistic values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2056] "Factors: Brief Decisional Self-Efficacy; Coping Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2057] "Subscales: Enjoyment; Absorption; Creative thinking; Activation; Absence of negative affect; Dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2058] "Subscales: Connecting; Nostalgia; Informed; Enjoyment; Advice; Affirmation; Enhances My Life; Influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2059] "Subscales: Identity; Spirituality; Calming; Recognition or Praise from Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2060] "Dimensions: Subcultural influence; Professional relationship with inmates; Use of force; General good conduct and good officer; Professional coworker relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2061] "Constructs: Perceived susceptibility; Perceived seriousness; Perceived threat; Perceived benefit; Perceived barrier; Cues to action; Self efficacy; Adherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2062] "Subscales: Communicative responsiveness (CR)-same; Communicative responsiveness (CR)-other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2063] "Factors: Unwanted consequences; Lack of control; Negative affect; Affect regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2064] "Factors: Preference for additional visual information; Satisfaction with standard health information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2065] "Subscales: Ideal Expectations; Predicted Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2066] "Factors: Student Negotiation; Inquiry Learning; Reflective Thinking; Functional Design; Connectedness; Ease of Use; Perceived Usefulness; Multiple Sources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2067] "Subscales: Effort Expectancy; Performance Expectancy; Behavioral Intention; Use Behavior; Social Influence; Facilitating conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2068] "Factors: Relationship; Cognitive procedures; Operative and transfer procedures; Exposition; Practicing and suggestive procedures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2069] "Subscales: Self-Perception; Object Perception; Self-Regulation; Regulation of the Relationship with the Object; Internal Emotional Communication; External Emotional Communication; Internal Links; External Links."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2070] "Subscales: Anticipated criticism/rejection; Negative self-appraisals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2071] "Factors: Awareness of surroundings; Frightening experiences; Recall of experience; Satisfaction with care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2072] "Factors: Interactive solution style (Interaktiver Lösungsstil); Openness to change (Offenheit für Veränderung); Access to feelings (Zugang zu Gefühlen); Interest in understanding yourself and others (Interesse, sich selbst und andere zu verstehen)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2073] "Subscales: Reading; Movie; Activity; Lecture; Conversation; Assignment; Cooking; Cleaning up; Driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2074] "Factors: Attachment Avoidance; Attachment Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2075] "Factors: Intrapersonal characteristics (IPC); Interactive function (IAF); Health complete (HC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2076] "Subscales: Protectiveness; Worry; Vigilance; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2077] "Categories: (1) auto-aggression; (2) externalized aggression; (3) verbal aggression (4) isolation; (5) (motoric) restlessness; (6) autonomic changes; (7) emotional changes; (8) behavioral changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2078] "Subscales: Cognitive and help-seeking; Emotion control; Elaboration and practical application; Motivation control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2079] "Violation types: Harm; Purity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2080] "Conscientiousness; Agreeableness; Emotional stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2081] "Factors: Physical aggression; Verbal aggression; Anger; Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2082] "Subscales: Satisfaction with Eating (PES-Sat); Pleasure when Eating (PES-Pl)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2083] "Factors: Planning preparation; Spiritual-positive coping; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2084] "Subscales: Cognitive worry (CW); Emotionality (EM); Distraction (DT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2085] "Subscales: Dampening; Positive Rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2086] "Subscales: Self-focus; Dampening; Emotion-focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2087] "Subscales: Routine; Automaticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2088] "Subscales: Cumulative Humiliation Subscale (CHS); Fear of Humiliation Subscale (FHS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2089] "Subscales: Internalizing behavior; Externalizing behavior; Social competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2090] "Factors: Initiating and maintaining calcium intake; Initiating and maintaining exercise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2091] "Factors: Perceived Susceptibility; Perceived Severity; Perceived Benefits; Perceived Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2092] "Factors: Belief-in-self; Belief-in-others; Emotional competence; Engaged living. Subscales: Self-efficacy; Persistence; Self-awareness; Family support; Institutional support; Peer support; Cognitive reappraisal; Empathy; Self-regulation; Gratitude; Zest; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2093] "Subscales: Statistical literacy; Statistical reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2094] "Subscales: Characterological; Achievement; Interpersonal Conflict; Intimacy; Existential; Childhood; Physical; Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2095] "Subscales: Biologic health; Social and cognitive strategies; Health safeguard behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2096] "Subscales: Objective Positive (OP); Subjective Negative (SN); Objective Negative (ON); Subjective Positive (SP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2097] "Subscales: Negative affect; Self-esteem; Anxiety; Physical discomfort; Physical limitations; Self-consciousness; Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2098] "Scales: Family support; Peer support; Professional support. Subscales: Family Healthy Eating Support; Family Physical Activity Support; Family Hypocritical Control; Peer Health Eating Support; Peer Physical Activity Support; Peer Undermining; Professional Healthy Eating Support; Professional Physical Activity Support; Professional General Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2099] "Subscales: Capacity; Alliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2100] "Subscales: Departmental values; Confidence; Frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2101] "Subscales: Identification; Parasocial relationship; Post-disclosure hope; Post-disclosure fear; Severity; Susceptibility; Self-efficacy; Response efficacy; Individual behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2102] "Factors: Confidence in teaching; Motivation for teaching; Preparation to provide teaching; Preparation to lead initiatives in EOL care; Expected influences on participants."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2103] "Subscales: Pain; Stiffness; Physical Function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2104] "Subscales: Satisfaction and attention received from the partner (S); Similarity between the partners (SI); Communication between partners (CO); Couple conflicts (CF); Time available for the couple (T); Difficulties to decide to be parents (DP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2105] "Factors: Behavioral inhibition system (BIS); Behavioral activation system (BAS); Fight; Flight; Freeze."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2106] "Factors: Prevention strategy; Promotion strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2107] "Subscales: TRAP-Intensive; TRAP-Extensive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2108] "Factors: Core scales in Part I: Anxiety; Sense of dejection; Negative impact on behavior; Negative impact on sleep. Part II: Cervical cancer; Relaxed/calm; Social network; Existential values; Impulsivity; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2109] "Subscales: Leadership; Verbal hostility; Military way of thinking; Fear-Suspiciousness; Achievement motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2110] "Dimensions: Part I: Anxiety, Behavior, Dejection, Sleep, Self-blame, Focus on airway symptoms, Stigmatization, Introvert, Harm of smoking; Part II: Calm/relax, Social network, Existential values, Impulsivity, Empathy, Regretful of still smoking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2111] "Factors: Intention to Quit Employment (Intenção de Deixar o emprego); Intention to seek new job opportunities (Intenção de buscar novas oportunidades de emprego); Reflections on leaving your current job (Reflexões sobre sair do emprego atual); Job Search Behavior (Comportamento de busca de emprego)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2112] "Subscales: Religious obsessive-compulsive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2113] "Latent variables: Intrinsic motivation; Identified regulation; Introjected regulation; External regulation; Amotivation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2114] "Subscales: Perceived group diversity; Cultural acceptance and expression; Culture utilization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2115] "Variables: (a) Demographic characteristics and medical history of pregnant women; (b) Women’s knowledge about prenatal screening and diagnostic tests; (c) Women’s attitude about prenatal screening and diagnostic tests; and (d) Decision to undergo the amniocentesis test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2116] "Factors: Distributive justice; Procedural justice; Interactional justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2117] "Factors: Environment-time; Motivation-emotion management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2118] "Factors: Depth; Perseverance; Optimism; Linkage; Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2119] "Factors: Emotional Dimension; Physiological Dimension; Cognitive Dimension; Behavioral Dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2120] "Factors: Disclosure; Self-censorship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2121] "Factors: Creative Work Potential; Be My Own Boss."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2122] "Subscales: Information management (Define/access; Evaluate; Manage); Collaboration (Responsibilities; Planning; Interdependence; Knowledge sharing); Communication (Appropriateness/expressiveness; Content sharing; Contact building; Networking); Critical thinking (Refection; Justification; Novelty); Creativity; Problem-solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2123] "Scales: Self-perception; Object perception; Self-regulation; Object regulation; Communication (Internal); Communication (External); Binding Capacity to Internal Objects; Binding Capacity to External Objects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2124] "Subscales: Competency and Autonomy; Perceived Need for Cooperation; and Perception of actual Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2125] "Subscales: Team-working and collaboration; Professional identity; Professional roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2126] "Factors: Encouraging Interprofessional Interaction; Contextualizing Interprofessional Education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2127] "Subscales: Objective Positive (OP); Subjective Negative (SN); Objective Negative (ON); Subjective Positive (SP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2128] "Factors: Early Academic Skills Scale (Creative Thinking; Critical Thinking Skills; Numeracy; Early Literacy; Comprehension); Early Academic Enablers Scale(Approaches to Learning; Social and Emotional Competence; Fine Motor Skills; Gross Motor Skills; Communication)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2129] "Profiles: Intersectional Engaged (Cluster 1); Race Progressive (Cluster 2); Intersectional Aware (Cluster 3); Gender Expressive (Cluster 4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2130] "Dimensions: Inside Space; Outside Space; Variety of Stimulation; Gross-Motor Toys; Fine-Motor Toys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2131] "Factors: Observation; Questioning; Goal setting; Developmental feedback; Motivational feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2132] "Factors: Energy/Control; Thought/Emotional Avoidance; Threat; Pity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2133] "Subscales: Lack of Controllability; Preparing for the Future; Expecting the Worst; Searching for Causes/Meaning; Dwelling on the Past; Thinking Discordant with Ideal Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2134] "Factors: Impulsiveness (Impulsividad); Self-harm (Autolesión); Risk behaviors (Comportamientos de riesgo); Suicidal ideation (Ideación Suicida). Subscales: Automatic reinforcement (Reforzamiento automático); Social reinforcement (Reforzamiento social)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2135] "Subscales: Anger-in; Appeal for weapons; Suicidal ideation; Tendency to take justice into one’s own hands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2136] "Factors: Religious Needs; Need for Inner Peace; Existentialistic Needs; Actively Giving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2137] "Comfort Subscales: Physical; Spiritual; Environment; Social"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2138] "Subscales: Machiavellianism; Narcissism; Psychopathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2139] "Subscales: Minor Pain; Severe Pain; Medical Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2140] "Scales: Rationality; Experientiality. Subscales: Imagination; Intuition; Emotionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2141] "Factors: (Feedback after success) General person feedback; Domain-specific person feedback; Effort feedback; Strategy feedback; (Feedback after failure) General person feedback; Domain-specific person feedback; Effort feedback; General strategy feedback; Constructive strategy feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2142] "Factors: Presentation (SEPM-P); Moderation self-efficacy (SEPM-M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2143] "Factors: Body Concern; Thinness; Shortness; Facial Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2144] "Factors: Individual learning; Group learning; Organizational learning; Culture of organizational learning; Training; Strategic clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2145] "Factors: Negative attitudes; Psychological Consequences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2146] "Subscales: Consistency of Interests (CI); Perseverance of Effort (PE)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2147] "Factors: Obstacles; HIV test; Condom use; People with AIDS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2148] "Factors: Global School Engagement: Cognitive engagement; Behavioral engagement; Emotional engagement; Social engagement. School Disengagement: Cognitive disengagement; Behavioral disengagement; Emotional disengagement; Social disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2149] "Factors: Emotional Support; Positive Interactions; Coercive Power; Conditional Social Regard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2150] "Values: Benevolence; Self-direction; Achievement; Universalism; Conformity; Tradition; Transcendent change; Stimulation; Security; Power; Hedonism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2151] "Factor: Episodic future thinking specificity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2152] "Factors: Depression symptoms; Nondepressive symptoms; Coping ability; Positive mental health; Function in tasks; Life satisfaction; General sense of well being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2153] "Scales: Paranoid Personality Traits; Schizotypal Personality Traits; Borderline Personality Traits; Antisocial Personality Traits; Avoidant Personality Traits; Obsessive Compulsive Personality Traits; Anxiety; Depressive Mood; Bipolar; Somatization; Substance Abuse; Alcohol; Illicit Drugs; Naivete’; Inconsistency; Infrequency Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2154] "Factors: Threat; Submissiveness; (Un)valued."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2155] "Factors: Submission; Threat; Devaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2156] "Subscales: Cognitive; Informant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2157] "Factors: Hedonic; Eudaimonic. Subscales: Pleasure; Avoid; Personal Meaning; Self-Reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2158] "Factors: Intentions; Perceived Behavioral Control; Attitudes; Subjective Norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2159] "Factors: Knowledge and Workload; Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2160] "Factors: Physical aggression; Verbal aggression; Anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2161] "Factors: Conflict; Closeness; Dependence; Dominance; Rivalry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2162] "Factors: Symptoms; Quality; Dependency; Stigma; Hopelessness; Failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2163] "Factors: Characteristics of Mental Illness and Treatments; Assessment and Diagnosis Tools and Treatments; Causes and Risk Factors of Mental Illness; General Epidemiology of and Facts about Mental Health and Mental Illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2164] "Factors: [Empowering] Task Involvement; Support for Autonomy; Ego Involvement; [Disempowering] Social Support; Controlling Training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2165] "Subscales: Task-involving climate; Ego-involving climate; Autonomy-supportive climate; Controlling climate; Socially-supportive climate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2166] "Subscales: Alcohol; Gambling; Drugs; Smartphone; Internet; Videogames"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2167] "Factors: Negative emotion dysregulation; Positive emotionality. Subscales: Instability; Impulsivity; Negative emotionality; Positive emotionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2168] "Dimensions: Emotional Reactions; Judgments; Behavioral Reactions; Personal Consequences; Organizational Outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2169] "Factors: Benefit Perception; Risk Perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2170] "Subscales: Reasons for using SNSs; Dealing with SNSs; Awareness of using SNSs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2171] "Subscales: Challenge; Control; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2172] "Subscales: Sexual Shame; Sexual Pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2173] "Dimensions: Grandiosity; Vulnerability. Factors: Estime de soi contingente (Contemplative self-esteem); Fantaisies grandioses (Grandiose fantasies); Supériorité de droits (Superiority of rights); Dévalorisation (Depreciation); Dissimulation de soi (Self-concealment); Exploitation d’autrui (Exploitation of others); Autovalorisation par sacrifice de soi (Self-sacrifice by self-sacrifice)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2174] "Factors: Local Community; Hotel Employees; Hotel Guests; Owners/Investors; Natural Environment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2175] "Factors: Microskills; Dealing with difficult client behaviors; Cultural competence; Counseling Process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2176] "Factors: Positive Attitudes; Negative Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2177] "Subscales: Impulse; Self-Harm; Risk Behavior; Suicidal Ideation; Functions of NSSI. Factors: Automatic Reinforcement; Social Reinforcement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2178] "Factors: Reward Probability; Environmental Suppressor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2179] "Subscales: Thoughts of Escape (TOQS-E); Task-Irrelevant Thoughts (TOQS-I); Task-Related Worries (TOQS-W)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2180] "Factors: Dynamic structural framework; Control of workplace decisions; Fluidity in information sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2181] "Subscales: Autonomy support; Development support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2182] "Subscales: Obstacles; HIV test; Condom use; People living with AIDS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2183] "Subscales: Fit idealization (8 items); Fit overvaluation (8 items); Fit behavioral drive (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2184] "Factors: Discrepancy; Importance; Weighted Discrepancy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2185] "Factors (Subscales): Women (Internalization: Thin/Low Body Fat; Internalization: Muscular; Internalization: General Attractiveness; Pressures: Peers; Pressures: Family; Pressures: Significant Others; Pressures: Media); Men (Internalization: Thin/Low Body Fat; Internalization: Muscular; Internalization: General Attractiveness; Pressures: Family; Pressures: Media; Pressures: Peers; Pressures: Significant Others)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2186] "Subscales: Power; Achievement; Hedonism; Stimulation; Self-direction; Universalism; Benevolence; Tradition; Conformity; Security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2187] "Subscales: Perceptions and attitudes; Teaching for creativity; Self-efficacy; Barriers to creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2188] "Factors: Awareness; Distraction; Disinhibition; Emotional response; External cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2189] "Subscales: Ethical Guidance; Fairness; Integrity; Power Sharing; Role Clarification; People Orientation; Sustainability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2190] "Subscales: Instruction; Adapting Education to Individual Students’ Needs; Motivating Students; Keeping Discipline; Cooperating With Colleagues and Parents; Coping With Changes and Challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2191] "Subscales: Danger posed by others; Travel delays; Aggression from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2192] "Subscales: Perceptions of Autonomous Vehicles (AVs); Technological optimism; Use of technology in the car; Enjoyment of driving; Driving sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2193] "Subscales: Instructional assistance; Career-related modeling; Verbal encouragement; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2194] "Subscales: Verification of diagnoses; Expression of symptoms; Medication; Consequences of illness; Scanning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2195] "Subscales: Alertness; Habit; Mood; Social; Taste; Symptom Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2196] "Subscales: Verification of diagnoses; Expression of symptoms; Medication/Treatment; Illness Consequences; Body Scanning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2197] "Subscales: Student–teacher relationships; Headmaster’s involvement in school life; Student–student relationships; School satisfaction; Achievement motivation; Student–form teacher relationship; Perceived safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2198] "Subscales: Positively-worded items; Negatively-worded items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2199] "Coding Dimensions: Negative escalation; Dominance; Editing; Interactional synchrony."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2200] "Scales: Emotional Deprivation (Privación Emocional); Abandonment (Abandono); Imperfection(Imperfección); Mistrust (Desconfianza); Social Isolation (Aislamiento Social); Failure (Fracaso); Dependency (Dependencia); Vulnerability (Vulnerabilidad); Danger (Peligro); Attachment (Apego); Self-Sacrifice (Autosacrificio); Subjugation (Subyugación); Emotional Inhibition (Inhibición Emocional); Unattainable Goals (Metas inalcanzables); Insufficient Self-Control (Insuficiente Autocontrol); Grandiosity (Grandiosidad); Admiration/Search for Approval (Admiración/Búsqueda Aprobación); Pessimism (Pesimismo); Punishment (Castigo)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2201] "Subscales: Process of decision-making; Physical and psychological burden of the kidney living donation; Evaluation of medical care in the context of kidney living donation; Return to work after the donation and subjective performance; Relationship between donor and recipient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2202] "Subscales: Moral justification; Euphemistic labeling; Advantageous comparison; Displacement of responsibility; Diffusion of responsibility; Distorting consequences; Victim attribution"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2203] "Subscales: Self-awareness; Self-management and motivation; Social-awareness and prosocial behavior; Decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2204] "Subscales: Frequency-cognitive reappraisal; Frequency-expressive suppression; Efficacy-cognitive reappraisal; Efficacy-expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2205] "Subscales: Beliefs and practices; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2206] "Subscales: Other symptoms; Coping ability; Positive mental health; Functioning; Life satisfaction; General sense of well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2207] "Factors: Hyper-Feminine Drag; Gender Fluid Drag."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2208] "Subscales: Course of Medication Treatment; Identity; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2209] "Factors: Beliefs and practices; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2210] "Subscales: Commitment; Exploration in Amplitude; Ruminative Exploration; Identification with Commitment; Exploration in Depth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2211] "Subscales: Social Integration; Social Acceptance; Social Contribution; Social Actualization; Social Coherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2212] "Subscales: Emotional Abuse; Physical Abuse; Sexual Abuse; Emotional Neglect; Physical Neglect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2213] "Subscales: Social Modeling; Soothing; Enhancing Positive Affect; Perspective Taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2214] "Factors: Identity concerns; Treated differently; Blame and Judgement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2215] "Subscales: Egoistic value orientation; Altruistic value orientation; Biospheric value orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2216] "Factors: Autonomy Satisfaction; Autonomy Frustration; Relatedness Satisfaction; Relatedness Frustration; Competence Satisfaction; Competence Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2217] "Subscale: Attitude towards CT."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2218] "Subscales: Non-acceptance emotional reactions; Problems with goal-oriented behavior; Impulse control problems; Lack of emotional attention; Limited access to emotion regulation strategies; Lack of emotional clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2219] "Factors: Positive beliefs about worries (Positive Überzeugungen über Sorgen); Beliefs about uncontrollability and danger (Überzeugungen über Unkontrollierbarkeit und Gefahr); Trust in memory (Vertrauen in das Gedächtnis); Assumptions about superstition, punishment and responsibility (Annahmen über Aberglaube, Strafe und Verantwortlichkeit); Cognitive self-awareness (Kognitive Selbstaufmerksamkeit)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2220] "Subtests: Picture Analogies; Geometric Analogies; Picture Categories; Geometric Categories; Picture Sequences; Geometric Sequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2221] "Factors: Benefits of Work; Demands of the Worker Role; Motivation to Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2222] "Factors: difficulty identifying subjective feelings (DIF); difficulty describing feelings to others (DDF); externally oriented cognitive style (EOT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2223] "Subscales: Neurocognition/motivation; Social cognition/insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2224] "Subscales: Recognizing and anticipating day-to-day symptoms and challenges; Recognizing sudden/worrisome changes; Managing day-to-day symptoms and challenges; Managing sudden/worrisome changes, engaging health services, and advocating for the patient in health care situations; Understanding and managing care recipients’ medications; Practicing self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2225] "Subscales: Annoyance/distraction by background noise; Importance of sound quality; Noise Sensitivity; Avoidance of unpredictable sounds; Openness towards loud/new sounds; Preferences for warm sounds; Details of environmental sounds/music."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2226] "Subscales: Think positive; Be involved; Do things; Get informed; Make plans."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2227] "Subscales: Experience of approach; Feeling of alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2228] "Subscales: Comprehensive Pain Management Self-Efficacy; Evaluative Pain Management Self-Efficacy; Supplemental Pain Management Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2229] "Subscales: Auditory Processing (AP); Attention Control (ATT); Language (Lang)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2230] "Subscales: Financial decision avoidance; Clothing decision avoidance; Food decision avoidance; Medical decision avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2231] "Subscales: Positive Attributes; Negative Attributes; Perfectionism Attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2232] "Factors: Standards (Perfectionistic strivings); Discrepancy (Perfectionistic concerns)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2233] "Scales: Prosthesis function: Usefulness; Residual limb health; Appearance; Sounds; Mobility: Ambulation; Transfers; Psychosocial experience: Perceived responses; Frustration; Social burden; Well-Being: Well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2234] "Subscales: Self Performance and Love; Self-Collection and Approval Need; Social Approval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2235] "Subscales: Degree of political knowledge; Feelings about politics; Intentions of political behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2236] "Subscales: Favorable attitudes, Unfavorable attitudes, and Attitudes of mistrust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2237] "Subscales: Intrapersonal; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2238] "Subscales: Emotional value; Epistemic value; Health value; Prestige value; Taste/quality value; Price value; Interaction value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2239] "Subscales: Environmental resource conservation efforts (ERC); Environmental policy and training (EPT); Environmental public relation efforts (EPR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2240] "Subscales: Self-criticism; Self-reinforcement; Self-management; Social assessment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2241] "Subscales: Diabetes-related words; Numeracy and information utilization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2242] "Subscales: Ethical; Self-Behave; Others-Behave."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2243] "Subscales: PrEP stigma; Positive attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2244] "Factors: D1 (related to visual presentation, labeling, refreshment, pH, sodium content, brand, quality, safety, and price); D2 (related to sparkling water preference, consumption, and safety)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2245] "Subscales: Perceived risks; Perceived benefits; Chemophobia; Preference of natural foods; Influence of information on perception of MSG."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2246] "Subscales: Learning material; Modelling of caregiver; Fostering self-sufficiency; Regulatory activities; Family companionship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2247] "Factors: Personal/Interpersonal (Osebna/medosebna); Study (Študijska); Performance (Izvedbena); Technical/Scientific (Tehnična/znanstvena); Artistic (Umetniška)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2248] "Subscales: Suppression; Unregulated emotion; Signs of unprocessed emotions; Avoidance; Impoverished emotional experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2249] "Subscales: Skills; Social Influences; Emotion; Environmental Context and Resources; Beliefs about Consequences; Knowledge; Beliefs about Capabilities; Intentions; Reinforcement; Behavior Regulation; Memory, Attention and Decision Processes; Social/Professional Role and Identity; Goals; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2250] "Subscales: Individuals' belief that the course of CVD can be changed for the better; Perceptions of self being at risk of CVD; Perception of benefits of CVD health checks; Perception of drawbacks of CVD health checks; Preferred method for CVD prevention; Individuals' readiness to know the results of CVD health checks; Individuals' readiness to handle the outcomes following CVD health checks; External barriers; Influence by significant others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2251] "Subscales: Sensory abilities (SAB); Autonomy (AUT); Past, present, and future activities (PPF); Social participation (SOP); Death and dying (DAD); Intimacy (INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2252] "Subscales: General Body Image Anxieties; Trans-Related Body Image Anxieties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2253] "Subscales: Environmental idealized influence (EII); Environmental inspirational motivation (EIM); Environmental intellectual stimulation (EIS); Environmental individualized consideration (EIC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2254] "Subscales: Emotional regulation (ER); Self-concept (SC); Social context (SO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2255] "Factors: Happiness/Well-being; Awe/Sensuality; Disgust/Irritation; Soothing/Peacefulness; Energizing/Cooling; Sensory/Pleasure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2256] "Subscales: Patient admission; Organization and management of work; Allocation of staff; Allocation of material; Special treatments; Patient discharge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2257] "Subscales: The illness and strategies for care; Attitudes and actions toward the care recipient; Attitudes and actions toward the caregiver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2258] "Subscales: Negative beliefs; Positive beliefs; Idleness; Weight control; Family issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2259] "Factors: Neuroticism; Absorption; Orderliness; Extraversion; Insensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2260] "Subscales: Affect; Cognitive competence; Value; Difficulty; Interest; Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2261] "Subscales: Violations of traffic rules/speeding; Reckless driving/funriding; Not using seatbelts; Cautious and watchful driving; Drinking and driving; Attentiveness towards children in traffic; Driving below speed limits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2262] "Praise and Kindness; Respect for Others; Forgiveness; Social Responsiveness; Social Inclusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2263] "Subscales: Incendiary Communication; Affirmative Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2264] "Subscales: Sluggishness; Daydreaming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2265] "Subscales: Validity; Purpose; Disillusionment; Parents; Professors; Students"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2266] "Factors: Bonding Capital; Bridging Capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2267] "Subscales: Disorganization/Punitive; Mutual Hostility; Affective Caregiving; Appropriate Boundaries; Disorganization; Punitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2268] "Subscales: Physical; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2269] "Factors: Functional; Communicative; Critical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2270] "Factors: Stress of romantic relationships; Stress of getting along with others; Stress of academic future uncertainty; Stress of school/leisure conflict; Stress of daily life; Stress of parental authority and emerging autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2271] "Subscales: Physical activity; Risk reduction; Stress management; Enjoyment of life; Health responsibility; Healthy diet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2272] "Subscales: Difficulty identifying feelings and distinguishing them from the bodily sensations of emotions (DIF); Difficulty describing feelings to others (DDF); Externally oriented cognitive style of thinking (EOT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2273] "Subscales: Hypoactive; Hyperactive; Mixed; No motor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2274] "Subscales: Reliability; Intelligibility; Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2275] "Subscales: Feelings; Preparation; Disruption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2276] "Subscales: Perceived Benefits of Intrusive Behavior; Perceived Immediate Benefits of Protective Behavior; Perceived Broad Benefits of Protective Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2277] "Factors: Religious beliefs; Existential beliefs; Environmental quality of life; Psychosocial issues; Physical health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2278] "Factors: Information processing speed; Memory; Visuospatial perception; Motor control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2279] "Subscales: Separation anxiety disorder (SAD); Generalized anxiety disorder (GAD); Panic disorder (PD); Social phobia (SP); Obsessive-compulsive disorder (OCD); Major depressive disorder (MDD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2280] "Subscales: Awareness of Transgender and Intersex People Scale; Transgender Intersex Advocacy Activity Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2281] "Factors: Cognitive Jealously; Emotional Jealousy; Behavioral Jealousy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2282] "Subscales: Mobility; Activities of daily living (ADL); Eating and drinking; Communication; Emotional functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2283] "Factors: Psychological Consequences; Physical Consequences; Personal/Interpersonal Consequences; Physical Dependence; Psychological Dependence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2284] "Domains: Emotion; Nurturance; Safety; Discipline; Play; Teaching; Routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2285] "Subscales: Family functioning; Family health; Social support. Factors: Family relationships; Family strength; Family activities; Values; Knowledge; Ill-being; Activities; Well-being; Affirmation; Interactions; Concrete aids."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2286] "Factors: Attitudes; Rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2287] "Factors: Concerns; Benefits; Product Aspects; Social Aspects; Ownership Aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2288] "Scales: Customer loyalty; Sharing benefit; Symbiotic benefit; Special treatment benefit (economic); Confidence benefit; Identity‐related benefit. Factors: Loyalty; Satisfaction; Commitment (Customer loyalty)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2289] "Subscales: General problem; Obsession; Neglect and control disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2290] "Subscales: Intrusion; Avoidance-arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2291] "Subscales: Desire to use substance; Intention to use; Anticipation positive outcome; Anticipation relief dysphoria; Lack of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2292] "Subscales: Negative Appearance-Related Commentary; Positive Appearance-Related Commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2293] "Subscales: TFL-enhancing staffing; TFL-enhancing training; TFL-enhancing performance appraisal; TFL-enhancing pay; Broad job design; Information sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2294] "Subscales: Frequency; Severity; Disturbance. Factors: Psychomotor behavior; Affective symptoms; Psychosis; Sleep disorders; Eating disorders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2295] "Factors: Misconceptions; Social affective symptoms; Intervention; Etiology and performance; Related conditions and features; Self-efficacy in ASD clinical skills; Available resources; Need for ASD training; Communicating with parents about their ASD concerns (Communicating with parents)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2296] "Subscales: Communication self-efficacy and normative beliefs; Communication attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2297] "Subscales: Individual level; Team level; Organizational level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2298] "Subscales: Self-care ability to perform ADLs; Self-care ability to achieve well-being; Self-care ability to set personal goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2299] "Subscales: Interest/aptitude; Alternate preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2300] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2301] "Subscales: Desire to use cocaine; Intention and planning to use cocaine; Anticipation of positive outcome; Anticipation of relief from withdrawal or dysphoria; Lack of control over use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2302] "Factors: Mother Helpless; Mother and Child Frightened; Child Caregiving"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2303] "Subscales: Speech characteristics of the word (SC); Situational difficulty (SD); Compensatory strategies (CS); Perceived reaction of others (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2304] "Subscales: Establishing relationships; Acculturation to the company; Job knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2305] "Subscales: Mobility; Activities of daily living (ADL); Eating and drinking; Communication; Emotional functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2306] "Factors: Rigid perfectionism; Self-critical perfectionism; Narcissistic perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2307] "Factors: Academic; Self-Regulatory; Approval-Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2308] "Factors: Thrill and Adventure Seeking (TAS); Disinhibition (DIS); Experience Seeking (ES); Boredom Susceptibility (BS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2309] "Factors: Reliability: Emotional; Honesty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2310] "Factors: Q‐Factor 1 - Submissive Depression; Q‐Factor 2 - Self‐Critical Depression; Q‐Factor 3 - Dismissive Depression; Q‐Factor 4 - Needy Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2311] "Dimensions (Scales): Surgency/Extraversion (Vocal reactivity; Perceptual sensitivity; Approach; Activity level; Smiling and laughter); Negative Affectivity (Fear; Distress to limitation; Falling reactivity; Sadness); Orienting Regulation (Duration of orienting; Soothability; Low-intensity pleasure)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2312] "Factors: Prosociality; Anxiety; Depression; ADHD; Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2313] "Factors: Positive feelings; Negative feelings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2314] "Factors: Emotional problems; Academic problems; Substance use problems; Physical health problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2315] "Factors: Ability; Determination; Preparation; Unity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2316] "Factors: SDO-Dominance (SDO-D); SDO-Anti-Egalitarianism (SDO-E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2317] "Factors: Overall vision and commitment; Collaborative approach; Empowered representatives; Facilitation and support for participation; Workforce development and readiness; Impact on programs and policies; Role in program evaluation; Leading initiatives and projects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2318] "Subscales: Openness of Seeking Treatment for Emotional Problems; Value and Need in Seeking Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2319] "Subscales: Style longevity; Aesthetic perceptual ability; Creativity; Appearance importance; Authenticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2320] "Subscales: Logistics and Operations; Goals and Development; Coaching; Team and Culture; Selection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2321] "Subscales: Female-Typical Behavior; Male-Typical Behavior; Cross-Gender."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2322] "Subscales: Support and Empowerment of Youth; Attachment to the Neighborhood; Security; Social Control; Availability of Youth Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2323] "Factors: Worry about Calamitous Events; Fear of Being Alone; Fear of Abandonment; Fear of Physical Illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2324] "Subscales: Worries; Specific fears; Physiological symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2325] "Subscales: Physical Activity; Excitement; Aesthetic Appreciation; Peacefulness; Togetherness; Spiritual Engagement; Attention; Fascination; Privilege; Compassion; Reflective engagement; Connection; Autonomy; Personal Growth; Tension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2326] "Subscales: Unemotional; Callousness; Uncaring; Antisocial Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2327] "Subscales: Presence; Openness; Calmness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2328] "Subscales: SBS-Behaviour; SBS-Belief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2329] "Subscales: Gestures/requests (A); Gestures/ directing attention (B); Words/types of words (C); Words/requests for help (D); Sentences/directing attention (F); Sentences/comments about things (G); Sentences/comments about self and others (H); Sentences/activities with others (I); Sentences/teasing and sense of humor (J); Sentences/interest in words and language (K); Sentences/adapting conversation (M); Sentences/longer sentences and stories (N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2330] "Subscales: Leadership Program Management and Evaluation (LPME); Indirect Services with Parents and Teachers (ISPT); Individual and Group Counseling with Students (IGCS); Prevention Work (PW); College and Career Counseling with Students (CCCS); Administrator Role (AR); Individual Works with Students (IWS); Group Work with Students (GWS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2331] "Factors: Regulation of Task Value; Regulation of Performance Goals; Self-Consequences; Environmental Structuring; Regulation of Situational Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2332] "Factors: Night/inertia; Day/performances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2333] "Subscales: Hope; Social learning; Attachment to art therapist; Relationship-related influence; Interpersonal learning; Group cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2334] "Subscales: Guilt; Shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2335] "Factors: Motivation; Cognition; Meta-cognition; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2336] "Factors: Participation of School Decisions and Rules (Participación de las Decisiones y Normas escolares); Participation in School Events (Participación en los Eventos Escolares); Participation in School Activities (extra-academic) (Participación en las Actividades Escolares (extra-académicas)); Positive Perception of Participation (Percepción Positiva de la participación)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2337] "Subscales: Participation in school decisions and rules; Participation in school activities; Participation in school events; Positive perception of school participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2338] "Subscales: Perceived Content Validity and Opportunity to Use; Negative Personal Results; Resistance/Openness to Change; Sanctions of the Supervisor; Positive Personal Results; Motivation to Transfer; Apprentice Readiness; Transfer Effort - Performance Expectation and Performance Self-Effectiveness; Performance Orientation; Colleague and Supervisor Support; Personal Ability to Transfer; Performance and Results Expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2339] "Subscales: Recognition Expectations (REX); Vulnerable Self (VS); Self Sacrificing (SS); Approval Seeking (AS); Grandiose Self (GS); Grandiose Fantasy (GF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2340] "Subscales: Salience-tolerance; Mood modification; Withdrawal; Conflict; Relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2341] "Subscales: Altruism; Sportsmanship; Civic virtue; Conscientiousness; Courtesy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2342] "Subscales: Self-awareness; Authenticity; Community; Intimacy; Social justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2343] "Subscales: Set goals; Intensity; Persistence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2344] "Subscales: Internal Stressors; External Stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2345] "Subscales: Generally positive evaluation; Generally negative evaluation; Evaluation towards other children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2346] "Factors: External; Introjected; Autonomous."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2347] "Factors: Self-perception of body shape; Comparative perception of body image; Attitude concerning body image alteration; Severe alterations in body perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2348] "Factors: Fending Off the Problem; Negative Consequences; Negative Self-Efficacy; Positive Consequences; Habit, Pattern; Waiting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2349] "Factors: Competences in sustainable development from a societal perspective (KSD); Competences in business administration (KBA); Knowledge of sustainability management (KSM); Schematic and strategic knowledge of sustainability management (SSKSM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2350] "Factors: Positive Interaction; Conflicts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2351] "Scales: Social-contextual; Practical-Functional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2352] "Subscales: Hopeful view (HV); Fearful view (FV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2353] "Subscales: Workplace incivility; In-role job performance; Innovative job performance; Expected image gains; Expected image risks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2354] "Domains: Transportation; Daydreaming; Thinking styles; Fantasies; Dreams; Imaginative responsiveness; Imaginary friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2355] "Factors: Low coping efficacy; Negative self-beliefs; Perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2356] "Factors: Personal growth goals; Instrumental goals; Companionship goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2357] "Factors: Positive thinking (PT); Social sensitization and support (SSS); Adaptation (AD); Avoidance (AV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2358] "Factors: Leverage; Energize; Adapt; Defend."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2359] "Subscales: Perception of self; Planned future; Social competence; Structured style; Family cohesion; Social resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2360] "Factors: Management commitment; Supervisor support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2361] "Subscales: Self-connection; Commitment; Intimacy-loyalty; Passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2362] "Subscales: Thinking disorders; Perception disorders; Unusual experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2363] "Subscales: General fear avoidance; Types of activities that are avoided."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2364] "Subscales: Knowledge and Attitudes; Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2365] "Subscales: Professional influences on family focused practice; Organisational influences on family focused practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2366] "Subscales: Structural issues; Social issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2367] "Subscales: Self-esteem; Self-efficacy; Locus of control; Risk preferences; Competitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2368] "Subscales: Teamwork-Collaboration (T&C); Professional-Identity (ProID ±); Roles-Responsibilities (R&R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2369] "Factors: Modality; Agency; Interactivity; Navigability. Subfactors: Realism; Agency-enhancement; Browsing Being there; Community building; Activity; Play; Bandwagon; Responsiveness; Filtering; Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2370] "Subscales: Attitude; Intention; Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2371] "Factors: Physical; Appearance; Emotions; Cognition; Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2372] "Factors: Personalized stigma/disclosure; Negative self-image; Public attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2373] "Subscales: Personalized stigma; Disclosure; Negative self-image; Public attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2374] "Factors: Perceived Behavior; Perceived Benefit; Perceived Burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2375] "Factors: Mobility, non-motor manifestations and disability; Neuropsychological disorders; motor complications of treatment; Other complications; Parkinsonian motor signs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2376] "Subscales: Own capacity; Professional support; Perceived safety; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2377] "Subscales: Task interference; Psychological; Physical function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2378] "Factors: Withdrawal Symptoms; Salience; Social Comfort; Mood Changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2379] "Subscales: \"Rightness’’ of relationship experience; Love for partner; Being loved by partner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2380] "Factors: Technical system quality; Information quality; Service quality; Educational system quality; Support system quality; Learner quality; Instructor quality; Perceived satisfaction; Perceived usefulness; System use; Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2381] "Factors: Decision-making style; Need for gratification; Perceived ease of use; Usefulness of m-payment; Intention to adoption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2382] "Subscales: Perceive and understanding emotion (PU); Express and label emotion (EL); Manage and regulate emotion (MR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2383] "Subscales: Family Strengths (FS); Family Communication (FC); Family Difficulties (FD)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2384] "Subscales: Food refusal; Oral sensory and motor feeding problems; Picky eating; Disruptive mealtime behaviours."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2385] "Factors: Social; Coping; Reward Enhancement; Conformity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2386] "Factors: Habit formed; Loss of tracking feasibility/necessity; Design/discomfort; Motivation loss; Privacy concerns/switch to alternative; Data inaccuracy/uselessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2387] "Factors: Joyous Exploration; Deprivation Sensitivity; Stress Tolerance; Thrill Seeking; Social Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2388] "Subscales: Positive Clinician Input and Collaboration; Non-supportive Clinician Input."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2389] "Subscales: Knowledge Confidence before and after training; Practice Confidence before and after training; Perceived Barriers to Eye Care before and after training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2390] "Subscales: Social awareness; Social cognition; Social communication; Social motivation; Autistic mannerisms designating repetitive behaviors and restricted interests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2391] "Subscales: Physical exhaustion; Cognitive weariness; Emotional exhaustion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2392] "Subscales: How to identify vulvodynia; Treatments for vulvodynia; Significance of encountering patients; Significance of providing information and support to patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2393] "Subscales: Illusion of Control (IOC); Perceived Gambling Skill (PGS); Inability to Stop Gambling (ISG); Benefits of Gambling (BoG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2394] "Factors: Peer connection; School connection; Family connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2395] "Factors: Need supportive behaviors; Need thwarting behaviors; Need indifferent behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2396] "Factors: Compulsive urgency (Urgencia Compulsiva); Impulsivity by unpredicatability (Impulsividad por Imprevisión); Sensation seeking (Búsqueda de Sensaciones)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2397] "Factors: Externalization of aggression (adult version) and Experience evaluation (children’s version); Appropriate coping strategies; Pessimism; Paralysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2398] "Subscales: Betrayal; Guilt; Shame; Moral concerns; Loss of trust; Loss of meaning; Difficulty forgiving; Self-condemnation; Religious struggle; Loss of religious faith."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2399] "Subscales: Betrayal; Guilt; Shame; Moral Concerns; Religious Struggles; Loss of Religious Faith/Hope; Loss of Meaning/Purpose; Difficulty Forgiving; Loss of Trust; Self-condemnation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2400] "Subscales: Dyadic strain; Positive dyadic interaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2401] "Subscales: Behavioral intention; Self-efficacy; Normative support; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2402] "Factors: Functional Health Literacy; Communicative Health Literacy; Critical Health Literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2403] "Factors: Student Cohesiveness (SC); Teacher Support (TS); Involvement (IVO); Investigation (INV); Task Orientation (TO); Cooperation (CO); Equity (EQ)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2404] "Subscales: Motivation; Learning strategies. Factors: Intrinsic motivation; Achievement motivation; Synthesized knowledge and nursing skills; Multidimensional thinking; Effort control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2405] "Subscales: Self-focus/Maximum; Self-focus/Minimum; Other-focus/Maximum; Other-focus/Minimum."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2406] "Subscales: Depressive; Cyclothymic; Hyperthymic; Irritable; Anxious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2407] "Factors: Neuroticism; Extraversion; Openness; Conscientiousness; Agreeableness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2408] "Subscales: Price fairness; Organic food satisfaction; Trust in organic food; Purchase intentions towards organic food."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2409] "Subscales: Physical fatigue; Low energy; Mental fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2410] "Factors: Preparation; Raise Awareness; Avoidance; Enjoyable Activity; Group Attachment; Secrecy; Self-Reliance; Distancing; Rumination; Resignation; Blame"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2411] "Scales: Emotional support; Instrumental support; Informational support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2412] "Subscales: Subjective conformity; Self-confidence; Attention seeking; Mood modification; Environmental enhancement; Social competition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2413] "Subscales: Preference for Affect; Need for Cognition; Approach Behaviors; Assortment Similarity; Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2414] "Factors: Activity Engagement; Pain Willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2415] "Subscales: Positive and Negative Affect Scale (Negative affect; Positive Affect); Self‐congruity; Product quality (Cross‐category assortment; Within‐category assortment); Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2416] "Subscales: Positive and Negative Affect Scale (Negative affect; Positive Affect); Self‐congruity; Brand perceived quality; Store attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2417] "Subscales: Exploration Subscale (MGEC-E); Commitment Subscale (MGEC-C); Synthesis/Integration Subscale (MGEC-S); Gender Uncertainty Subscale (MGEC-G)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2418] "Subscales: Skills (ICCS-S); Knowledge and Beliefs (ICCS-KB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2419] "Factors: Value; Knowledge; Implementation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2420] "Subscales: Physical Needs; Psychological Needs; Respect/Self-Esteem; Information; Rehabilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2421] "Subscales: Self-directed moral injury; Other directed moral injury."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2422] "Subscales: Obsessional depersonalization/derealization; Obsessional absorption; Obsessional amnesia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2423] "Subscales: Feminist action; Protective action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2424] "Subscales: Adherence to medication; Healthy lifestyle; Cooperation; Responsibility; Support from next of kin; Sense of normality; Motivation; Results of care; Support from nurses; Support from physicians; Fear of complications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2425] "Subscales: Career Aspirations; Leadership Ability; Leadership likelihood; Characteristics of Leadership (Negative characteristics; Positive characteristics)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2426] "Scales: General Health Status; Lung; Medication; Skin; Eyes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2427] "Disciplines: Chemistry; Physics; Interdisciplinary Science; Pharmacy; Psychology; Sports Rehabilitation. Primary/Secondary Codes/Themes (with different disciplines using different combinations of codes): Identifying the information needed (IIN±); Approximation and estimations (A&E±); Algorithms (ALG±); Evaluation (EVA±); Identifying and framing the problem (IPF±); Developing a strategy (DAS±); Not distracted by the details (NDIS±); Logical and scientific approach (LSA±); Confident and no confusion (CC+/CCP–/CCA–)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2428] "Subscales: Self-Efficacy in Promoting EfS; Attitudes towards the Environment and Society; Declared Behaviour towards the Environment; Sustainability Course Contribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2429] "Factors: Intrinsic motivation; Integrated regulation; Identified regulation; Introjected regulation; External regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2430] "Subscales: Demands; No joy; Tension; Worries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2431] "Subscales: Effect evaluation measures; Process evaluation measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2432] "Subscales: Valued Action; Willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2433] "Subscales: Communication; Capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2434] "Factors: Tolerance; Intolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2435] "Factors: Collaboration; Curiosity; Creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2436] "Subscales: Positive feelings (SPANE-P); Negative feelings (SPANE-N)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2437] "Factors: Soldiering; Cyberslacking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2438] "Factors: Food Safety Beliefs; Light Product Interest; Food Taste Beliefs; Food Freshness Beliefs; General Health Interest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2439] "Willingness; Trust; Pickiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2440] "Factors: Supervisory support for the environment (PSS-E); Trust in manager; Employee environmental commitment; Non-green behavior. Subscales: Non-relational behaviors; Social nature (Non-green behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2441] "Subscales: Employees; Shareholders; Banks; Insurance companies; Clients; Suppliers; Service providers; Competitors; Media; Nongovernmental organizations; Education and research centers; Governments; International organizations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2442] "Subscales: Moral characteristics; Moral cognition; Moral role modeling; Establish moral context."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2443] "Factors: Assumption of Inferiority; Religious Stereotyping; Assumption of Non-Religiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2444] "Factors: Verbal communication; Gestures. Subscales: Imperative gestures; Declarative gestures; Types of words; Requests for help; Verbal declaratives; Questions/comments - Things; Questions/comments - People; Words in activities with people; Teasing/sense of humor; Interest in words and language; Adapting conversation; Building sentences/stories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2445] "Factors: Enrichment individual; Ethics community; Enrichment group; Experience outcomes; Ethics self; Expression verbal; Expression nonverbal; Experience process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2446] "Factors: Right to safety; Right to be informed; Right to be heard; Right to choose; Right to privacy; Right to redress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2447] "Factors: Counselling and resolving of ethical issues; Compliance with group norms; Ethics education through collective discussion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2448] "Subscales: Perceived business pressure; Perceived social pressure; Managerial focus on PES."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2449] "Subscales: Affiliative Proximity-seeking; Support-seeking Behaviours; Attachment Bond."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2450] "Subscales: Negative-activation subscale; Negative-intensity subscale; Negative-duration subscale; Positive-activation subscale; Positive-intensity subscale; Positive-duration subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2451] "Subscales: Verbal Proficiency; Aural Proficiency; Written Proficiency; Cultural Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2452] "Subscales: Student Cohesiveness; Teacher Support; Equity; Task Clarity; Responsibility for Learning; Involvement; Task Orientation; Personal Relevance; Collaboration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2453] "Subscales: Altered time perception; Self-diminishment; Connectedness; Perceived vastness; Physical sensations; Need for accommodation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2454] "Skills: education and informing; motivating; treatment statements; commitment and goals; negotiates plan; non-emotion patient-centered skills; patient-centered emotional skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2455] "Factors: External visual imagery (EVI); Internal visual imagery (IVI); Kinaesthetic imagery (KIN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2456] "Subscales: Authoritarian Submission; Authoritarian Aggression; Conventionalism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2457] "Factors: Primary care provider access; Digital health information seeking; Health behavior changes; Physical health behaviors; Dietary health behaviors; Mental well-being; Overall physical health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2458] "Subscales: Distress; Withdrawal; Reduced attendance; Degradations in performance; Extreme behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2459] "Subscales: Gratitude for a Supportive Work Environment; Gratitude for Meaningful Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2460] "Subscales: Values; Social relations; Strengths"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2461] "Subscales: Inadequate self; Hated self; Reassured self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2462] "Factors: Understanding of the research; Trust and confidence; Doubt and uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2463] "Factors: Communication Skills for Emotional Support; Confidentiality of Patient Information; Patient Care Needs Promptly; Respect for Patient’s Autonomy; Safe Environment for the Patient; Protect the Patient’s Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2464] "Subscales: Health choices; Rights; Duties; Responsibilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2465] "Subscales: Compassion and true presence; Moral responsibility; Moral integrity; Commitment to good care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2466] "Factors: Organizational commitment; Commitment to career; Involvement with work; Commitment to the union."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2467] "Factors: Organizational image and a non-competitive work environment; People-oriented organization; High participation in management and a less formal work environment; Structure and security that minimizes work setting change and ambiguity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2468] "Subscales: Human capital management; Managerial cognition; Relationship networks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2469] "Factors: Symptoms and Functioning; Preparation for Death; Spiritual Activities; Acceptance of Dying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2470] "Bundles (Factors): Performance-enhancement practices (Training and development; Contingent pay and rewards/competitive salary; Performance appraisal/Recruitment and selection; Employee-support practices (Employment security; Work-life balance; Exit management)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2471] "Subscales: Environmental concerns; Environmental beliefs; Outcome expectancy; Perceived value of money; Attitude; Subjective norms; Perceived behavioural control; Personal norms; High self-determination motivations; Low self-determination motivations; Intention; Actual behavior; Action planning; Coping planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2472] "Subscales: Blend Acceptance; Blend Assessment; Food Knowledge; Food Involvement; Cooking Habits; Food Innovativeness; Healthy Eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2473] "Factors: Pleasure/displeasure; Arousal/sleepiness. Subscales: Positive/Pleasant emotions; Negative/Unpleasant emotions; Involvement; Satisfaction; Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2474] "Subscales: Disgust (EAQ-D); Interest (EAQ-I); Feeding animals (EAQ-F)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2475] "Factors: Bladder/bowel related preoccupation; Bladder/bowel-related concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2476] "Factors: Empathy; Openness to Spirituality; Wellness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2477] "Subscales: Simplification; Regulation; Verification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2478] "Subscales: Symptoms; Activity; Impacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2479] "Subscales: Focus on own emotions and relief of stress symptoms; Focus on calming the situation and avoiding problems; Focus on active problem solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2480] "Factors: Self-doubt; Ignored bully; Indirect or passive; Problem solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2481] "Factors: Relational Transparency; Internalized Moral; Balanced Processing; Self-Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2482] "Subscales: Violations; Aggressions; Lapses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2483] "Factors: Time Perspective (TP); Agency Beliefs (AB); Openness to Alternatives (OP); Systems Perception (SP); Concern for Others (CO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2484] "Subscales: Desire to love and denial; Hate and being closed; Rejection feeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2485] "Subscales: Lack of affection (LA); Anger and rejection (AR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2486] "Subscales: Intrinsic motivation; Identified regulation; Introjected regulation; External regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2487] "Subscales: Thoughts; Autonomic Reactions; Off-Task Behaviors; Social Derogation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2488] "Subscales: Act with Awareness; Describe; Nonjudge; Nonreact; Observe."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2489] "Factors: Significant others; Family; Friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2490] "Factors: Novelty Seeking; Novelty Producing; Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2491] "Factors: Rejection of perpetrators of sexual violence; Sick people"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2492] "Factors: Core self-management; Condition knowledge; Symptom monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2493] "Factors: Knowledge; Coping; Management of condition; Adherence to treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2494] "Subscales: Satisfaction; Perceived food variety; Facility aesthetics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2495] "Factors: Personal impairment; Social impairment; Cognitive impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2496] "Subscales: Physical Environment; Teacher-Student Interactions; Peer Relationships; Teacher's Orientation towards Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2497] "Factors: nature and security; normative aspects; financial aspects related to informal work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2498] "Factors: Trying hard to learn English (THLE); Practicing a lot in order to learn English (PLE); Having goal for learning English (HGLE); Having interest in learning English (ILE)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2499] "Factors: Deterioration in Personal Life; Incompetence; Negative Work Environment; Exhaustion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2500] "Sub-Domains: Self-determination (SD); Rights (RI); Emotional wellbeing (EMO); Social inclusion (INCL); Personal development (DEV); Interpersonal relationships (RE); Material wellbeing (MAT); Physical wellbeing (PHY)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2501] "Factors: Proactive and persevering characteristics; Nursing professional identity; Passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2502] "Schema Factors: Abandonment/instability; Mistrust/abuse; Emotional deprivation; Defectiveness/shame; Social isolation/alienation; Dependence/incompetence; Vulnerability to harm or illness; Enmeshment/undeveloped; Failure; Entitlement/grandiosity; Insufficient self-control and/or self-discipline; Subjugation; Self-sacrifice; Approval-seeking/recognition seeking; Negativity/pessimism; Emotional inhibition; Unrelenting standards/ hyper-criticalness; Punitiveness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2503] "General Factor: Decent Work. Subscales: Safe working conditions; Access to healthcare; Adequate compensation; Free time and rest; Complementary values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2504] "Subscales: Realistic type; Investigative-humanities type; Investigative-science type; Artistic type; Social type; Enterprising type; Conventional type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2505] "Factors: Planning-Preparation; Avoidance; Spiritual-Positive Coping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2506] "Factors: Self-devaluation; Fear of enacted stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2507] "Factors: Loss of sex drive; Worsening of body image; Psychological coping; Discomfort during intercourse; Satisfaction with sexual relations; Satisfaction with breast reconstruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2508] "Factors: Anger; Anxiety; Boredom; Enjoyment; Hope; Hopelessness; Pride; Shame; Relief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2509] "First-order Factors: Moral justification; Euphemistic labeling; Advantageous comparison; Displacement of responsibility; Diffusion of responsibility; Distortion of consequences. Second-order Factor: Doping MD"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2510] "Categories: Lack of readiness; Lack of information; Inconsistent information. Scales: Lack of readiness; Lack of motivation; General indecisiveness; Dysfunctional beliefs; Lack of information; Lack of knowledge about the process; Lack of information about self; Lack of information about occupations; Lack of information about ways of obtaining additional information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2511] "Factors: Harm; Fairness; Ingroup; Authority; Purity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2512] "Factors: Physically and Interpersonally Safe Working Conditions; Access to Health Care; Adequate Compensation; Hours that Allow for Free Time and Rest; Organizational Values Complement Family and Social Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2513] "Subscales: Vestibular; Autonomic-Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2514] "Factors: Misperceptions about depression and its treatment; Knowledge of depression; Knowledge of treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2515] "Factors: Academic Support; Intimacy; Warmth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2516] "Factors: Personal and Interpersonal functioning; Environment; Behavior and Burden of care; Cognitive function; Somatic problems; Anxiety-Depression symptoms; Psychotic symptoms; Other psychiatric symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2517] "Factors: Role restrictive; Role preventive; Emotion function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2518] "Factors: Intention; Attitude; Hedonic eating value; Utilitarian eating value; Injunctive norm; Descriptive norm; Perceived control over behavior; Self-efficacy Consumption of functional foods (single item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2519] "Factors: Cognitive empathy; Affective empathy; Sympathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2520] "Factors: Thought and emotion regulation; Attention regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2521] "Bifactor Subscales: Real Communication Skills (RCS); Electronic Communication Skills (ECS). Factors: Sociability; Self-disclosure; Emotion decoding; Assertiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2522] "Factors: Discrimination; Prejudice; Stereotypes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2523] "Factors: Coping with cancer-related side effects; Maintaining activity and independence; Seeking and understanding medical information; Affect regulation and seeking social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2524] "Factors: Positive Cues to Action; Negative Cues to Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2525] "Factors: Salience; Mood modification; Tolerance; Withdrawal; Conflict; Relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2526] "Domains: Physical; Social; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2527] "Subscales: Contact with Diversity (CD); Multicultural Ideology (MI); Multicultural Policies and Practices (MPP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2528] "Factors: Behavioral self-disgust; Physical appearance self-disgust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2529] "Factors: Positive feelings (Spane-P); Negative feelings (Spane-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2530] "Factors: Minimization of Antibiotics and Trust in Physician Recommendations (MATPR); Avoidance of Antibiotics for Viral Infections (AAVI); Avoidance of Taking Old/Others’ Antibiotics (ATOA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2531] "Factors: Transient Violations; Mood Driving; Speeding; Fatigue; Distracted Driving; Seatbelt Usage; Close Following."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2532] "Factors: Math; Language; Attention; Executive function; Working memory; Sequential processing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2533] "Factors: Physical presence; Social presence; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2534] "Subscales: Frequency of purchase of suboptimal food products; Intention to purchase suboptimal foods; Price Consciousness; Deal Proneness; Value Consciousness; Price-Quality Schema; Prestige Sensitivity; Perceived Budget Constraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2535] "Subscales: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2536] "Subscales: Fear of getting fat; Eating-related control; Food preoccupation; Social pressure to gain weight; Vomiting-purging behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2537] "Factors: Competence; Friendliness; Online store usefulness; Online store enjoyment; Online store value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2538] "Factors: Interface Elements; Overall Interface Design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2539] "Factors: Social Comparison; Past Comparison; Personal Standards; Feedback; Feared Future; Upward Past Comparison; Upward Social Comparison; Negative Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2540] "Subscales: Positive Sentences; Positive Adjectives; Negative Sentences; Negative Adjectives"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2541] "Factors: Providing of religious support; Listening to one’s life perception; Finding of one’s value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2542] "Domain/Scales: Individual/Self (Confidence; Emotional insight; Negative cognition; Social skills; Empathy/Tolerance; Family; Connectedness; Availability; Peers); Peers (Connectedness; Availability); School (Supportive environment; Connectedness); Community (Connectedness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2543] "Subscales: High standards; Order; Discrepancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2544] "Scales (Subscales): Victim of Violence (Victim of Violence in Childhood; Victim of Violence in Adulthood); Used Violence (Used Violence as a Child; Used Violence as an Adult)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2545] "Factors: Positive Highly Processed Food Expectancies; Negative Highly Processed Food Expectancies; Positive Minimally Processed Food Expectancies; Negative Minimally Processed Food Expectancies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2546] "Factors: Autonomy; Clear Thinking; Competence; Emotional Stability; Empathy; Engagement; Meaning; Optimism; Positive Emotions; Positive Relationships; Prosocial Behavior; Resilience; Self-Acceptance; Self-Esteem; Vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2547] "Factors: Self; Services; System."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2548] "Factors: Commitment; In-depth exploration; Reconsideration of commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2549] "Subscales: Hyperactivity; Emotional symptoms; Conduct problems; Peer problems; Prosocial scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2550] "Factors: Positive metacognitions about emotional self-regulation; Positive metacognitions about cognitive self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2551] "Factors: Negative metacognitions about uncontrollability; Negative metacognitions about cognitive harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2552] "Factors: Second-Order Factor: Readiness for renewal (RnW); Lower-Order Factors: Ethical Communication (EtC); Effective Organizational Rhetoric (EfR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2553] "Second-Order Factor: Readiness for renewal. Lower-Order Factors: Ethical Communication; Effective Organizational Rhetoric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2554] "Factors: Positive Effect; Personal Image; Adverse Features; Service and Cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2555] "Factors: Cognitive; Arousal; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2556] "Factors: Procedural effort; Cognitive confusion; Time-related effort; Affective effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2557] "Factors: Setting (SET); Atmospherics (AT); Wine Quality (WQ); Wine Value (WV); Complementary Product (CP); Signage (SI); Service Staff (SS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2558] "Factors: Delegation of authority (Delegación de autoridad); Accountability (Ser informado/a); Self-directed decision making (Toma de decisiones autodirigida); Information sharing (Intercambio de información); Skill development ( Desarrollo de habilidades); Coaching for innovative performance (Entrenamiento para la innovación)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2559] "Factors: Engagement; Fear; Knowledge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2560] "Factors: Academic load; Clinical concerns; Interface worries; Personal problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2561] "Factors: Academic load; Clinical concerns; Interface worries; Personal problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2562] "Subscales: Adjusting; Concealing; Tolerating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2563] "Dimensions: Worry; Sadness; Disgust; Anger; Guilt; Cheers; Calm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2564] "Subscales: Physical; Psychological."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2565] "Factors: Contamination; Responsibility; Thoughts; Symmetry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2566] "Factors: Medication taking behavior; Attitude towards taking medications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2567] "Subscales: Usefulness; Residual limb health; Appearance; Sounds; Ambulation; Transfers; Perceived responses; Frustration; Social burden; Well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2568] "Subscales: Moderate intensity; Vigorous intensity; Affective component; Cognitive component."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2569] "Factors: Reward; Punish; Neglect; Override; Magnify. Subscales: Sadness; Anger; Fear; Overjoy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2570] "Subscales: Object Recognition; Scene Perception; Object Recognition in Context; Silhouettes; Full Line Drawings; Fragmented Outlines; Object in Noise; Unconventional Viewpoints; Coherent Motion Perception; Kinetic Object Segmentation; Biological Motion; Overlapping Figures; Embedded Figures; Missing Parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2571] "Subscales: Contamination; Responsibility for Harm; Unacceptable thoughts; Symmetry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2572] "Subscales: Independence; Emotion; Social inclusion; Social exclusion; Physical Limitation; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2573] "Factors: Avoidance and social concerns; Concerns about weight gain; Concerns about the future; Concerns about physical appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2574] "Subscales: Knowledge and myths about child sex offenders; Affect-based judgments about child sex offenders; Attitudes toward treatment; Attitudes toward sentencing and management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2575] "Subscales: Aggressive/Disruptive Behavior; Anhedonia Rating; Anxiety; Caregiver Distress; Communication; Cognitive Functioning; Depressive Symptoms; Distractibility/Hyperactivity; Peer Conflict; Sleep Difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2576] "Subscales: Obsession; Neglect; Control Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2577] "Scales: Autonomy-oriented help; Dependency-oriented help; Preference for autonomy-oriented over dependency-oriented help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2578] "Subscales: Obsession; Neglect; Control Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2579] "Subscales: Heightened Visual Sensitivity and Discomfort (HVSD); Aura-like Hallucinatory Experience (AHE); Distorted Visual Perception (DVP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2580] "Domains: Emotional (6 questions, maximum score 12); Personal and Social Life (10 questions, maximum score 20)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2581] "Subscales: Appropriate recognition skill; Inappropriate recognition skill; Say skill; Do skill; Tell skill; Reporting skill; Personal safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2582] "Subscales: General health perception; Pain; Physical functioning; Role functioning; Social functioning; Energy/fatigue; Mental health; Health distress; Cognitive functioning; Quality of life; Health transition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2583] "Subscales: Pain (P); Physical functioning (PF); Role functioning (RF); Social functioning (SF); Mental health (MH); Energy/Fatigue (EF); Health distress (HD); Cognitive functioning (CF); Quality of life (QL); Health transition (HT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2584] "Factors: Controlling Involvement; Autonomy Supportive Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2585] "Subscales: Impression Management; Leader–member Exchange; Coworker Exchange; Customer–Employee Exchange; Conscientiousness; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2586] "Subscales: Individual Responsibility; Systems Responsibility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2587] "Factors: Parenting; Genetics; Supernatural; Medical/Chemical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2588] "Factors: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2589] "Subscales: Goal-directedness; Personal meaning; Beyond-the-self orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2590] "Factors: Cognitive Benefit; Social Integrative Benefit; Hedonic Benefits; Product Attachment; Intention to Continuously Participate in Co-creation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2591] "Subscales: Task dimension-Stage 1; Task dimension-Stage 2; Task dimension-Stage 3; Task dimension-Stage 4; Interpersonal dimension-Stage 1; Interpersonal dimension-Stage 2; Interpersonal dimension-Stage 3; Interpersonal dimension-Stage 4."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2592] "Subscales: Individual-Confidence (self/future); Individual-Emotional insight; Individual-Negative cognition; Individual-Social skills; Individual-Empathy/Tolerance; Family-Connectedness; Family-Availability; Peers-Connectedness; Peers-Availability; School-Supportive Environment; School-Connectedness; Community-Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2593] "Subscales: Cognitive-Emotional; Behavioral Arousal; Sleep Stability; Daytime Sleep; Physiological; Sleep Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2594] "Subscales: Willingness to invest in stocks; Financial risk attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2595] "Subscales: Emotional intolerance; Demand for comfort; Entitlement; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2596] "Subscales: Personal Responsibility; Personal Transparency; Personal Answerability; Organizational Responsibility; Organizational Transparency; Organizational Answerability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2597] "Dimensions: General factor on child psychological and physical abuse; Module 1 (minor severity); Module 2 (moderate severity); Module 3 (high severity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2598] "Factors: Positivity; Appreciation; Acceptance; Insight; Independence; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2599] "Factors: Gender-related discrimination; Gender-related rejection; Gender-related victimization; Nonaffirmation of gender identity; Internalized transphobia; Negative expectation for the future; Nondisclosure; Community connectedness; Pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2600] "Factors: General Body Symptoms; Eye-Related Symptoms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2601] "Subscales: Meta-memory; Meta-concentration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2602] "Subscales: Transportation; Financial management; Work ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2603] "Factors: Transportation; Financial management; Work ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2604] "Subscales: Fulfilment of co-occupation; Positive prospects for co-occupation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2605] "Subscales: Vitality; Psychosocial feelings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2606] "Factors: Support search; Connection; Intrusiveness; Self-confidence; Fear of disappointing parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2607] "Factors: Reassuring Communication; Antagonistic Communication; Stagnating Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2608] "Domains: Energy; Family role; Language; Mobility; Mood; Personality; Self-care; Social role; Thinking; Upper extremity function; Vision; Work/productivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2609] "Factors: Supervision, follow-up and references to internal and external services; Usual or traditional measures offered; Authorization of incompletes or change in the course schedule."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2610] "Factors: Need to be consulted and recognized; Need for information and sensitization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2611] "Subscales: Burden; Food selection; Eating duration; Eating desire; Eating loss; Fear; Sleep; Fatigue; Communication; Self-image; Psychological distress; Social functioning; Role functioning; Clinical information; Treatment options; Self-care advise; Technical quality; Patient-centered quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2612] "Perception Latent Factors: Comfort; Timely performance; Accessibility; Safety. Expectation Latent Factors: Expected comfort; Expected accessibility; Expected safety; Expected timely performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2613] "Factors: Perceived usefulness (PU); Emotional support (ES); Privacy risk (PR); Financial risk (FR); Disease severity extent (DSE); Personal information disclosure (PID)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2614] "Subscales: Fears about short-term consequences of the child's epilepsy; Fears about the future development of the child and the child's epilepsy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2615] "Subscales: Privacy; Validity; Reliability; System capability; System Transparency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2616] "Factors: Anti-elitism attitudes (anti); Sovereignty (sov); Homogeneous and virtuous people (hom)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2617] "Subscales: Autonomy; Competence; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2618] "Factors: Functional Independence; Attitudinal Independence; Emotional Independence; Conflictual Independence. Subscales: Maternal subscale; Paternal subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2619] "Factors: Over conflict; Support; Self-controlled covert conflict; Externally-controlled covert conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2620] "Factors: Autonomy satisfaction; Competence satisfaction; Relatedness satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2621] "Factors: Behavioral intention; Facilitating conditions; Lean measures of system use (Frequency; Duration; Intensity of use); Rich measures of system use (Deep structure use; Cognitive absorption use); Job satisfaction; Job security; Job anxiety; Emotional exhaustion; Organizational commitment; Organizational trust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2622] "Factors: Support; Interference; Lack of engagement. Subfactors: Support-education; Support-job; Interference-education; Interference-job; Lack-education; Lack-job."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2623] "Subscales: Sexual Harassment Bystander Behavior (SHBB), Consciousness Raising (CR), Activism/Advocacy (AA), and Sexual Assault Bystander Behavior (SABB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2624] "Subscales: Saving; Prospective memory; Episodic foresight; Planning; Delay of gratification"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2625] "Subscales: Visual; Acoustic; Haptic; Olfactory; Gustatory perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2626] "Subscales: Focus of instruction; Teaching moves; Role of teacher; Role of students; Classroom environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2627] "Subscales: Daily activities; Worry; Feeding difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2628] "Factors: Expressing Emotions; Collaboration and Problem-Solving; Communication; Behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2629] "Factors: Cognitive Support; Emotional Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2630] "Factors: Confidence in Working with Fathers; Competence in Using Engagement Strategies; Perceived Effectiveness of Engagement Strategies; Frequency of Strategy Use; Organizational Practices for Father Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2631] "Factors: Cultural socialization; Adapt; Advocate; Value diversity; Promote mistrust, Educate about nativity and documentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2632] "Subscales: Collaborative learning (CL); Critical thinking (CriT); Self-directed learning (SDL); Creative thinking (CreT); Meaningful use of ICT (ICT) Problem-solving (PS)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2633] "Factors: Increasing structural job resources; Decreasing hindering job demands; Increasing social job resources; Increasing challenging job demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2634] "Factors: Increasing structural job resources (Aumento de los recursos estructurales del empleo); Decreasing hindering job demands (Disminución de las demandas del trabajo); Increasing social job resources (Aumento de los recursos sociales de em); Increasing challenging job demands (Creciente demanda de desafíos en el trabajo)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2635] "Subscales: Diagnosis; Treatment; Laboratory tests; Self-care; Complementary and alternative medicine (CAM); Psychosocial factors; Health-care providers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2636] "Subscales: Actual Norms Subscale (ANS); Perceived Norms Subscale (PNS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2637] "Subtests: Mobility; Activities of daily living; Emotional well-being; Stigma; Social support; Cognition; Communication; Bodily discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2638] "Subscales: Mobility; Activities of daily living; Emotional well-being; Stigma; Social support; Cognitions; Communication; Bodily discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2639] "Factors: Internal Dialogue; Awareness; Imagery; Positive Affect; Volition; Altered Experience; Attention; Negative Affect; Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2640] "Factors: Closeness; Co-ordination (Commitment); Complementarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2641] "Factors: Need thwarting; Need supportive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2642] "Factors: Focus on social support; Focus on religious coping; Focus on the problem; Focus on emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2643] "Subscales: Interactive control; Technical enjoyment; Frustration with technical deficiency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2644] "Subscales: Social interaction; Entertainment; Passing time; Relaxation; Escape; Information; Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2645] "Subscales: E-SWAN Panic; E-SWAN Social Anxiety; E-SWAN Depression; E-SWAN Disruptive Mood Dysregulation Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2646] "Factors: Interpersonal functions; Intrapersonal functions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2647] "Factors: Anticipated vegetarian stigma; Perceived tastiness of vegetarian dieting; Perceived financial cost of vegetarian dieting; Perceived convenience of vegetarian dieting; Familiarity with vegetarian dieting; Perceived healthfulness of vegetarian dieting; Openness to going vegetarian."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2648] "Dimensions: Social support (SS); Social adjustment (SA); Perceived environment resource (PER). Sub-dimensions: Emotional support; Informational support; Instrumental support; Social participation; Social relationship; Ego system; Built environment; Community management/service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2649] "Subscales: Devaluation of Pleasure; Pleasurable Activity Expectancies; Negative Outcomes Expectancies; Attention to Pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2650] "Factors: Social loafing intention; Social loafing attitude; Mindfulness; Moral meaningfulness; Extrinsic motivation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2651] "Subscales: Preference for tradition; Preference for gradual change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2652] "Subscales: Recognizing suffering; Understanding the universality of suffering; Feeling for the person suffering; Tolerating uncomfortable feelings; Acting or being motivated to act to alleviate suffering"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2653] "Subscales: Accommodation; Occupation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2654] "Scales: Mobility; Worries about others; Future worries; Maintaining purpose; Burden of illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2655] "Subscales: Feeling oneself through the gaze of the other and defining oneself through the evaluation of the other (GEO); Feeling oneself through objective measures (OM); Feeling extraneous from one's own body (EB); Feeling oneself through starvation (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2656] "Factors: Feel yourself through the eyes and evaluation of others (GEO factor); To feel yourself through objective measures (OM Factor); To feel foreign to your body (EB Factor); Feel yourself through food deprivation (Factor S)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2657] "Dimensions: Task characteristics; Knowledge characteristics; Social characteristics; Contextual characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2658] "Subscales: Work planning autonomy; Decision and execution autonomy; Task variety; Task significance; Task identity; Feedback from job; Job complexity; Information processing; Problem-solving; Specialization; Social support; Interdependence; Interaction outside organization; Feedback from others; Comfort at work; Physical demands; Work conditions; Equipment use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2659] "Subscales: Leadership; Communication; Strategies and Plans; Continuous Improvement; Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2660] "Subscales: Kindness; Common humanity; Mindfulness; Indifference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2661] "Subscales: Satisfaction; Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2662] "Subscales: The results indicated an acceptable model fit to the data for the six constructs, with chi-squared = 550.16 (df = 200, p < 0.01), normed chi-squared = 2.75, GFI = 0.91, CFI = 0.95 and RMSEA = 0.06."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2663] "Subscales: Autonomy satisfaction; Competence satisfaction; Relatedness satisfaction; Autonomy dissatisfaction; Competence dissatisfaction; Relatedness dissatisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2664] "Dimensions: Physical Violence; Humiliation; Sexual Violence; Mockery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2665] "Factors: Emotional participation; Behavioral participation; Information participation; Employee innovative behavior; Affective trust; Cognitive trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2666] "Subscales: Physical Violence; Sexual Violence; Accusing/Humiliating; Taunting; Oppressing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2667] "Factors: Congruence/Experiential Fluidity; Incongruence/Experiential Constriction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2668] "Domains: Drug characteristics; Duration of treatment; Constraints; Side effects; Efficacy; Global acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2669] "Factors: Persistence; Low self-centeredness; Attentional control; Enjoyment and transformation of boredom; Enjoyment and transformation of challenges; Intrinsic motivation; Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2670] "Factors: Adult Process Interference; Adult Exposure Interference (TIBS-Adult); Child Process Interference; Child Attendance Interference; Child Exposure Interference (TIBS-Child)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2671] "Factors: Monitoring and Planning (Supervisión y planificación); Confidence in Memory (Confianza en la memoria); Self-focus on Thoughts (Autofocalización en los pensamientos)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2672] "Factors: Calm; Reactive; Clear; Distracted; Kind; Critical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2673] "Subscales: Calm; Clear; Kind; Reactivity; Distraction; Criticalness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2674] "Constructs: Perception of MA use; Perception of STD/AIDS; Behaviours of MA use; High-risk sexual behaviours related to MA use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2675] "Subscales: Concern; Control; Curiosity; Confidence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2676] "Subscales: Professional Ethnocentrism (PE); Emotional Openness (EO); Ethical Risk Management Efficacy (ERME)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2677] "Factors: Teacher-driven characteristics; Cohesive social behaviors; Disruptive social behaviors; Classroom structure and layout; Classroom schedule and encouragement; Activity completion in the classroom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2678] "Factors: Being; Belonging; Becoming; System Impacts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2679] "Factors: Informativeness; Third-party endorsement; Personal relevance; Self-promotional message tone; Consistency; Transparency"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2680] "Factors: Human-to-human interaction (HHI); Human-to-information interaction (HII); Outcome expectation of health self-management competence (OHSC); Outcome expectation of social relationship (OSR); Health-related information exchange (HIE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2681] "Constructs: Power; Urgency; External Legitimacy; Internal Legitimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2682] "Domains: Sexual function and dysfunction; Fertility and reproduction; Sexuality across the lifespan; Sexual minority health; Society, culture, and behavior; Safety and prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2683] "Factors: Anxiety; Conflict; Initiation; Guilt; Infidelity; Body image; Predictability; Communication; Security; Physical affection; Hopelessness; Self-esteem; Relationship status; Normalness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2684] "Subscales: Introvertive mysticism; Extrovertive mysticism; Interpretation of mystical experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2685] "Factors: Choice counter-conformity; Unpopular choice counter-conformity; Avoidance of similarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2686] "Factors: Interoceptive urges and visceral pain; Interoceptive experiences and bodily pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2687] "Factors: Enjoyment; Pride; Anxiety; Anger; Shame; Boredom; Hopelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2688] "Subscales: Absence of Negative; Presence of Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2689] "Factors: Striving for distinction; Self-sacrifice; Refusing to accept limits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2690] "Factors: Acting with Awareness; Describe; Nonjudgment; Nonreactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2691] "Subscales: Logical Thinking; Cooperation; Algorithm; Control; Debug."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2692] "Factors: Self-determined solitude (SDS); Not self-determined solitude (NSDS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2693] "Subscales: Metacognitive; Cognitive; Motivational; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2694] "Factors: Designated gambling behavior; Designated social life; Designated personal hardship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2695] "Factors: Sleep-related disturbances caused by nightmares; Dysfunction caused by nightmares."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2696] "Factors: Motivation towards reading; Reader’s interests; Attitudes toward social reading; Perception of reading competence; Motivation towards learning or study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2697] "Factors: Cognitive engagement (CE); Affective engagement (AE); Behavioral engagement (BE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2698] "Factors: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2699] "Factors: Internalization Seller Influence Tactics (SITs); Compliance SITs; Identification SITs; Informedness; Purchase; Pre-purchase intention; Search ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2700] "Factors: Morphological production; Morphological judgment; Morphological judgment2; Morphological judgment and morphological production; Morphological judgment and morphological production of verbs; Morphological production2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2701] "Factors: Commitment to resilience; Deference to expertise; Environmental sustainability; Mindful organizing; Preoccupation with failure; Reluctance to simplify interpretations; Resources sustainability; Sensitivity to operations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2702] "Factors: Cognitive coordination; Cognitive evaluation; Thought control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2703] "Subscales: Design aesthetics; Size; Uniqueness; Purchase intention (non-users); Use behavior (users)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2704] "Factors: Cybervictimization; Cyberaggression; Cyberbystanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2705] "Subscales: Concerns about the exchange of patient medical information; Concerns related to public charge designation; Concern that HIV is a disfavored disease."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2706] "Factors: Positive affect (PA); Negative affect (NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2707] "Factors: Performance Orientation (PO); Innovation Orientation (IO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2708] "Factors: Interpersonal resentment; Third-party forgiveness; Collectivistic forgiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2709] "Subscales: Head and neck symptoms; Pain and discomfort; Sleep; Upper limb activities; Walking; Annoyance; Mood; Psychosocial functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2710] "Subscales: Stigma; Emotional wellbeing; Pain; Activities of daily living; Social/family life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2711] "Dimensions: Inbound practices; Production Practices; Outbound practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2712] "Subscales: Green human resource management (GHRM) practices; Enablers of green organizational culture (EGC); Environmental performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2713] "Sub-factors: Negative affect; Anxiety; Denial of historical reparation; Symbolic exclusion; Denial of contemporary injustice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2714] "Subscales: Family; Group; Reciprocity; Heroism; Deference; Fairness; Property"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2715] "Factors: Physical fatigue; Emotional fatigue; Cognitive fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2716] "Scales: Biospheric; Altruistic; Hedonic; Egoistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2717] "Factors: Competence perception; Competence value; Relatedness perception; Relatedness value; Autonomy perception; Autonomy value; Immediate pleasure perception; Immediate pleasure value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2718] "Subscales: School identification/peer support; Connection to teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2719] "Factors: Innovation Orientation; Performance Orientation; Exploration; Exploitation; Radical product innovation; Incremental product innovation; Speed to market; Dynamism; Munificence; Slack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2720] "Subscales: Mother; Father."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2721] "Subscales: Online learning self-efficacy (OLSE); Learner–content interaction (LCI); Learner–instructor interaction (LII); Learner–learner interaction (LLI); Student satisfaction; Perceived learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2722] "Factors: Autonomous motivation; Controlled motivation; Attitudes; Subjective Norms; Perceived Behavioural Control; Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2723] "Factors: Inviting to talk about feelings and thoughts; Caring towards health and wellbeing; Building a caring relationship; Encouraging social aspects in daily life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2724] "Factors: Inviting the patients to establish a relationship; Showing interest in the patients’ feelings, experiences and behavior; Helping the patient to establish structure and routines in everyday life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2725] "Factors: Disclosure; Solicitation; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2726] "Dimensions: Communication; Sharing; Anger; Restrictive coparenting; Facilitative coparenting; Respect; Trust; Conflict; Valuing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2727] "Factors: Management safety commitment (MSC); Supervisor safety behavior (SSB); Co-worker safety behavior (CSB); Workers' involvement (WIN); Psychological contract of safety (PCS)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2728] "Scales: Supervisor support for safety; Safety self-efficacy; Cavalier safety attitude; Safety consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2729] "Dimensions: Gross Motor; Symptoms; Fine Motor; Recreational Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2730] "Factors: Meaning; Mastery; Immersion; Autonomy; Curiosity; Ease of Control; Audiovisual appeal; Challenge; Goals and Rules; Progress feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2731] "Factors: Usefulness; Ease of use; Social influence; Facilitating conditions; Community identity; Motivational influence; Social relations; Work related; Daily activity; Communication; Collaboration; Resource/material sharing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2732] "Factors: Maintaining short-term efficiency and long-term development (SL); Conforming to and shaping collective forces in the environment (CS); Maintaining stability and flexibility (SF); Focus on shareholders and the stakeholder community (SS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2733] "Subscales: Attitude toward sciences; Intention to pursue or engage in science; Behavioral beliefs; Control beliefs; Normative beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2734] "Six-Factor Model (Sub-factors): Amotivation; External regulation; Introjected Regulation; Identified Regulation; Integrative Regulation; Intrinsic Motivation. Three-Factor Model: Autonomy Motivation; Controlled Motivation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2735] "Factors: Physical aggression; Verbal aggression; Anger; Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2736] "Subscales: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2737] "Subscales: Biological; Psychological; Social; Family/Caregiver; Health System."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2738] "Factors: Perceived Capacity; Internal Motivation; External Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2739] "Factors: Expressive Enhancement; Expressive Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2740] "Subscales: Physical Health Status; Mental Health Status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2741] "Factors: Intimidation by Partner; Intimidation by Self"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2742] "Factors: Emotionality (Emotionalität); Impulsiveness (Impulsivität); Immature personality traits/Anxious depressive symptoms and behaviors (Unreife Persönlichkeitseigenschaften/Ängstlich-depressive Symptomatik und Verhaltensweisen); Protest behavior (Protestverhalten); Difficulty concentrating /Overactivity (Konzentrationsstörungen/Überaktivität); Disorder of social adaptation (Störung der sozialen Adaptation); School Success (Schulerfolg)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2743] "Factors: Controlling and Jealous Behavior; Financial Control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2744] "Factors: Task crafting; Relational crafting; Cognitive crafting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2745] "AF-IPQ-R Subscales: Identity; Timeline; Consequences; Personal control; treatment control; Illness coherence; Timeline cyclical; Emotional representations; Triggers. AF-IPQ-R triggers scale: Emotional triggers; Health behavior triggers; Over-exertion triggers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2746] "Factors: Loss of Control; Addiction Symptoms; Functional Impairment; Hide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2747] "Factors: Enhancement; Coping (Escape); Social Motives"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2748] "Factors: Stress linked to decision making (Estrés vinculado con toma de decisiones); Stress linked with ambiguity (Estrés vinculado con ambigüedad); Stress linked with frustration and impulsiveness (Estrés vinculado con frustración e impulsividad)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2749] "Subscales: Obsessive-compulsive buying; Impulsive buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2750] "Factors: Tolerance to Frustration and Ambiguity (TA); Follow-up of Instructions and Impulsivity (TF/I); Decision Making (DM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2751] "Factors: Escapism and dysfunctional emotional coping; Withdrawal symptoms; Impairments and dysfunctional self-regulation; Dysfunctional Internet-related self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2752] "Subscales: Empowerment with respect to the family system; Empowerment with respect to the service system; Empowerment with respect to the social/political system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2753] "Subscales: Unconditional Permission to Eat; Eating for Physical Rather Than Emotional Reasons; Reliance on Hunger and Satiety Cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2754] "Subscales: Perceived susceptibility; Perceived severity; Perceived benefits; Perceived barriers; Cues to action; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2755] "Subscales: Helping others; Self-development; Organizational loyalty; Developing others; Civic virtue; Obedience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2756] "Subscales: Knowledge of laws and regulations; Knowledge of values and principles; Ethical reflection; Ethical decision-making; Ethical behavior and action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2757] "Subscales: Organizational support for ethical competence (Encouragement on ethical activity; Informing on ethical issues; Dealing with ethical issues in orientation; conversational support at the unit level); Individual support for ethical competence (Compliance with laws and regulations; Compliance with ethical values and principles; Multidisciplinary discussion of ethical issues; Support for ethics education; Peer support; Support for dealing with ethical problems; Compliance with ethics codes)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2758] "Factors: Customer loyalty; Locus of causality; Controllability; Stability; Customer satisfaction; Behavioral intentions (Attribution)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2759] "Dimensions: Mobility; Self-Care; Usual Activities; Pain/Discomfort; Anxiety/Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2760] "Factors: Authoritative; Authoritarian; Permissive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2761] "Factors: General Creativity (Usefulness; Novelty)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2762] "Factors: Illness Likelihood; Body Vigilance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2763] "Subscales: Self-concept; Parenting style; Self-awareness; Emotional regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2764] "Factors: Verbal Comprehension; Perceptual Reasoning; Working Memory; Processing Speed. Subtests: Similarities; Vocabulary; Comprehension; Information; Word Reasoning; Block Design; Picture Completion; Matrix Reasoning; Picture Concepts; Digit Span; Letter-Number Sequencing; Arithmetic; Coding; Symbol Search; Cancellation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2765] "Factors: Isolation; Professional support; Confidence; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2766] "Factors: Macro resilience of destination urban tourism; Micro resilience of destination urban tourism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2767] "Domains: Control over daily life; Personal cleanliness and comfort; Food and drink; Personal safety; Social participation and involvement; Occupation; Accommodation cleanliness and comfort; Dignity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2768] "Factors: Innovation behavior; Explicit knowledge sourcing; Transparency; Tacit knowledge sourcing; Task-efficacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2769] "Factors: Teacher-Controlled Instruction; Entity-Increment; Student-Centered Instruction; Attaining Standards"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2770] "Factors: Attitude of Holistic Affective Practice; Attitudes of Empowered Pedagogical Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2771] "Factors: Assessment; Planning; Supervision; Decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2772] "Factors: Family communication pattern; Family power structure; Family role structure; Family values; Family affective function; Family socialization function; Family health-care function; Family reproduction function; Family economic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2773] "Factors: Engagement in Health Care; Technology Approach to Health Care; Proactive Approach to Health Care; Psychological Support for Health Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2774] "Subscales: Trisyllabic Non-Words; Disyllabic Non-Words."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2775] "Factors: The alcoholic person: the work and the interpersonal relations; Etiology; Disease; The social repercussions of using/abusing alcohol; Alcoholic beverages."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2776] "Subscales: Rest-Paradigm; Activity-Paradigm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2777] "Attitudes toward work and interpersonal relationships with alcoholic persons; Attitudes toward the person with an alcohol use disorder; Attitudes toward alcohol abuse/alcoholism disorders (etiology); Attitudes toward alcoholic beverages and their use; Knowledge or adequacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2778] "Subscales: Frequency; Importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2779] "Subscales: Cognition and intention to report; Barriers to report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2780] "Factors: Service‐based psychological ownership; Music‐based psychological ownership; Investment of self; Intimate knowledge; Control of the object; Intention to switch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2781] "Subscales: Daily Activities; Treatment Barriers; Worry; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2782] "Scales: Parental Involvement; Parent-Child Relationship; Self-Efficacy in Mathematics; Intrinsic Motivation for Mathematics; Effort; Satisfaction with Learning Results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2783] "Subscales: Impairment/avoidance; Preoccupation/repetitive behaviour; Insight/distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2784] "Factors: Addiction; Loss of pleasure; Regret; Toxic mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2785] "Scales: Buprenorphine knowledge/attitude; Methadone knowledge/attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2786] "Factors: Negative reactions; Positive reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2787] "Domains: Physical; Psychological; Level of Independence; Social; Environment; Spiritual, Religious, Personal Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2788] "Factors: Physical health; Psychological health; Level of independence; Social relations; Environmental health; Spirituality/personal beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2789] "Dimensions: Biomedical cause; Fault; Control; Meaning; Effectiveness of natural treatments; Preference for partnership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2790] "Factors: Source; Nature; Instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2791] "Empowerment Subscales: Power is developed through relationships (Cognitive); Political functioning (Cognitive); Shaping ideology (Cognitive); Perceived leadership competence (Emotional); Political efficacy (Emotional); Behavioral Empowerment (Behavioral)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2792] "Subscales: Attitudes; Perceived behavioral control; Subjective norms; Behavioral intention; General treatment factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2793] "Subscales: Picture naming; Semantics; Sentence reading; Orientation; Recall and recognition; Number writing; Calculation; Broken hearts test; Trails task; Imitating meaningless gestures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2794] "Subscales: Consumer-focused coping; Problem-solving; Social support seeking; Distraction; Trivializing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2795] "Subscales: Sleep thoughts, feelings, physical sensation and behaviors; Sleep quality and patterns; Factors related to sleep disturbances; Daytime sleepiness and impact on daily functioning; Quantity of sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2796] "Subscales: Social Thermoregulation; High Temperature Sensitivity; Solitary Thermoregulation; Risk Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2797] "Factors: Object control; Locomotor skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2798] "Factors: Number skill activities; Number book activities; Number game activities; Number application activities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2799] "Factors (Subscales): Locomotion (Running; Jumping; Hopping; Leaping); Object-Control (Throwing; Catching; Bouncing; Kicking)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2800] "Subscales: Locomotion; Object Control; Active Play."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2801] "Factors: Endurance; Flexibility; Strength; Coordination; Speed; General Athleticism; Attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2802] "Subscales: She looked for it; It wasn't really a rape; There are none had no intention; She lied; He was drunk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2803] "Factor: Approach Flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2804] "Scales: Sexual Rewards and Costs Checklist; Sexual Exchanges Questionnaire; Global Measure of Sexual Satisfaction; Global Measure of Relationship Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2805] "Domains: Verbal Intimacy; Affective Intimacy; Physical Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2806] "Subdimensions: Susceptibility; Seriousness; Health Motivation; Benefits and Health Motivation; Barriers; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2807] "Factors: Perceived uncertainty; Acquisition value; e-Loyalty; Frugality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2808] "Factors: Felt accountability; Bottom-line mentality; Team service climate; Cross-selling initiative climate; Team service-sales performance. Subfactors: Sales performance; Service performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2809] "Factors: Trust; Privacy; Intention to purchase; Happiness; Anxiety; Sadness; Anger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2810] "Factors: Similarity with friends; Perceived ad value; Social network trust; Similarity with brand; Social network affect; Friend likability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2811] "Factors: Perceived complexity of psychoanalysis; Eclecticism; Psychoanalytic training; Perceived ineffectiveness of psychoanalysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2812] "Factors: Knowledge acquisition and transformation: In my organization (Acquisition et transformation des connaissances. Dans mon organization); Organizational learning support: In my organization (Soutien organisationnel à l’apprentissage. Dans mon organization); Organizational culture: In my organization (Culture organisationnelle. Dans mon organization); Learning-oriented leadership: In my organization (Leadership axé sur l’apprentissage. Dans mon organization); Strategic knowledge management and learning. In my organization (Gestion stratégiques des connaissances et apprentissages. Dans mon organisation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2813] "Factors: Network density; Network centrality; Relational social capital; Cognitive social capital; Knowledge sharing; Innovation; Performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2814] "Subscales: Injury identity composed of Social and Body part components; PTSD symptoms; Injury event; Injury-specific emotions; Injured self-image; Positive consequences; Responsibility/guilt; Coping; Time distance; Dependency; Healthy self; External attributions; Injury risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2815] "Scales: Appraisals; Action tendencies; Bodily reactions; Expressions; Subjective feelings; Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2816] "Scales: Aggression; Effortful Control; Negative Affect; Locus of Control (a/b); Callous Affect; Impulsivity; Manipulation; Egotism (a/b); Pessimism; Risk-Taking; Rule-Defiance (a/b); Cynicism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2817] "Factors: Physical fatigue; Mental fatigue; Emotional fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2818] "Factors: Relationship with my husband; Uneasiness of old age; Work-life balance; Relationship with my friends; Health concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2819] "Subscales: Family-centered care (FCC); Interprofessional care (IPC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2820] "Subscales: Positive organization; Fit and development; Positive relations with co-workers; Contribution to the organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2821] "Subscales: Extraversion; Agreeableness; Conscientiousness; Neuroticism; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2822] "Subscales: Tenderness; Sympathy; Personal distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2823] "Subscales: Care; Fairness; Loyalty; Authority; Sanctity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2824] "Factors: Calmness; Happiness; Anxiety; Sadness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2825] "Subscales: Identification of Meaning; Connection of Meaning; Realization of Meaning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2826] "Factors: Enjoyment of gambling; Harm to partner; Harm to self (Difficulty in impulse control; Cognitive-emotional dissonance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2827] "Subscales: Fear; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2828] "Factors: Sense of Mastery; Sense of Relatedness; Emotional Reactivity. Subscales: Optimism (Mastery); Adaptability (Mastery); Self-Efficacy (Mastery); Comfort (Relatedness); Trust (Relatedness); Tolerance (Relatedness); Support (Relatedness); Recovery (Reactivity); Sensitivity (Reactivity); Impairment (Reactivity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2829] "Factors: Enjoyment of gambling; Harm to partner; Harm to self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2830] "Factors: Overwhelming emotional distress; Distrust, hatred and disgust toward the other; Astonishment with the other's behavior; Efforts toward forgiving and reparation; Concealment of emotions; Effort to generate positive thoughts and to overcome"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2831] "Factors: Control; Attitude; Reciprocity; Identity; Need."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2832] "Factors: Safeguarding rights and interests; Moderating consumption; Promotion of local residents’ income; Respecting local cultures; Conserving resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2833] "Factors: Care attitudes; Perception of the family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2834] "Subscales: Regulation; Data privacy; Domain specific; Knowledge; Societal responsibility; Company responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2835] "Subscales: Fear; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2836] "Subscales: Emotional contagion (EC); Attention to others' feelings (AOF); Prosocial actions (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2837] "Subscales: Stress Experienced (SE); Women's Attributes (WA); Quality of Care (QC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2838] "Subscales: Emotional Deprivation; Abandonment; Mistrust; Isolation; Defectiveness; Failure; Dependence; Vulnerability to harm or illness; Enmeshment; Subjugation; Self–Sacrifice; Recognition-Seeking; Entitlement; Insufficient Self-Control; Unrelenting Standards; Emotional Inhibition; Negativity; Punitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2839] "Subscales: Student classroom behavior; Teacher classroom management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2840] "Subscales: Acceptance/Confidence; Comfort with Public Perception; Social Support/Voice; Body Comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2841] "Factors: Closeness; Commitment; Complementarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2842] "Subscales: Enjoyment; Social influences; Advantage over cigarettes; Health concerns; Smoker association."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2843] "Subscales: State (STARS-S); Trait (STARS-T)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2844] "Subscales: Acculturation Host; Acculturation Heritage; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2845] "Factors: Perceived media richness; Functionality; Personality trait of openness; Self-presentation; Friendship development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2846] "Subscales: Work; Well-being; Control; Concern; Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2847] "Factors: Loyalty; Autonomy Need Satisfaction; Competence Need Satisfaction; Relatedness Need Satisfaction; Self-worth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2848] "Level 1 Factors: Entrepreneur satisfaction; Entrepreneur work-life balance; Firm social responsibility; Firm reputation; Employees satisfaction; Clients satisfaction. Level 2 Factors: Entrepreneur satisfaction; Relations with the environment; Pro-social activity; Firm credibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2849] "Scales: Technical skills (Savoir-faire); Interpersonal skills (Savoir-être)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2850] "Factors: Enhancing Positive Affect; Perspective Taking; Soothing; Social Modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2851] "Subscales: Positive Problem Solving; Conflict Engagement; Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2852] "Factors: Friends and family touch (FFT); Current intimate touch (CIT); Childhood touch (ChT); Attitude to self-care (ASC); Attitude to intimate touch (AIT); Attitude to unfamiliar touch (AUT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2853] "Domains: Utility; Implementation; Display."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2854] "Subscales: Risk of Offending (ROF); Risk of Vulnerability (ROV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2855] "Factors: Sexual esteem; Sexual preoccupation; Internal sexual control; Sexual consciousness; Sexual motivation; Sexual anxiety; Sexual assertiveness; Sexual depression; External sexual control; Sexual monitoring; Fear of sexual relationships; Sexual satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2856] "Subscales: Cheating behavior; Interpersonal conflict; Intimidation impression management; Neglect; Positive affect; Creativity; Voice; Citizenship behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2857] "Factors: Supporting Independence; Family-Centered Communication; Respectful Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2858] "Factors: Remuneration; Assignment specific financial obligations; Developmental obligations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2859] "Subscales: Intercultural Interests; Compassion; Financial Interests; Primary Health Care Orientation Preferences; Challenge Seeker; Clinical Self Containment; Personal Demand Preferences; Living location; Lifestyle; Avoidance Needs; Belonging Needs; Relationship Imperatives; Spiritual Beliefs; Clinical Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2860] "Factors: Psychological contract fulfillment (Developmental; Assignment Financial Support; Remuneration); Identification with the multinational corporation (ID) (Job Satisfaction; Career Satisfaction)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2861] "Factors: Emotional risk perception; Plan creation risk perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2862] "Factors (Facets): Well-Being (Self-esteem; Optimism; Happiness; Self-motivation); Self-control (Emotion regulation; Stress management; Impulsivity; Adaptability); Emotionality (Emotion perception; Empathy; Relationships); Sociability (Assertiveness; Social awareness; Emotion management; Emotion expression)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2863] "Support Factors: Confiding/Emotional; Practical; Negative Aspects of Support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2864] "Subscales: Decision-making (UDM); Exploration (EXP); Taking action (UTA); Problem-solving (UPS); External (EXU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2865] "Domains: Pulmonary complaints; School functioning; Growth and nutrition; Exercise and locomotion; Emotional functioning and health care concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2866] "Subscales: Social discomfort (SDS); Negative self‐image (NSIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2867] "Subscales: Autonomy, Respectful Care, and Communication (ARC); Health Facility Environment (HFE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2868] "Factors: Perceived Community Focus on Sex; Perceived Community Focus on Status; Perceived Community Social Competition; Perceived Community Exclusion of Diversity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2869] "Factors: Task Characteristics; Technology Characteristics; Task-technology Fit; Complexity; Observability; Relative Advantage; Intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2870] "Factors: Deliberate (MW-D); Spontaneous (MW-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2871] "Sub-Factors: Detached awareness; Inclusive identity; Perspective taking; Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2872] "Factors: Detached awareness; Inclusive identity; Perspective taking; Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2873] "Factors: Positive Expectancy; Negative Expectancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2874] "Factors: Boundaryless mindset; Mobility preference"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2875] "Subscales: Children's self-attributions; Mothers' self-attributions; Fathers' self-attributions; Mothers' child attributions; Fathers' child attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2876] "Subscales: Reckless; Anxious; Careful; Angry; Dissociative; Distress Reduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2877] "Subscales: Negative urgency (NU); Lack of premeditation (Prem); Lack of perseverance (Pers); Sensation seeking (SS); Positive urgency (PU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2878] "Subscales: Pain Self-Efficacy (PSE); Function Self-Efficacy (FSE); Other symptoms Self-Efficacy (OSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2879] "Subscales: Residents’ attitude; Quality of care and caregivers; Resident engagement and peer relationships; Keeping in touch with people and the physical environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2880] "Factors: Health information-seeking behavior (INF); Health information privacy concerns (HIPC); Intention (INT); Trust beliefs (TRT); Risk perceptions (RSK); M‐health self‐efficacy (MHSE). Sudimensions: Collection; Secondary use; Improper access; Errors; Control; Awareness (HIPC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2881] "Subscales: Somatic symptoms; Emotional symptoms; Belief; Social stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2882] "Factors: Enduring the Pain; Managing the Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2883] "Subscales: Encounter; Participation; Support; Secure environment; Discharge; Secluded environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2884] "Factors: Self-Legitimacy; Support for Rehabilitation; Relations with Individuals in Custody; Fair Treatment by Supervisors; Relations with Colleagues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2885] "Sub-Dimensions: General anxiety and specific fear; Perfectionism and control; Social anxiety and adjustment disorder; Acute anxiety and trauma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2886] "Factors: Gross motor persistence; Cognitive persistence; Social persistent with peer; Social persistent with adult; Negative reactions to failure; General competence; Mastery pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2887] "Factors: Communication skills for teamwork; Adaptability to stressful situations at the disaster site; Practical skills for disaster response; Emergency nursing skills; Cooperation skills; Effective coping with daily stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2888] "Factors: Investment; Intimate knowledge; Control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2889] "Factors: General Criminal Thinking; Proactive Criminal Thinking; Reactive Criminal Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2890] "Factors (FCQ-T): Conscious elaboration of food cravings; Lack of control under environmental cues; Hedonic hunger; Eating to regulate emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2891] "Factors: Excitement; Concern; Sadness; Joy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2892] "Subscales: Secrecy (Verschwiegenheit); Need to Communicate (Mitteilungsbedürfnis)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2893] "Factors: Physical Health Status (PCS, 5 items); Mental Health Status (MCS, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2894] "Subscales: Extroversion (E); Neuroticism (N); Callous-Unemotionality (CU); Expressions of Anger (EA or STAXI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2895] "Factors: Parental Responsibility; Perceived Parent Weight; Perceived Child Weight; Parental Concern about Child Weight; Pressure to Eat; Monitoring; Use of Restriction; Use of Food Rewards; Asian Cultural Feeding Beliefs and Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2896] "Subscales: Believing; Bonding; Behaving; Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2897] "Subscales: Training (Practice); Competition. Factors: Goal-Setting; Emotional Control; Automaticity; Relaxation; Self-Talk; Imagery; Attentional Control; Activation; Negative Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2898] "Factors: Reactive Relational; Proactive Relational; Reactive Overt; Proactive Overt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2899] "Subscales: Maternal supportive beliefs; Maternal directive verbal interaction practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2900] "Subscales: Physical/Appearance; Social/Professional; Psychological; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2901] "Factors: Self-talk; Emotional control; Automaticity; Goal setting; Imagery; Activation; Relaxation; Attentional control; Negative thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2902] "Subscales: Dietary basic psychological needs (BN); Physical Activity basic psychological needs (BN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2903] "Subscales: Relational; Physical; Verbal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2904] "Factors: Sexual violence (Violencia sexual); Relational violence (Violencia relacional); Verbal-emotional violence (Violencia verbal emotional); Threats (Amenazas); Physical violence (Violencia física)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2905] "Subscales: Family; Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2906] "Subscales: Extent; Confidence. Factors: Oppositional behavior related to routine diabetes management; Non-compliance with insulin administration; Impact of diabetes on everyday activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2907] "Constructs: Corporate bloggers' attitude (CBATT); Corporate bloggers' subjective norm (CBSN); Corporate bloggers' perceived behavioral control (CBPBC); Corporate bloggers' stickiness to blog (CBSB); Corporate bloggers' commitment to blog (CBCB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2908] "Factors: Sales performance; Threats; Promises; Recommendations; Information exchange; Ingratiation; Inspirational appeals; Trust of the seller firm; Switching costs; Communication frequency; Industry relational norms; Perceived organizational support; Competitive psychological climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2909] "Subscales: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2910] "Subscales: Sexual solicitation; Sexualized interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2911] "Subscales: Facing the life terminal truly; Different attitudes towards death; Different beliefs about life and death; Responses to depression; Content related to cancer treatment; Life review of cancer patients; Death‐related ethical issues; To leave peacefully."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2912] "Subscales: Physical activity-related emotional support; Physical activity-related positive social control; Physical activity-related negative social control; Physical activity-related informational support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2913] "Subscales: Friendly Net Behaviors; Hostile Net Behaviors; Illegal Net Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2914] "Domains: Predictors; QRPs and Positive or Neutral Practices. Scales: Stress; Motivation; Good science leads to significant results; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2915] "Factors: Motivational; Cognitive; Emotional; Behavioral"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2916] "Subscales: Aggression; Management; Exploration; Coordination; Caretaking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2917] "Subscales: Relationship with the partner; Caring for the infant; Maternal social interactions; Establishing a new routine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2918] "Factors: Myth-based attitudes; Organizational tolerance for sexual harassment; Motivation to learn. Knowledge (dimension not included in factor analysis)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2919] "Factors: Ethical conduct; Networking; Clarifying; Recognizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2920] "Factors: Sleep; Exercise; Marijuana; Servings; Tobacco; Alcohol; Soda/Fast Food."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2921] "Factors: Community support and condom self-efficacy; Adult support; Civic engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2922] "Factors: Net Bully; Net Power; Net Importance; Net White Lie."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2923] "Factors: Emotional Awareness (EA, 6 items); Emotional Management (EM, 7 items); Social Emotional Management (SEM, 7 items); Motivational Dimension (MD, 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2924] "Dimensions: Recruiting and Selection; Training and Development; Performance Appraisal; Incentives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2925] "Single factor scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2926] "Factors: Consistent Employee Performance Management; Leader–Member Exchange; Individual Innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2927] "Factors: Recruitment; Team development; Team evaluation; Teamwork facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2928] "Factors: Team innovation; Team efficiency; Information processing; Affective team commitment; Recruitment (HR practice); Team development (HR practice); Team evaluation (HR practice); Teamwork facilitation (HR practice)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2929] "Subscales: Negative thought; Positive thought (emotional); Positive thought (cognitive)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2930] "Factors: Secure relationship; Positive model of self; Separation protest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2931] "Factors: Lionization of local foods; Opposition to long-distance food systems; and Communalization of food economies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2932] "Factors: Efficiency (Efficacité tâches); Improvement in tasks (Amélioration tâches); Effective collaboration (Collaboration groupe); Improvement in his working group (Amélioration groupe); Investment at organizational level (Investissement org)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2933] "Subscales: Assault; Manage; Journey; Care; Coordinate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2934] "Subscales: Othering (Anti-Effeminacy and Homo-Negativity); Responsibility (Dependability and Success); Control (Dominance and Toughness)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2935] "Factors: Anticipatory anxiety and physiological symptoms during speech performance; Lack of control during speech performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2936] "Subscales: Satisfaction with information and counseling; Satisfaction with communication and patient-doctor relationship; Satisfaction with organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2937] "Factors: Satisfaction with communication; Satisfaction with organization; Satisfaction with information and counseling/advice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2938] "Factors: Career goal progress; Professional ability development; Promotion speed; Remuneration growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2939] "Subscales: Control; Developmental processes; Parental guidance; Child guidance; Manipulation; Privacy; Positive emotions are valuable; Negative emotions are valuable; All emotions are dangerous; Emotions just are."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2940] "Subscales: Appearance Concern; Function and Disability; Prosthesis and Stumps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2941] "Subscales: Self-confidence; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2942] "Subscales: Health and Daily Life; Attitude and Personal Life; Helping Others; Communication and Emotions; Outside Influences and Interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2943] "Factors: Academic Efficacy; Academic Satisfaction; School Connectedness; College Gratitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2944] "Subscales: Standards; Discrepancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2945] "Subscales: Physical environment; Learning materials; Modeling; Fostering self-sufficiency; Regulatory activities; Variety of experiences; Acceptance and responsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2946] "Subscales: Distress reactions; Punitive responses; Expressive encouragement; Emotion-focused reactions; Problem-focused reactions; Minimizing responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2947] "Factors: Developing New Subject Matter Knowledge (DN-SMK); Knowing Needs and Students (KN&S); Developing New Pedagogical Content Knowledge (DN-PCK); Mapping Existing Communication Skills in New Curriculum Context (ME-CS)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2948] "Factors: Situated Direct Talk Style; Ongoing Direct Talk Style; Situated Indirect Talk Style; Ongoing Indirect Talk Style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2949] "Factors: Cognitive reappraisal (CR); Expressive suppression (SU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2950] "Factors: Absorption (A); Orderliness (G); Extraversion (E); Neuroticism (N); Insensitivity (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2951] "Factors: Pervasive influence of feelings (PIF); Feelings trigger action (FTA); Lack of follow-through (LFT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2952] "Factors: Believing and Knowing; Goals and Facilitation; Participation; HIV Biomedical Management; Coping and Self-Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2953] "Subscales: Encouragement/reminders; Active participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2954] "Factors: Social-Emotional; Academic Enablers; Externalizing Problems; Internalizing Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2955] "Factors: Internal management and protection of others; Management of external influence; Notoriety"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2956] "Subscales: Self; Family; Relationships; Community; Work. Factors: Adaptability; Awareness; Contentment; Inspiration; Participation; Communication; Care; Receptiveness; Connection; Attentiveness; Understanding; Enrichment; Engagement; Innovation; Accountability; Supportiveness; Sympathy; Sensitivity; Empathy; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2957] "Subscales: Person-Centered Care; Negative Staff Interactions; Inattentive Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2958] "Factors: Change success; Communication effectiveness; Personal trust; Affective commitment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2959] "Constructs: Value; (Reverse) Inertia; Visibility; Accessibility; Usefulness of online information sources for guardian information; Future target suitability; Usefulness of information sources related to value for post shoplifting disposal; Usefulness of information sources related to (Reverse) inertia for post shoplifting disposal; Usefulness of online information related to post shoplifting sale/disposal information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2960] "Subscales: Emotional Availability; Nurturance; Protection; Discipline; Play; Teaching; Instrumental Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2961] "Subscales: Person-Centered Care; Discordant Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2962] "Subscales: Depression; Anxiety; Academic problems; Interpersonal problems; Physical health problems; Substance-use problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2963] "Factors: Fit to Community; Fit to Organization; Links to Community; Links to Organization; Community-Related Sacrifice; Organization-Related Sacrifice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2964] "Subscales: Mental illness; Recovery; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2965] "Subscales: Equal Beauty Stereotypes (EBS); Body Image Perception (BIP); Genital Image Beliefs (GIB); Gender Stereotypes (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2966] "Domains: Negative Affectivity; Detachment; Antagonism; Disinhibition; Psychoticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2967] "Factors: Compulsion; Distress; Excessiveness; Reassurance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2968] "Factors: Emotional stability; Introversion; Openness to Experience; Conscientiousness; Need for material resources; Need for arousal; Future orientation; Financial knowledge; Retirement involvement—relevance; Retirement involvement—affective; Perceived financial preparedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2969] "Factors: Regulation of value; Regulation of performance goals; Self-consequating; Environmental structuring; Regulation of situational interest; Regulation of mastery goals"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2970] "Subscales: Visible Artifacts; Organizational climate; Espoused values; Basic assumptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2971] "Subscales: Psychological violence; Physical violence; Verbal violence; Sexual violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2972] "Factors: Empathy; Intercultural awareness; Intercultural relations; Knowledge difference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2973] "Factors: Shame; Blame; Guilt; Unconcern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2974] "Subscales: Healthy eating; Unhealthy eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2975] "Subscales: Illness; Independent living; Social relationships; Psychological well-being; Physical senses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2976] "Subscales: Proviolence; Pro illegal acts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2977] "Factors: Satisfaction; Alternatives; Investments; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2978] "Subscales: Impact on the interaction between health staff and patients; Impact on performing work responsibilities; Impact on the ability to make decisions; Impact on professional career."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2979] "Factors: National policy on quantity of teaching; National policy on provision of learning opportunities; National policy on quality of teaching; Student behavior outside the classroom; Teacher collaboration; Providing resources; Partnership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2980] "Subscales (Domains): Support (Connectedness; Hope; Identity; Meaning and purpose; Empowerment); Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2981] "Subscales (Domains): Support (Connectedness; Hope; Identity; Meaning and purpose; Empowerment); Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2982] "Subscales: Adherence; Quality; Participant Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2983] "Factors: Mastery; Physical condition; Psychological condition; Affiliation; Appearance; Enjoyment; Competition/ego; Others' expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2984] "Factors: Intrinsic; Integrated; Identified; Introjected; Extrinsic; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2985] "Factors: Sustainable Spending; Sustainable Skepticism; Sustainable Responsibility; Sustainable Support; Sustainable Mobility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2986] "Factors: Familiarity with intermediary; Disposition to trust; Trust in intermediary; Trust in corresponding collaboration partners; Inquire about; Active request"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2987] "Facet 1 Factors: Purchasing habits associated with non-green products; Available information; Price; Perceived difficulties in accessing the proceeds. Facet 2 Factors: Consumer confidence; Consumer loyalty. Facet 3 Factors: Perceived consumer effectiveness; Environmental concern; Entourage's social influence; Institutional influence; Consumers' values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2988] "Factors: Physical Aspects; Trustworthiness; Personal Attention; Policy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2989] "Scales: Geriatricians; Patients; Informal Caregivers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2990] "Subscales: IT integration (ITI); Trust (Tr); Supply chain agility (SCA); Innovativeness (In); Competitive advantage (CA)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2991] "Subscales: Prohibited use; Dangerous use; Dependence; Financial problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2992] "Factors: Trust; Team Orientation; Backup, Shared Mental Model; Team Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2993] "Subscales: Preoccupation (EMS-P); Diet Gain (EMS-DG); Diet Loss (EMS-DL); Dietary Restraint (EMS-DR); Excessive Attention (EMS-EA); Functional Impairment (EMS-FI); Health Risk (EMS-HR); Compensatory Exercise (EMS-CE); Negative Affect (EMS-NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2994] "Subscales: Future; Past-negative; Past-positive; Present-hedonistic; Present-fatalistic; Present-impulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2995] "Factors: Perceived dependence (PD); Prohibited (or antisocial) use (PU); Dangerous use (DU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2996] "Subscales: General Creative Self-Efficacy (GSCE); Computer Self-Efficacy (CSE); Computer-aided Visual Art Self-Efficacy (CVSE)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2997] "Factors: Autonomy-supportive teaching; Controlling teaching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2998] "Subscales: Social Behavior; Academic Behavior; Emotional Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2999] "Subscale: Colorectal Cancer Risk Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3000] "Subscales: Avoidance of OCD Triggers (FAS-AT); Involvement in Compulsions (FAS-IC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3001] "Domains: Listening effort; Communication; Environment; Emotional; Entertainment; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3002] "Components: Physical health; Mental health. Domains: Physical function; Health Perception; Energy; Role limitation-physical; Pain; Sexual function; Social function; Health distress; Overall QOL; Emotional well-being; Role limitation-emotional; Cognitive function; Change in health; Satisfaction with sexual function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3003] "Factors: Work and time constraints; Smokers should quit on their own; Nothing can help in quitting smoking; Disinterest in quitting; Lack of social support to attend; Lack of privacy at programmes; Lack of information and perceived availability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3004] "Subscales: Ironic praise (IP); Ironic criticism (IC); Literal criticism (LC); Literal praise (LP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3005] "Subscales: Social distance (SDIS); Integration-segregation (INSE); Private rights (PRRT); Subtle derogatory beliefs (SUDB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3006] "Factors: Paraphasia; Logopenia; Agrammatism; Motor Speech."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3007] "Factors: Sensorimotor and Perceptual Alterations; Somatic Detachment and Amnesia; Residual Symptoms; Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3008] "Factors: Sensory experience; Affective experience; Learning experience; Sociocultural experience; Behavioral experience; Escapism experience; Prestige experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3009] "Factors: Dental self-confidence; Social impact; Psychological impact; Aesthetic concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3010] "Factors: Group connectedness; Mattering; Relational motivation; Family well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3011] "Subscales: Picky eaters; Toddler refusal-general; Toddler refusal-textured foods; Older children refusal-general; Stallers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3012] "Factors: Persuadability; Insensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3013] "Factors: Symmetrical reciprocity; Agency; Similarity; Enjoyment; Instrumental aid; Communion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3014] "Factors: Simpatía-related positivity/warmth; Simpatía-related negativity/conflict avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3015] "Subscales: Nurse knowing the patient; Nurse being supportive; Provider knowing the patient and being supportive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3016] "Domains of practice: Direct comprehensive care; Support of systems; Education; Research; Publication and Professional Leadership"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3017] "Subscales: Holistic care; Collaborative care; Responsive care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3018] "Factors: Impulse Strength; Negative Expressivity; Positive Expressivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3019] "Factors: Antisocial behavior; Trivial information overload; Unorganized resources; Social evils; Vulnerable disposition; Situational factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3020] "Dimensions: Norms condoning men’s violence and control over women; Norms around men as the decision-maker in a couple; Norms around men’s toughness and avoidance of help-seeking; Norms around women’s primary responsibility as family caretaker."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3021] "Subscales: Bicultural/Depth; Identify/TCK; Uprooted/marginal; Seek/pursue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3022] "Subscales: Energy; Efficacy; Implication; Workload; Control; Rewards; Community; Fair; Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3023] "Factors: Perceived organizational support; Perceived pay equity; Symbolic incentive meaning; Psychological empowerment; Work engagement; Innovative behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3024] "Scales: Empathy; Spirituality; Wellness; Tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3025] "Factors: Maintaining Traditional Roles and Values; Possessing Cultural Capital; Connecting and Teaching; Providing Praise and Protection from Difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3026] "Factors: Trying & applying own ideas; Model learning; Direct feedback; Vicarious feedback; Anticipatory reflection; Subsequent reflection; Extrinsic intent to learn; Intrinsic intent to learn."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3027] "Factors: Proxy Report: General wellbeing and participation; Communication and physical health; School wellbeing; Social wellbeing; Access to services; Family health; Feelings about functioning. Self-Report: General wellbeing and participation; Communication and physical health; School wellbeing; Social wellbeing; Feelings about functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3028] "Factors: Social Behaviour; Numbers/Patterns. Subscales: Social Skills; Routines; Switching; Imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3029] "Scales (Subscales): Duties (PC; Education; Therapies; Safety and quality; Medical care); Barriers (Lack of PC services; Infrastructure; Patient/family communication; Team communication; Culture/religion; Language; Time); Satisfaction (Patient/family care; Access to medications/supplies; Provider communication; Religious support)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3030] "Domains: Verbal fluency; Hope and positive expectations; Persuasiveness; Emotional expression; Warmth, acceptance, and understanding; Empathy; Alliance bond capacity; Alliance rupture‐repair responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3031] "Scales: Cross-Domain Work Communication; Cross-Domain Family Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3032] "Factors: Not being able to communicate; Losing connectedness; Not being able to access information; Giving up convenience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3033] "Factors: Daily hearing aid use; Hearing aid maintenance and repairs; Advanced hearing aid knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3034] "Subscales: Unfulfilled Wishes; Unresolved Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3035] "Factors; Intimacy; Petting; Sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3036] "Factors: Red flags; Personal information; Profile features; Personal views; Qualifications; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3037] "Subscales: Sustainability; Social; Variety-seeking; Fun; Cost-saving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3038] "Subscales: Difficulty of impulse control; Emotional symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3039] "Factors: Ideal self-congruence; Sensory brand experience; Brand responsiveness; Corporate social responsibility; Brand attachment; Brand loyalty; Resilience to negative information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3040] "Factors: Customer orientation (CO); CRM organization (CRMO); Knowledge management (KM); Technology-based CRM (TB); Employee job satisfaction (EJS); Intention to quit (INQ)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3041] "Subscales: Time Loss; Time Management; Time Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3042] "Factors: Price fairness; Procedural fairness; Outcome fairness; Interactional fairness; Brand trust; Brand experience; Brand enthusiasm; Brand endorsement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3043] "Subscales: Pain (P); Symptoms (S); Activity of Daily Living (ADL); Sport and Recreation Function (Sport/Rec); Hip related Quality of Life (QoL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3044] "Factors: Financial Institutions and Corporations (FINCORP); Government (GVT); Governing Bodies (GVTBODY); Security Institutions (SECURITY); Knowledge Producers (KNOW); Community (COMMUNITY); Close Relations (CLOSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3045] "Subscales: Collective ambition; Common goal; Aligned personal goals; High skill integration; Open communication; Safety; Mutual commitment; Sense of unity; Sense of joint progress; Mutual Trust; Holistic Focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3046] "Subscales: Self-fulfillment; Group and organizational working; Attaining goals; Leadership; Sustainability and job/family balance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3047] "Subscales: Pain; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3048] "Subscales: Participation in gun activities; Gun ownership as an identity; Gun policy preferences; Political participation in the realm of gun policy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3049] "Subscales: Fit; Value; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3050] "Subscales: Motivation (MT); Self-confidence (SC); Anxiety control (AC); Mental Preparation (MP); Team emphasis (TE); Concentration (C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3051] "Subscales: Head and neck symptoms; Pain and discomfort; Sleep; Upper limb activities; Walking; Annoyance; Mood; Psychosocial functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3052] "Subscales: Teacher-Student Relationships; Peer Support at School; Family Support for Learning; Control and Relevance of School Work; Future Aspirations and Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3053] "Subscales: School; Family time; Family cohesion; Psychological health; Parents' worries; Physical limitation; Family activity; Self-confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3054] "Subscales: Pedagogical Content Knowledge (PCK); Technological Knowledge (TK); Content Knowledge (CK); Technological Pedagogical Knowledge (TPK); Technological Content Knowledge (TCK); Technological Pedagogical Content Knowledge (TPCK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3055] "Factors: Neuroticism (N); Conscientiousness (C); Agreeableness (A); Openness (O); Extraversion (E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3056] "Subscales: Academic Efficacy Scale (AES); College Gratitude Scale (CGS); School Connectedness Scale (SCS); Satisfaction with Academics Scale (SAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3057] "Factors: Consistency of Interest; Perseverance of Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3058] "Factors: Information Seeking; Information Giving; Relationship Building."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3059] "Subscales: Auditory; Visual; Motor; Oromotor/Verbal; Communication; Arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3060] "Factors: Urinary incontinence (IN); Urinary irritation (IR); Bowel dysfunction (BD); Sexual dysfunction (SD); Hormonal dysfunction (HD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3061] "Subscales: Influence; Quality; Trust; Information; Discharge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3062] "Subscales: Effective Communication; Mutual Respect and Trust; Shared Philosophy of Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3063] "Distal Stress: Gender-Related Discrimination (D); Rejection (R); Victimization (V); Gender Identity Nonaffirmation (NA). Proximal Stress: Internalized Transphobia (IT); Negative Expectations for the Future (NFE); Nondisclosure of Gender Identity/History (ND). Resilience: TGNC Pride (P); Community Connectedness (CC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3064] "Subscales: Fitness; Impartiality; Consistency; Respectfulness; Confidence; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3065] "Factors: Structural; Relational; Cognitive. Variables: Engagement; Organizational commitment; Organizational social capital; Procedural fairness; Satisfaction with working environment; Autonomy; Job significance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3066] "Subscales: Quantity; Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3067] "Factors: Positive communication with mother/father/friends; Negative communication with mother/father/friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3068] "Factors: Vulnerability; Coping; Emotional Intelligence; Subjective Well-Being; Control Locus; Ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3069] "Subscales: WRAS-White Guilt; WRAS-Negation; WRAS-White Shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3070] "Factors: Innovative; Dominant; Pace; Friendly; Prestigious; Trendy; Corporate social responsibility; Traditional; Diverse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3071] "Factors: Affective coping; Social coping; Spending impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3072] "Scales: Smartphone usage; Videogame; Positive attitudes; Negative attitudes; Anxiety/dependence; Technophobia; Technophilia; Persuasive power; Informative power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3073] "Factors: Responsive teaching (General Factor); Proactive management and routines; Cognitive facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3074] "Subscales: Intention; Engagement; Prosocial Reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3075] "Subscales: Intuition as a judgment factor; Intuition as a predictor of the patient’s condition; Intuition as a communication channel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3076] "Subscales: Research process; Knowledge synthesis; Knowledge translation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3077] "Subscales: Somatic; Cognitive; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3078] "Subscales: Informed; Support; Certain; Values; Effectiveness; Patient Rights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3079] "Factors: Value/connections; Meaning; Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3080] "Subscales: Mindset; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3081] "Subscales: Social; Competition; Novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3082] "Factors: Compliance with safety regulations and training; Institutional attitudes of workers towards safety; Common use of equipment, materials and substances in laboratories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3083] "Factors: School-mandated learning; Self-initiated learning; Harmonious Internet passion; Obsessive Internet passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3084] "Subscales: Time pressure; Vigilance demands; Job autonomy; Support; Chronic fatigue; Acute fatigue; Incomplete recovery; Sleep problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3085] "Subscales: Deviant Peers/Criminal Associates; Positive Attitude Toward Gang Associations; Positive Attitude Toward Violence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3086] "Subtests: Speech Situation Checklist (SSC)–Emotional Reaction (SSC-ER); SSC– Speech Disruption (SSC-SD); Behavior Checklist (BCL); Communication Attitude Test for Adults Who Stutter (BigCAT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3087] "Factors: Behavioral Self-Blame (BSB); Characterological Self-Blame (CSB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3088] "Factors: Coordination; Networking; Diversity; Independence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3089] "Scales: Verbal IQ; Performance IQ; Full-Scale IQ. Subtests: Block design; Information; Matrix reasoning; Vocabulary; Picture concepts; Symbol search; Word reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3090] "Subscales: Impact of Polycystic Ovary Syndrome; Infertility; Hirsutism; Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3091] "Subscales: Mastery; Detachment; Relaxation; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3092] "Subscales: Concern for changes in oneself and in relationships; Fear for the integrity of the baby; Feelings about oneself; Fear of childbirth; Concerns about the future and ability as a mother."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3093] "Subscales: Primary depression symptoms; Mixed symptoms; Secondary depression symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3094] "Subscales: Direct microaggressions; Self-protection from microaggressions; Indirect microaggressions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3095] "Subscales: Attitude towards help-seeking; Subjective norm; Perceived behavioral control; Help-seeking intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3096] "Factors: Leader support; Passive management by exception; Safety climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3097] "Subscales: Social skill; Attention switching; Attention to detail; Communication; Imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3098] "Subscales: Somatization; Demoralization; Anhedonia; Anxiety; Suicidal Tendencies; Cognitive Issues; Activation; Disconstraint; Substance Misuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3099] "Factors: Clarity; Loudness; Mean Speaking Pitch; Pitch Range."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3100] "Subscales: Intrusion; Avoidance; Changes in mood and cognition; Arousal and hyperreactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3101] "Factors: Internal beliefs about own disability and the disability community; Anger and frustration with disability experiences; Adoption of disability community values; Contribution to the disability community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3102] "Factors: Overt coercions; Psychological manipulation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3103] "Subscales: Sociability; Disruptive Behavior; Cognitive Incapacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3104] "Subscales: Negative impact on elder-caregiver/caregiver-family relationships; Caregivers social activity restrictions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3105] "Subscales: Intentional Game Play (IGP); Generalized Game Self-Efficacy (GSE); Enjoyment of Games (EOG); Prone to Game Immersion (PGI)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3106] "Subscales: SMNS–Prescriptive; SMNS–Proscriptive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3107] "Variables: Workplace disclosure; Self-identity; HR management practices; Trust in supervisor; Trust in organization; Heterosexism in the workplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3108] "Factors: Bullied by others; Belittlement; Work undermined; Verbal abuse; Created fall guy/gal; Undermined others' work; Emotional abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3109] "Factors: Standard Assessment; Assessment Belief; Problem Scope."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3110] "Subscales: Teaching methods; Teaching content; Teaching attitudes; Teaching organizations; Teaching effects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3111] "Subscales: Cognitive in reading and writing; Metacognitive in reading and writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3112] "Subscales: Cognitive in listening; Metacognitive in listening."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3113] "Subscales: Cognitive in speaking; Metacognitive in speaking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3114] "Subscales: Mastery; Enjoyment; Psychological condition; Physical condition; Appearance; Affiliation; Competition/ego."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3115] "Subscales: Peer-Group Interactions; Interactions with Faculty; Faculty Concern for Student Development and Teaching; Academic and Intellectual Development; Institutional and Goal Commitment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3116] "Subscales: Satisfaction with collaboration; Impact of collaboration; Trust and respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3117] "Subscales: Hope; Optimism; Resilience; Self-efficacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3118] "Dimensions: Stability in life circumstances; Continuity in upbringing conditions; Adequate examples by parents; Respect; Supportive, flexible childrearing structure; Adequate physical care; Interest; Affective atmosphere; Contact with peers; Education; Adequate examples in society; Social network; Safe direct physical environment; Safe wider physical environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3119] "Factors: Global health; Quality of relationships; Positive orientation; Depressive mood; Spiritual support; Friendship/intimacy; Career; Sleep disturbance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3120] "Subscales: Autonomy satisfaction; Autonomy frustration; Relatedness satisfaction; Relatedness frustration; Competence satisfaction; Competence frustration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3121] "Subscales: Male-to-female; Male-to-male; Female-to-female; Female-to-male; General violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3122] "Consultation Factors: Risk and resilience; Trauma-informed practice; School mental health; Collegial support; Student focus; Group focus; Schoolwide focus; Knowledge development; Information sharing; Program evaluation; Program planning; School issues; Personnel issues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3123] "Factors: Cognitive; Somatic; Affective (Depression)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3124] "Subscales: Perception of problem; Training competency; Screening and reporting competency; Policy awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3125] "Factors: Separation Anxiety; Fear of Harm Befalling Family Members; School Phobia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3126] "Subscales: Pain; Other symptoms; Function in daily living; Function in sports and recreation (Sport/Rec); Hip-related quality of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3127] "Factors: Fabrication; Embellishment; Omission."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3128] "Subscales: Realistic (R); Investigative (I); Artistic (A); Social (S); Enterprising (E); Conventional (C)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3129] "Factors: Generation; Feeling; Single senses. Subscales: Vividness; Control; Ease; Speed; Duration; Visual; Auditory; Kinaesthetic; Olfactory; Gustatory; Tactile; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3130] "Awareness Factors: Availability; Task; Social"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3131] "Subscales: Autonomy; Competence; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3132] "Subscales: Self-Focused Health Motivation; Other-Focused Health Motivation; Introjected Health Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3133] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3134] "Subscales: Microsystem; Mesosystem; Exosystem; Macrosystem; Chronosystem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3135] "Subscales: Harm/Danger Avoidance (HDA); Personal Responsibility/Blame (PRB); Responsibility to Continue Thinking/Perseverate (RCTP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3136] "Subscales: Physical; Mental."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3137] "Factors: Preoccupation; Loss of control; Affective disturbance; Relationship disturbance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3138] "Subscales: Roles & Routine; Former Relationships; Former Self; Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3139] "Factors: Absolutism; Multiplism; Evaluativism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3140] "Factors: Absolutism; Multiplism; Evaluativism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3141] "Subscales: Posttraumatic stress disorder (PTSD); Disturbances in self-organization (DSO). Factors: Re-experiencing (Re); Avoidance (Av); Sense of current threat (Th); Affective dysregulation (AD); Negative self-concept (NSC); Disturbances in relationships (DR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3142] "Subscales: Nighttime (ICS-N); Daytime (ICS-D)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3143] "Subscales: Thoughts/Behaviour/Emotions (TBE); Importance of Staying in Control (ISC); Body/Bodily Functions (BBF). Test-Retest Reliability: Approximately 33.06 (SD= 7.57) days following their first BALCI administration, a smaller group of participants completed the measure a second time. Retest reliability was examined by conducting zero-order correlations between scores from the first and second completions. The total BALCI and TBE subscale demonstrated adequate retest reliability (r’s = .68); the ISC and BBF subscales demonstrated fair retest reliability (r’s = .57; all p’s < .001)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3144] "Subscales: Primary ontological insecurity; Engulfment; Implosion; Depersonalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3145] "Subscales: Cognitive; Social; Physical; General Self-Worth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3146] "Subscales: Home alone; Community social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3147] "Subscales: Individual general (Assumption of criminality [AC]; Assumption of intellectual inferiority [AII]; Assumed universality of the Black American experience [AUBAE]; Second-class citizenship [SCC]; Assumption of inferior status [AIS]; Micro-assaults [MA]; Environ micro-aggressions [EM]); Vicarious general; Individual online; Vicarious online; Individual teasing; Vicarious teasing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3148] "Factors: General; Financial rumination-related emotions; Financial rumination-related cognitions; Financial worry-related emotions; Financial worry-related cognitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3149] "Factors: Privacy concerns; Social support expectations; Social network site disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3150] "Factors: Expressive Suppression; Reappraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3151] "Factors: Orientation and Training (OP); Reward and Punishment Systems (RP); Accountability and Responsibility (AR); Decisionmaking (DM); Recruitment and Selection (RS); Policy and Codes (PC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3152] "Factors: Active Involvement; Purposeful Intent; Affective Value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3153] "Factors: Food favorability; Purchase intention; Healthism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3154] "Model variables: Attention to media; parasocial relationships; fast food attitudes; perceived behavioral control for eating fast food; social norms for eating fast food; fast food acceptability; fast food consumption intentions;"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3155] "Factors: Perceived risk (PR); Risk compensation (RC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3156] "Factors: Performance of Politicians; Ability of Politicians; Conduct of Politicians."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3157] "Subscales: Secure attachment; Anxious attachment; Avoidant attachment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3158] "Factors: Energy; Harmony."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3159] "Subscales: Unilateral forgiveness; Negotiated forgiveness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3160] "Factors: Sophistication; Competence; Excitement; Sincerity; Convenience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3161] "Scales: Economic value; Relational value; Technical/Functional value; Customer orientation; Competitor orientation; Market performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3162] "Subscales: Physical; Psychosocial; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3163] "Factors: Tangible Gain Motive; Affective Gain Motive; Self-Enhancement Motive; Other-Orientation Motive; Descriptive Norms Motive; Injunctive Norms Motive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3164] "Factors: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3165] "Subscales: Victimization; Bullying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3166] "Subscales: Job satisfaction with intangible benefits; Job satisfaction with tangible benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3167] "Factors: Integrated Work Environment; Job Quality; Alienation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3168] "Factors: Harmonious relations; Filial piety; Self-cultivation; Societal stability; Family stability; Virtue behaviour"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3169] "Subscales: Characters (C); Performers (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3170] "Subscale: General distress symptoms; Obsessive-compulsive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3171] "Subscales: Contradictory signaling to child; Failure to initiate responsive behavior to infant's cues; Inappropriate responding to infant's cues; Role confusion; Treats child as sexual/spousal partner; Fearful behavior: appears frightened, apprehensive, or deferential in relation to the infant; Disorientation or dissociative behavior; Fearful or disoriented voices; Physical communications; Verbal communications; Inappropriately attributes negative feelings or motivation to infant; Exerts control using objects; Creates a physical distance from infant; Use of verbal communication to maintain distance; Directs infant away from self via toys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3172] "Factors: Informational health literacy; Numeracy health literacy; Communicative health literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3173] "Factors: Nutrition specific and weight; Nutrition general and medical treatment; Physical exercise; Blood sugar."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3174] "Sections: Outside, route to entrance; Ramps and gradients; Wheel-chair lift; Stairs; Entrance door; Inside; Lift."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3175] "Factors: MeatUnhealthful (Factor 1); MeatDislike (Factor 2); MeatUnethical (Factor 3); MeatHabit (Factor 4); NoNeed4Subs (Factor 5); MeatExpensive (Factor 6); NoNeed4Meat (Factor 7)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3176] "Subscales: Work interference with family (WIF); Family interference with work (FIW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3177] "Domains: Parental dieting; Parental encouragement to diet; Parental criticism of a child’s weight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3178] "Factors: Attitudes; Subjective norm; Perceived behavioral control; Intention; Behavior; Consumer ethnocentrism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3179] "Subscales: Emotional score (ES); Daily disturbance score (DDS); Total (Global) score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3180] "Subscales: Symptom; Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3181] "Dimensions: Personal-Positive; Personal-Negative; Social-Positive; Social-Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3182] "Subscales: Reappraisal; Suppression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3183] "Factors: Telos (leaders’ ethical end, mean, or purpose of behavior); and Ethos (leaders’ personal attitudes and characteristics)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3184] "Factors: Contingent self-esteem (CSE); Exploitativeness (EXP); Self-sacrificing self-enhancement (SSSE); Hiding the self (HS); Grandiose fantasy (GF); Devaluing (DEV); Entitlement rage (ER)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3185] "Subscales: Personality; Cognition; Activities and Interests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3186] "Subscales: Attachment anxiety; Perceived partner gratitude; Global relationship satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3187] "Variables: Internet usage; Concept-oriented communication; Socio-oriented communication; Self-esteem; eWOM intentions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3188] "Factors: Affect management; Overparenting; Parental monitoring; Digital limit setting; Parental control; Risk aversion; Autonomy granting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3189] "Subscales: Grade 1 MLPQ; Grade 6 MLPQ; Grade 9 MLPQ; Current LPQ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3190] "Factors: Intrapersonal; Interpersonal; Stress management; General mood; Adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3191] "Factors: Psychological (Parents); Pre and Postnatal Causes; Psychological (Child); Environmental & Neurological Causes; Medical Causes; Genetic Causes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3192] "Factors: Emotive dissonance; Emotive effort; Procedural justice; Interpersonal justice; Informational justice; Distributive justice; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3193] "Subscales: Over dependence; Over demandingness; Awfulizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3194] "Factors: Fit; Link; Sacrifice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3195] "Subscales: Perceived Usefulness; Perceived Ease of Use; Subjective Norm; Experience (Quality); Attitude; Intention To Use the Restaurant Review Website; Intention To Visit Restaurant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3196] "Factors: Information quality; Source credibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3197] "Factors: Intrinsic motivation; Extrinsic motivation; Harmonious passion; Obsessive passion; Affective attitude; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3198] "Factors: Contingent Self-Esteem (CSE); Exploitativeness (EXP); Self-Sacrificing Self-Enhancement (SSSE); Hiding the Self (HS); Grandiose Fantasy (GF); Devaluing (DEV); Entitlement Rage (ER)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3199] "Factors: Health fear; Social isolation and avoidance; Doubt about protection; Dissatisfaction with system and procedures; Job stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3200] "Subscales: Changes in Life Priorities Resulting from SARS; Coping Methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3201] "Factors: Depression; Biphasic/Hypomania."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3202] "Factors: Mania; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3203] "Subscales: Positive orientation (PO); Positive problem-solving skills (PPSS); Rational orientation (RO); Rational problem solving skills (RPSS); Negative orientation (NO); Negative problem-solving skills (NPSS); Impulsivity orientation (IO); Impulsivity problem solving style (IPSS); Withdrawal orientation (WO); Withdrawal problem solving style (WPSS); Problem affect-cognitions for stories-a (PAC-A), Problem-solving actions for stories-a (PSA-A)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3204] "Factors: Evaluation; Work Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3205] "Subscales: Cognitive-affective reactions; Healthcare experiences; Systemic response."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3206] "Factors: Fine Motor; Gross Motor; Catch and Throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3207] "Trainer behaviors: Listening/Observing; Supporting; Questioning; Formulating; Managing; Informing; Guiding experiential learning; Self-disclosing; Challenging; Disagreeing; Evaluating; Feeding back; Other. Learner behaviors: Experiencing; Reflecting; Conceptualizing; Planning; Experimenting; Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3208] "Factors: Supervision Cycle; Supervisee Cycle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3209] "Factors: Feelings about teacher; School enjoyment; Growth mindset; Perceived academic competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3210] "Dimensions: Sociosexuality; Benevolent Sexism; Wealth Redistribution; Nonconforming Behaviors; Traditional Family Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3211] "Subscales: Immediate prospective component (PM-i); Retrospective component (PM-r); Delayed prospective component (PM-d)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3212] "Subscales: University affiliation; University support and acceptance; Faculty and staff relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3213] "Subscales: Tantrum-related impairment; Mood-related impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3214] "Scales: Primary Psychopathy Scale (PPI1); Secondary Psychopathy Scale (PP2). Factors: Social Potency; Coldheartedness; Fearlessness; Impulsive Nonconformity; Stress Immunity (PP1); Machiavellian Egocentricity; Blame Externalization; Carefree Nonplanfulness (PP2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3215] "Subscales: Appreciation; Intellectual engagement; Fortitude; Interpersonal consideration; Sincerity; Temperance; Transcendence; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3216] "Subscales: Emotional state; Personal value of high performance; Utility of participation in the test; Intended/invested effort; Arousal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3217] "Factors: Tracking; Information; e-Solicitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3218] "Factors: Social Media Intensity; Centrality (Materialism); Happiness (Materialism); Success (Materialism); Credit Overuse Behavior; Conspicuous Consumption; Impulse Buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3219] "Factors: Awareness of purpose; Awakening to purpose; Altruistic purpose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3220] "Factors: Physical vanity (PVAN); Achievement vanity (AVAN); Bridging social capital (BSC); Benign disinhibition (BDIS); Toxic disinhibition (TDIS); Privacy concerns (PC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3221] "Subscales: Social self-efficacy; Emotional self-efficacy; Academic self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3222] "Factors: Negative emotionality; Detachment; Psychoticism; Antagonism; Disconstraint."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3223] "General Factor: General resilience. Latent First-Order Factors: Academic; Peer; Teacher; Family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3224] "Dimensions: Helplessness; Anxiety Sensitivity; Impulsivity; Sensation Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3225] "Factors: Enhancement; Social; Conformity; Anxiety-Coping; Depression-Coping; Boredom-Coping; Self-Expansion; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3226] "Factors: Problem solving; Forcing; Yielding; Avoiding; Compromising."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3227] "Factors: Employment protective behaviors; Employment risk; Job-seeking behavior; Self-control; Self-learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3228] "Subscales: Without ToM content (N-ToM); ToM content (ToM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3229] "Factors: Entitativity; Viewing intentions; Purchase intentions; Prototypical focal concurrent sponsor sincerity; Attitude toward property sponsorship; Involvement with sporting events in general; Familiarity with focal concurrent sponsor; Attitude toward focal concurrent sponsor; Familiarity with property; Attitude toward the property; Sponsorship group-property fit; Focal concurrent sponsor-property fit; Second concurrent sponsor-property fit; Third concurrent sponsor-property fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3230] "Factors: Causal analysis; Understanding; Uncontrollability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3231] "Factors: Assessment and implementation of spiritual care; Professionalization and patient counseling in spiritual care; Attitude toward the patient’s spirituality and communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3232] "Domains: Training Specific; Training General. Factors: Opportunity to Use (OU); Personal Outcome Negative (PN); Personal Outcome Positive (PP); Supervisor Opposition (SO); Learner Readiness (LR); Personal Capacity (CA); Supervisor Support (SS); Transfer Design (TD); Motivation to Transfer (MT); Content Validity (CV); Peer Support (PS); Transfer Effort Performance Expectation (TP); Resistance to Change (RC); Performance Coaching (PC); Performance Self-efficacy (SE); Performance Outcome Expectations (PO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3233] "Factors: Vigor (Engagement); Dedication (Engagement); Absorption (Engagement); Service Climate; Job Satisfaction; Commitment; Message Strength."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3234] "Factors: Purchasing skills: Technical knowledge; Purchasing skills: Interpersonal skills; Purchasing skills: Managerial skills; Strategic purchasing; Supplier Integration; Restaurant performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3235] "Domains: Outcomes for my child; Outcomes for our family; Quality of the model; Relationship with the team."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3236] "Factors: Teams and Care Continuity; Patient Centeredness; Coordination with External Providers; Coordination with Community Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3237] "Factors: Skills; Experience; Person Characteristics; Networks; Market Knowledge; Institution Reputation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3238] "Factors: Hygiene Issues (F1); Parasite/Infection (F2); Food/Environmental (F3); Injury/Viscera (F4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3239] "Subscales: Prevention; Avoidance; Mask Wearing; Personal Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3240] "Subscales: H1N1 Beliefs; Negative Vaccination Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3241] "Subscales: Rumination; Helplessness; Magnification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3242] "Subscales: Vigilance; Buck-Passing; Procrastination; Hypervigilance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3243] "Subscales: Communication and team work; Organisation and care planning; Access to resources; Ward type and layout; Information flow; Roles and responsibilities; Staff training; Equipment design and functioning; Delays."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3244] "Domains: Negative emotionality; Positive emotionality; Antagonism; (Dis)constraint; Oddity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3245] "Subscales: Prosocial/Communication Skills; Emotional Regulation Skills; Academic Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3246] "Subscales: Valence; Arousal; Morality; Care; Fairness; Ingroup; Authority; Purity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3247] "Factors: A Complete Annihilation; The Severe Pain Of Death; Sins Consequences; Interpersonal Attachments; Possessions Attachments (Love of Estate)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3248] "Factors: System quality; Information quality; Service quality; Product quality; Perceived price; Perceived promotions; Perceived value; User satisfaction; Intention to reuse; Electronic word of mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3249] "Factors: Convenience; Design; Trustworthiness; Price; Various food choices; Perceived value; Attitudes towards food delivery apps; Intent to continuously use food delivery apps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3250] "Factors: Anxiety; Depression. Scales: Patient Health Questionnaire (PHQ-2); Generalized anxiety disorder (GAD-2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3251] "Factors: Intimacy for a sub-brand (AINT); Passion for a sub-brand (APASS); Commitment for a sub-brand (ACOMM); Brand love for the corporate brand (BLF); Brand love for the sub-brand (LSUB); Ideal-self-sub-brand congruence (ISC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3252] "Factors: Information Sharing; Team Support; Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3253] "Factors: Sexual orientation specific parental acceptance; Sexual orientation specific parental rejection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3254] "Subscales: Acceptability of PND screening; PND stigma; Treatment efficacy; PND screening readiness; Medication counseling responsibility; Effect on others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3255] "Subscales: Somatic symptoms; Affective-cognitive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3256] "Factors: Physical impact; Social impact; Survival threat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3257] "Learning support; Instructional support; Peer support; Technical support; Transfer support; Social inclusion; Social participation; Social connectedness; Social capital; Bonding social capital; Bridging social capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3258] "Factors: Attitudes and beliefs regarding the benefits of vaccination; Attitudes and beliefs regarding the risks of vaccination; Self-efficacy regarding vaccination decision making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3259] "Factors: Perceived Infectibility; Germ Aversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3260] "Domains: Attention/Orientation; Verbal fluency; Memory; Language; Visuospatial abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3261] "Subscales: Requirements; Appeal; Limitations; Fit; Monitoring; Burden; Job security; Organizational support; Feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3262] "Factors: Independence and Uniqueness; Interdependence and Harmony."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3263] "Subscales: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3264] "Factors: Consequentialism; Formalism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3265] "Factors: Fatigue Improvement; Thought Suppression; Sleep Improvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3266] "Subscales: The concept of time; Work centrality; Morality; Leisure; Delay of gratification; Hard work; Group dynamics; Commitment to education"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3267] "Factors: Time; Work centrality; Morality; Leisure: Delay of gratification; Hard work; Group dynamics; Commitment to education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3268] "Factors: Trust in the authorities; Likelihood of infection; Severity of illness; Exaggeration of the risk; Timeline for the outbreak; Good information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3269] "Subscales: Autonomous Motivation; Controlled Motivation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3270] "Factors: Flirtation; Sexual Storytelling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3271] "Constructs: Street-environment experience; Street-environment suitability; Street audience experience; Overall satisfaction. Factors: Visual aesthetics; Acoustic comfort; Perceived crowding; Street-environment suitability; Emotion; Intellect; Novelty; Place; Interaction; Technique; Overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3272] "Factors: Patient-Provider Connection (PPC); Health Care Environment (HCE); Treatment Expectancy (TE); Positive Outlook (PO); Spirituality (SP); Complementary and Alternative Medicine (CAM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3273] "Factors: Mexican Sample (Spanish Competency Pressures; English Competency Pressures; Pressure to Acculturate; Pressure Against Acculturation); Turkish Sample (Turkish Competency Pressures; Pressure Against Acculturation; German Competency Pressures; Pressure to Acculturate)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3274] "Factors: Pre-Event (Assessing Risk and Readiness; Accessing Disaster Apps; Mitigating Damages); Event (Correcting; Connecting; Confirming); Post-Event (Assisting; Growing; Storytelling)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3275] "Factors: Notice; Interpret; Accept; Know; Implement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3276] "Factors: Protective behaviors; Infection management behaviors; Detachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3277] "Factors: Appeal; Challenge; Choice; Meaningfulness; Academic self-efficacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3278] "Factors: Agentic engagement; Behavioural engagement; Emotional engagement; Cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3279] "Factors: Performance expectancy; Effort expectancy; Social influence; Facilitating conditions; Hedonic motivation; Price value; Habit; Usage; Information quality; System quality; Service quality; Satisfaction; Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3280] "Factors: Ownership affection; Vulnerability affection; Perceived costs of the nonpersonalization; Privacy concerns; Opportunity cost; Reactance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3281] "Factors: Service quality; Information quality; Trust; Systems quality; Intention to use; Satisfaction; Actual usage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3282] "Factors: Media Richness; Active Control; Two-way Communication; Synchronicity; Social Interaction; Shared Understanding; Ganqing; Renqing; Xinren; User Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3283] "Factors: Mobile banking use; Perceived usefulness; Perceived ease of use; Trust in mobile banking; Social influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3284] "Constructs: Perceived Effectiveness of Privacy Policy; Perceived Effectiveness of Industry Self-Regulation; Trust towards S-commerce Sites; Word-of-Mouth Communication; Observe Consumer Purchase; Intention of Purchase."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3285] "Constructs: Interaction Quality – Attitude (IQA); Interaction Quality – Behavior (IQB); Interaction Quality – Expertise (IQE); Environment Quality - Equipment (EQE); Environment Quality - Design (EQD); Environment Quality - Situation (EQS); Outcome Quality – Punctuality (OQP); Outcome Quality – Tangibles (OQT); Outcome Quality – Valence (OQV); User Satisfaction (US); Inertia (IN); Continuance Intention (CI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3286] "Factors: Teacher-student interactions; Differentiated instruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3287] "Subscales: Agentic; Behavioral; Emotional; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3288] "Scales: Pain; Physical function; Emotional function; Fatigue; Global health status/quality of life; Nausea/vomiting; Single items on lack of appetite, shortness of breath, constipation, and sleeping difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3289] "Factors: It Wasn’t Really Rape; He Didn’t Mean To; He Didn’t Mean To (intoxication items); She Lied; She Asked For It."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3290] "Subscales: Mastery; Meaning in life; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3291] "Subscales: Experimentation; Comfort; Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3292] "Subscales: Exoneration of the perpetrator (EXO = Exoneration de l’agresseur); Character blame of the victims (PERS = Condamnation de la personnalite de la victim); Behavior blame of the victims (COMP = Condamnation du comportement de la victim); Minimization of the seriousness and extent of the abuse (MIN = Minimisation de la gravite et de l’ampleur des violences)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3293] "Stages: Thematic axis exploration; Object searching; Spatial orientation and location; Intermediaries axis; Bodily organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3294] "Subscales: Frequency; Duration; Physical Concomitants Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3295] "Subscales: Personalization; Humanization; Absence of Infantilization; Absence of Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3296] "Subscales: Harm avoidance (HA); Disgust avoidance (DA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3297] "Factors: Attentional/Operative Functions; Engagement Function; Expressive Function; Instructional Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3298] "Factors: Disorder-specific factor; Biopsychosocial factor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3299] "Factors: Feelings of not belonging; Perception of being a burden; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3300] "Factors: Vigor (VI); Dedication (DE); Absorption (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3301] "Subscales: Obsessions; Compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3302] "Subscales: Externalizing reactions; Internalizing reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3303] "Factors: Anti-phishing self-efficacy (SE); Mobile phishing avoidance motivation (AM); Mobile phishing avoidance behavior (AB); Anticipated regret (AR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3304] "Factors: Malicious Intent; Benign Neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3305] "Factors: Worries; Tension; Joy; Demands"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3306] "Domains: Stoic taciturnity (ST); Stoic endurance (SE); Stoic serenity (SS); Stoic death indifference (SDI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3307] "Factors: Avoidance; Helping; Illegal; Sacrifice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3308] "Subscales: Extending repeating patterns; Translating repeating patterns; Identifying repeating patterns; Extending growing patterns; Translating growing patterns; Identifying growing patterns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3309] "Subscales: Open rejection (OR); Denial of visibility (DV); Gendering performance (GP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3310] "Subscales: Environmental positive microaffirmation (EP); Interpersonal positive microaffirmation (IP); Environmental negative microaggression (EN); Interpersonal negative microaggression (IN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3311] "Subscales: Negative biases against childfree people; Necessity of children in being a family and having a happy/meaningful life; Supporting individuals’ choice to be childless."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3312] "Subscales: Notice; Emergency; Responsibility; Know; Act."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3313] "Subscales: Non-violent discipline; Moderate physical discipline; Severe physical discipline; Psychological discipline; Neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3314] "Subscales: Overt; Reactive-overt; Proactive-overt; Relational; Reactive-relational; Proactive-relational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3315] "Subscales: Concentration Problems; Aggressive/Disruptive Behavior; Prosocial Behavior; Emotion Regulation Problems; Internalizing Problems; Family Problems; Family Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3316] "Subscales: Perceived severity; Perceived vulnerability; Fear; Response efficacy; Self-efficacy; Response cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3317] "Subscales: Perceived severity; Perceived vulnerability; Fear; Response efficacy; Self-efficacy; Response cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3318] "Subscales: Externalizing; Internalizing; Closeness; Conflict; Isolation; Prosociality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3319] "Subscales: General body appreciation; Body image investment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3320] "Subscales: Intrapersonal; Social; Consider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3321] "Factors: Information; Internalisation-General; Pressures: Internalisation-Athlete."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3322] "Subscales: Reciprocity Distress; Reciprocity Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3323] "Scales: Service leadership (SL); Service technology (ST); Empowerment (EP); Customer orientation (CO); Job satisfaction (JS); Interaction quality (IQ); Visitor satisfaction (SAT); Word of mouth (WOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3324] "Constructs: Total Interdependence; Departmental Power; Cognitive Trust; Affective Trust; Dysfunctional Conflict; Perceived Relationship Effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3325] "Subscales: Active Problem-focused Coping, Alcohol-drug Disengagement, Focus on and Venting of Emotions, Seeking Social Support, Humor, Turning to Religion, Denial, Restraint Coping, and Acceptance and Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3326] "Domains: Initial cognitive assessment; Elder abuse questions; Judgment of patient's ability to report abuse; Physical Assessment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3327] "Factors: New product performance; Technological newness; Market newness; Market knowledge breadth; Market knowledge tacitness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3328] "Factors: Self-awareness of the value of life; Application of coping strategies; Striving to live a normal and satisfied life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3329] "Subscales: Visual comprehensibility; Affordability; Adaptability; Assimilationist culture; Collective needs; Interpersonal promotion; Social capital; Atomized distribution; Flexible payment forms; Poverty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3330] "Factors: Job; Career, Calling; Social embeddedness; Busyness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3331] "Factors: Cognitive reappraisal (CR); Expressive suppression (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3332] "Dimensions: Social Adaptation Status (SAS); Psychological Well-Being (PWB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3333] "Factors: Impulsivity control (Controlo da impulsividade); Restraint (Refreamento)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3334] "Scales: Life satisfaction; Sense of control; Family closeness; Social connection; Social comparison orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3335] "Factors: Comprehension; Perceived integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3336] "Domains: Knowledge; Support in art-therapy; Your perceptions and experiences; From yesterday to tomorrow."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3337] "Factors: Ethical leadership; Cooperative conflict; Competitive conflict; Turnover intentions; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3338] "Subscales: Care scale; Control scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3339] "Subscales: Innovator role; Broker role; Deliverer role; Monitor role; Developer role; Integrator role."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3340] "Factors: Effort (Esfuerzo); Persistence (Persistente); Preparation (Preparación); Unit (Unidad); Skill (Habilidad)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3341] "Factors: Dynamic; Static."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3342] "Factors: Skills of daily life; Motor skills; Personal Life Skills; Social Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3343] "Subscales: Work demands; Family demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3344] "Subscales: Professional self-efficacy; Relational self-efficacy; Self-efficacy in articulation with families."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3345] "Factors: Engagement; Collegiality; Civility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3346] "Subscales: Calling (Chamamento); Career (Carreira); Job (Employement, Emprego)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3347] "Subscales: Focusing; Flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3348] "Subscales: Impulsivity (IMP); Restraint (RES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3349] "Subscales: Depressive; Cyclothymic; Hyperthymic; Irritable; Anxious-cognitive; Anxious-somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3350] "Subscales: Depressive; Cyclothymic; Hyperthymic; Irritable; Anxious-Cognitive; Anxious-Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3351] "Subscales: Hostility; Inferiority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3352] "Scales: Localization of pain; Nature of pain; Activity limitations (Factor 1); Psychosocial Aspects (Factor 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3353] "Factors: Everyday Life; Crisis Management; Current Issues. Subscales: Action Regulation; Relaxation; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3354] "Factors: Empathy (Empatia partidas); Alleviate suffering (Aliviar el sufrimiento partidas)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3355] "Factors: Giving back; Tribal family support; Identity; Institutional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3356] "Factors: French and the Sciences; History and Geography."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3357] "Subscales: Accountability; Preference for lecture or team-based learning; Student satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3358] "Clusters: Attitude toward creativity; Attitude toward work and feelings related to work environment; Creativity in the occupational therapy process; Attitude toward clients and their influence on the therapist’s creativity; Factors that influence creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3359] "Factors: Dependency-oriented psychological control (DPC); Achievement-oriented psychological control (APC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3360] "Factors: Motricity of Chewing; Food Selectivity; Mealtime Skills; Inappropriate Mealtime Behavior; Inflexible Eating-Related Behavior; Hostility towards Food; Food Allergies and Intolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3361] "Factors: Stereotyping; Culpability; Devaluation; Discrimination; Separation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3362] "Subscales: Objective strain (fardeau objectif); Subjective internalized strain (fardeau subjectif internalisé); Subjective externalized strain (fardeau subjectif externalisé)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3363] "Factors: Clinical; Health; Educational; Organizational; Social; Psychological Assessment, Teaching and Research; Traffic; Sport; Legal; Neuropsychology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3364] "Factors: Intimate Rejection; Public Rejection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3365] "Factors: Beliefs about the existence of prejudice racial (Crenças sobre a existência do preconceito racial); Beliefs about differences ethnic-racial (Crenças sobre as diferenças étnico-raciais)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3366] "Factors: Game knowledge; Decision-making; Pressure; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3367] "Factors: SI = social inclusion; SD = self-determination; EW = emotional wellbeing; PW = physical wellbeing; MW = material wellbeing; RI = rights; PD = personal development; IR = interpersonal relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3368] "Factors: Lack of intentionality (Activación); Efficiency (Effciencia); Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3369] "Factors: Home context (Contexto de casa); School context (Contexto da escola); Community context (Contexto da comunidade)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3370] "Factors: Filial piety belief; Destiny belief; Perceived stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3371] "Factors: Conduct and emotions; Healthy habits (Behavior Topics section); Behavior change; Psychoeducation (Intervention approach section); Multimedia resources; Auxiliary care; Routine care (Delivery methods section)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3372] "Subscales: Risky exposure; Transient rule violations; Driver misjudgements; Driver mood; Vehicle overcrowding; Personal seatbelt use; Substance consumption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3373] "Subscales: Information seeking; Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3374] "Subscales: Critical racial reflection; Critical SES reflection; Competence; Confidence; Character; Caring; Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3375] "Subscales: Functional impulsivity; Urgency; Lack of perseverance; Lack of premeditation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3376] "Subscales: Pre-volitional Self-efficacy (PS); Maintenance self-efficacy (MS); Self-efficacy for relapse recovery (SRR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3377] "Subscales: Direct goal self-efficacy; Direct goal collective efficacy; Indirect goal collective efficacy; Indirect goal self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3378] "Factors: Perceived Outcomes; Symbolic; Instrumental; Shopping trips; Leisure trips; Child-related trips; Driving habits; Descriptive norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3379] "Subscales: Childhood Nonverbal Communication Scale-1 (CNCS-1); Childhood Nonverbal Communication Scale-2 (CNCS-2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3380] "Factors: Management of time and effort; Complex cognitive strategy use; Simple cognitive strategy use; Contacts with others; Academic thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3381] "Subscales: Psychogenic and external factors; Pregnancy and environmental treatment; Genes and drugs; Diet; Brain abnormalities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3382] "Subscales: Frequency; Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3383] "Subscales: Personal Self-Care; Professional Self-Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3384] "Subscales: Team Climate; Safety Climate; Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3385] "Subscales: Honesty; Conscientiousness; Principle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3386] "Factors: Perfectionistic Strivings (PS); Perfectionistic Demands (PD); Perfectionistic Concerns (PC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3387] "Factors: Rumination; Distractibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3388] "Factors: Repetitive Behavior; Communication; Atypical Behavior; Social Reciprocity; Peer Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3389] "Factors: Truth; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3390] "Subscales: Positive affect (PANAS-P); Negative affect (PANAS-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3391] "Factors: Religious beliefs; Spiritual beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3392] "Subscales: Rumination; Distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3393] "Subscales: Irrational beliefs; Rational beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3394] "Subscales: Abuse; Violence; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3395] "Subscales: Acceptance and Committed action; Non-entanglement; Non-struggling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3396] "Factors: Emotional experience; Actual self (Self-concept); Ideal self (Self-concept); Lifestyle; Brand loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3397] "Constructs: Economic value (EC); Convenience value (CV); Emotional value (EM); Emotional aesthetic (EA); Social mindedness (SM); Repurchase intention (RI); Satisfaction (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3398] "Factors: Online compulsive buying; Excessive social networking site usage; Power-prestige; Distrust; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3399] "Subscales: Sexual motivation; Poor management; Attention seeking; Negative emotion and unstable mental health; Lacks education; Need for action; Increase awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3400] "Factors: Impulse control; Resisting distractions; Overcoming internal resistance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3401] "Subscales: Intrusion and strength; Vividness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3402] "Subscales: Commitment; In-depth exploration; Reconsideration of commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3403] "Subscales: Basic self-care and routine activities; Complex or multistage daily activities; Social and leisure activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3404] "Subscales: Home numeracy activities; Home numeracy resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3405] "Subscales: Ability to connect; Ability to question; Ability to express."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3406] "Factors: Innovativeness; Optimism; Technology Readiness; Visual Appeal; Facilitating Conditions; Perceived Usefulness; Perceived Ease of Use; Augmented Reality Attitude; Intention to Use; Word of Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3407] "Constructs: Perceived informativeness (PI); Perceived source credibility (PSC); Perceived persuasiveness (PP); Perceived utilitarian value (PUV); Perceived hedonic value (PHV); Intention to believe rebuttal (ITB); Intention to share rebuttal (ITS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3408] "Subscales: Physical Layout; Youth Activities; Physical (Dis)Order; Adult Activities; Social (Dis)Order subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3409] "Factors: Interoceptive urges and visceral pain; Interoceptive experiences and bodily pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3410] "Factors: Acoustic Attributes; Forceful Attributes; Instrumental Attributes; Mellow Attributes; Energetic Attributes; Easy-Listening Attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3411] "Factors: Immediate Consequences; Future Consequences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3412] "Scales: Internal networking; External networking. Factors: Building; Maintaining; Using."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3413] "Factors: Constructivist beliefs in career decision-making-satisficing decision; Constructivist beliefs in career decision-making-agentic creation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3414] "Subscales: Psychological Abuse; Coercive Control; Physical Abuse; Threatened and Escalated Physical Violence; Sexual Assault, Intimidation, and Coercion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3415] "Factors: Harm; Intent; Frequency; Power Differential."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3416] "Factors: Career concern; Career control; Career curiosity; Career confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3417] "Subfactors: Internalized sexual objectification; Commenting about women’s bodies; Looking down on unattractive women."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3418] "Factors: General factor of perceptions; Perceptions of integration between face-to-face and online learning; Perceptions of the online contributions; Perceptions of the online workload."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3419] "Subscales: Programming affiliation; Programming engagement; Programming actualization; Programming goal setting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3420] "Factors: Ease of e-assessment system use; Experience with the e-assessment system; Involvement while completing the CDT."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3421] "Factors: Beneficial social relationships; Positive reinforcement; Support; Encouragement; Role model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3422] "Factors: Value; Structure; Sound"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3423] "Factors: Fear of disability following a relapse; Fear of the psychological and physiological consequences of a relapse; Limitations resulting from fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3424] "Subscales: Individual Level; Group Level; Organizational Level; Individual Aspects; Leadership Aspects; Internal Aspects of the Team; Team Management Aspects; Company Cultural Aspects; Management and Creativity Control Aspects; Creativity Structural Aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3425] "Subscales: Commitment; In-depth exploration; Reconsideration of commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3426] "Subscales: Visual; Acoustic; Haptic; Olfactory; Gustatory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3427] "Subscales: Mental Health; Study Behaviors; Trauma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3428] "Scales: Completeness of the task; Room for maneuver; Variability; Lack of information; Information overload; Lack of role clarity; Skill deficiencies; Insufficient demand; Social pressures by customers; Emotional dissonance; Stressful working hours; Unlimited working hours; Labor intensity; Interruptions; Lack of communication options; Social support through colleagues; Social stressors through colleagues; Social support by superiors; Feedback and recognition; Environmental pollution (Overall index)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3429] "Subscales: Cultural awareness ability; Cultural action ability; Cultural resources application ability; Self-learning cultural ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3430] "Subscales: Attractiveness; Partner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3431] "Subscales: School Trust; Social Belonging; Evaluation Anxiety; Self-Complexity; External Locus of Control; Identification with School."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3432] "Subscales: Student experience of the workshops; Value of the different types of learning materials; Experience of the peer tutors; Experience of students that received peer tutoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3433] "Factors: Proactive customer orientation; Responsive customer orientation; Perceived value; Word-of-mouth; Cross-buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3434] "Subscales: Relationship-oriented conflict; Task-oriented conflict; Process-oriented conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3435] "Subscales: Pain/function; Mood/sedation; Compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3436] "Subscales: Letter-sound knowledge; Phonological skills; Decoding; Orthographic discrimination; Lexical decision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3437] "Subscales: Reactive helping behaviors; Proactive helping behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3438] "Factors: Fair and supportive relationship with teachers; School satisfaction; Achievement values; Failure anticipation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3439] "Factors: Beliefs about performing exercise regimen (BPE); Beliefs about following food recommendations and insulin administration and medication (FMR); Beliefs about learning and following from others (LFO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3440] "Factors: Difficulty prioritizing self-care; Guilt/worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3441] "Factors: Benefit; Satisfaction; Guidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3442] "Factors: Affect-Driven Training; Training Amount; Training Against Medical Advice; Body Dissatisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3443] "Factors: Online Self-Presentation; Appearance-Related Activity; Appearance Comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3444] "Engagement Factors: Emotional; Cognitive; Behavioral; Social. Disengagement Factors: DEmotional; DCognitive; DBehavioral; DSocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3445] "Factors: Avoidance of Stimuli That Provoke Negative Affectivity (ANA); Escape From Aversive Social and/or Evaluative Situations (EAS); Pursuit of Attention (PA); Pursuit of Tangible Reinforcement (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3446] "Variables: Self-congruity (SELFCON); Nation Brand (NB); Destination Brand (DB); Intention to create positive content in social media about Columbia (ICPC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3447] "Factors: Esprit of Profession, Organization & Workgroup (EPOW); Leader Facilitation & Support (LFS); Cohesion, Clarity & Objectivity of System (CCOS); Job Challenge, Variety & Feedback (JCVF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3448] "Subscales: Religious beliefs/Practices; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3449] "Subscales: Acquisition; Difficulty discarding; Clutter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3450] "Subscales: Clutter; Difficulty Discarding; Acquisition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3451] "Factors: Being with nature; Self-growth; Learning; Relaxation; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3452] "Subscales: Activity; Symptom."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3453] "Subscales: Activity/Participation; Body functions (Symptoms)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3454] "Factors: Capability of advertising to involve customers and catch their attention (Satisfaction with advertising); Wearability and image communicated through the product itself (Satisfaction with wearability and image communicated by the use of the product); Quality of the good even in relation with its price (Satisfaction with quality in relation with price)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3455] "Domains: Sleep; Autonomic symptoms; Fatigue; Emotional well-being; Stigma; Activities of daily life; Sensory symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3456] "Domains: Physical and Mental Health; Locomotion; Body Composition; Functionality; Activities of Daily Living; Leisure activities; Fears."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3457] "Factors: Behavior with respect toward others; Self in relation to others; Self-value; Perceived value from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3458] "Subscales: Benign Schadenfreude; Malicious Schadenfreude"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3459] "Subscales: Positive perception of assessment center; Job satisfaction; Organizational commitment; Transformational leadership; Transactional leadership; Job stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3460] "Subscales: Home Integration; Social Integration; Productivity; Electronic Social Networking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3461] "Subscales: Attractiveness; Competence; Dominance; Extroversion; Likability; Threat; Trustworthiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3462] "Factors: Child as an empty box; Child without agency; Competent child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3463] "Subscales: Support for caring; Caring choice; Caring stress; Money matters; Personal growth; Sense of value; Ability to care; Carer satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3464] "Subscales: Self-care; Sphincter control; Transfers; Locomotion; Communication; Psychosocial adjustment; Cognitive functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3465] "Subscales: Cognitive/psychosocial (PCAT-Cog); Complex Physical (PCAT-Phys)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3466] "Subscales: Difficulty; Relevance; Anxiety; Enjoyment; Self-efficacy; Context dependency; Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3467] "Factors: Emotional well-being (EW); Physical well-being (PW); Material well-being (MW); Self-determination (SD); Interpersonal relationships (IR); Social inclusion (SI); Personal development (PD); Rights (RI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3468] "Subscales: Adult control of foods consumed; Bribing with sweet foods; Supportive adult roles at mealtime; Autonomy supporting cues; Autonomy undermining cues; Social comparisons; Autonomy promoting beliefs; Coercive beliefs; Concern-based control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3469] "Factors: Social interaction; Negative emotions; Leisure and the outdoors; Independence; Physical health; Positive emotions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3470] "Subscales: Autonomous Motivation; Controlled Motivation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3471] "Subscales: Overall CSR performance; Discretionary CSR; Ethical CSR; Legal CSR; Economic CSR; Organization-employee relationships; Control mutuality; Trust; Commitment; Satisfaction; Perceived CSR-culture fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3472] "Factors: Harm; Offense; Poor Character; Moralism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3473] "Subscales: Compulsion-associated; Situation-associated; Impulse-associated; Relational-associated; Lability-associated; Control-associated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3474] "Subscales: School Connectedness; Family Relations; Academic Success; Sporting Interest; Peer Acceptance; Acceptance of Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3475] "Subscales: Overall hand function; Activities of daily living (ADL); Pain; Work performance; Aesthetics; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3476] "Subscales: Planning, organization, and curriculum coverage; Teaching mindfulness; Guiding mindfulness practices; Management of the learning environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3477] "Subscales: Conscientiousness; Transformational; Contingent reward; Management-by-exception active; Management-by-exception passive; Laissez-faire; Safety attitudes; Safety norms; Safety control; Safety motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3478] "Subscales: Psychological functioning; Genitalia; Social gender role recognition; Physical and emotional intimacy; Chest; Other secondary sex characteristics; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3479] "Dimensions:Sleep onset; Sleep continuity; Sleep quality; Dreams; Breathing; Parasomnias; Daytime sleepiness; Energy; Sleep offset; Impact—cognitive; Impact—activities; Impact—affect or behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3480] "Subscales: Engagement; Enjoyment; Anxiety; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3481] "Subscales: Fear of Sleep; Vigilant Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3482] "Subscales: Perceived procedural justice effectiveness; Procedural justice interaction; Communication skills; Citizen focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3483] "Subscales: Bond to partner; Bond to community; Homeownership; Residential Mobility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3484] "Subscales: Transgression; Artistic quality; Antithetical; Ideal beauty; Taboo."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3485] "Factors: Thwarted belongingness (TB); Perceived burdensomeness (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3486] "Subscales: Competence; Autonomy; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3487] "Subscales: Body Functions and Structures; Activities and Participation; Environmental Factors; Personal Factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3488] "Factors: Fear of loss of control; Fear of darkness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3489] "Factors: Intrinsic Religious Orientation (IRO); Quest Religious Orientation (QRO); Extrinsic Religious Orientation (ERO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3490] "Subscales: Cognition; Consciousness; Self-Awareness and Presence; Somatization; Transitivism/Demarcation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3491] "Subscales: Condensed Inner Speech; Dialogic Inner Speech; Other People in Inner Speech; Evaluative/Motivational Inner Speech."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3492] "Subscales: Dialogic (D); Evaluative/critical (E); Other people (O); Condensed (C); Positive/regulatory (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3493] "Subscales: Task conflict; Relationship conflict; Contractual control; Contractual coordination; Contractual adaptation; Owner's dependence on the contractor; Contractor's dependence on the owner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3494] "Subscales: Helpful Beliefs; Unhelpful-Individual Beliefs; Unhelpful-Social Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3495] "Subscales: Predisposition to auditory hallucinations; Predisposition to visual hallucinations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3496] "Subscales: Identifying; Decision-Making; Ethical Principles and Law; Dilemma and Responsibilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3497] "Subscales: Rumination; Magnification; Helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3498] "Constructs: System quality; Information quality; Perceived enjoyment; Perceived fee; User satisfaction; Intention to reuse; Learning effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3499] "Subscales: Speech; Spatial; Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3500] "Subscales: Auditory hallucinations (AH); Visual hallucinations (VH); Total hallucinations (TotH); Delusions (D); Current; Lifetime. Factors: Impact on functioning; Incidence; Illusions; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3501] "Factors: Personal insults; Work-related blame; Professional understating; Unreasonable work-related demands; Work-related malpractice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3502] "Scales: Measure of skill in Supported Conversation; Measure of Participation in Conversation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3503] "Subscales: Acknowledging competence; Revealing competence; Interaction; Transaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3504] "Subscales: Complexity (CRG); Affect Tone character (ARGc); Affect Tone person (ARGp); Investment (IRG); Agency-situation (AGCs); Agency-reaction (AGCr); Agency-explanation (AGCe)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3505] "Subscales: Beliefs about inclusion; Feelings about inclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3506] "Factors: Intention to Consult with Others; Intention to Implement Curriculum Changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3507] "Subscales: Inclusive Instruction; Collaboration; Managing Behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3508] "Factors: Efficacy to use Inclusive Instructions; Efficacy in Collaboration; Efficacy in Managing Behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3509] "Subscales: Bond to economic institution; Number of economic institutions; Number of economic sectors; Number of changes in economic institutions; Number of changes in economic sectors; Bond to executive position; Number of executive positions; Number of economic sectors for executive positions; Number of changes in executive positions; Number of changes in the economic sector of executive positions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3510] "Factors: Internalizing/Externalizing Symptoms (Depression; Social Anxiety; Performance Anxiety; Agoraphobia/Panic; Separation Anxiety; Somatic Complaints; Aggression; School Aversion/Attractive Alternatives); Emotional Distress due to Problems in the School or Family Context (Problems with Teachers; Dislike of the Specific School; Problems with Peers; Problems Within the Family; Problems with Parents)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3511] "Factors: Appearance; Competence; Attention/Interpersonal Success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3512] "Factors: Dominance/Control; Sympathy/Perspective-taking; Humanity/Integrity; Rapport."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3513] "Factors: Self-connectedness; Self-doubt; Others-oriented; Openness to share."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3514] "Subscales: Cognitive; Emotional; Behavioral; Negative Consequences-Health; Negative Consequences–Impairment in social or academic functioning; Differential Diagnosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3515] "Factors: Repetitive (RE); Compulsive (CG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3516] "Subscales: Compulsive grazing; Repetitive eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3517] "Factors: Harmonious Passion; Obsessive Passion; Inhibited Passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3518] "Factors: Conduct Problems; Hyperactivity; Attention Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3519] "Subscales: Negative Emotions; Positive Feelings; Uncertainty; Privacy Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3520] "Factors: Vigor; Dedication; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3521] "Factors: Vigor; Dedication; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3522] "Factors: Critical member capacity; Equal relations; Democratic network governance; Empowering coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3523] "Subscales: Relatedness (with the teacher); Relatedness (with peers); Growth needs; Existence needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3524] "Factors: Proximity seeking; Positive model of God; Positive Model of Self; Separation Protest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3525] "Subscales: Learning climate; Classroom management; Clarity of instruction; Activating teaching; Teaching learning strategies; Differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3526] "Factors: Safe and stimulating learning climate; Efficient classroom management; Clear instruction; Activating learning; Adaptation of teaching; Teaching–learning strategy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3527] "Subscales: Sensory sensitivity; Lack of interest food or eating; Fear of aversive consequences; Overall severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3528] "Subscales: Mood volatility/excitement; Social vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3529] "Dimensions: Strong involvement; Restricted involvement; Uninvolved."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3530] "Factors: Emotional Dysregulation; Dissocial; Intimacy Problems; Compulsivity. Scales: Submissive; Cognitive Distortion; Identity Problems; Affective Liability; Stimulus Seeking; Compulsivity; Restricted Expression; Callousness; Oppositionality; Intimacy Problems; Rejection; Anxiousness; Conduct Problems; Suspiciousness; Social Avoidance; Narcissism; Insecure Attachment; Self-Harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3531] "Subscales: Mental Disorder; Time Management Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3532] "Subscales: Visibility in Society; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3533] "Subscales: Mistrust of arguments from authority; Open-mindedness; Scepticism; Rationality; Objectivity; Suspension of belief; Curiosity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3534] "Subscales: Sustainability orientation; Green supplier involvement as a knowledge source; Green supplier involvement as a co-creator; Green knowledge-processing capability; Green Research and Development (R&D) capability; Green product/process innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3535] "Factors: Perceived Prejudice; Closet Symptoms; Negative Labels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3536] "Subscales: Ethical consumption; Guilt; Interdependent self-construal; Independent self-construal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3537] "Factors: Preoccupation; Overuse; Immersion; Social isolation; Interpersonal conflicts; Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3538] "Subscales: Washing; Checking; Ordering; Obsessing; Hoarding; Neutralizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3539] "Factors: Empathy; Honesty; Respect; Courage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3540] "Factors: Nation responsibility; Nature responsibility; Others responsibility; Organization responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3541] "Factors: Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3542] "Subscales: Prominence; Prospectus; Program; Price; People; Premium; Promotion; Corporate brand (or university brand); Product brand (or graduate degree brand/MBA brand)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3543] "Scales: Paternal invalidation; Maternal invalidation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3544] "Factors: Open communication about the general nature of the supervisory relationship; Managing disagreement and discomfort. Scales: Frequency; Supervisee willingness; Perceived supervisor willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3545] "Factors: Parents' beliefs in the importance of early math and confidence helping their child learn math; Parents' enjoyment and confidence helping their child learn literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3546] "Factors: Food Available; Food Present; Food Taste."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3547] "Factors: Restrictive/critical messages (RCM); Pressure-to-eat messages (PEM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3548] "Factors: Unconditional Permission to Eat (UPE); Eating for Physical Rather than Emotional Reasons (EPRER); Reliance on Hunger and Satiety Cues (RHSC); Body-Food Choice Congruence (BFCC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3549] "Subscales: Cultural competence; Self-management; Social capacity; Informational fairness; Interpersonal fairness; Recovery self-efficacy; Organizational recovery system; Service recovery performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3550] "Domains: Client participation in decision-making and goal-setting; Client-centred education; Evaluation of outcomes from client’s perspective; Family involvement; Emotional support; Co-ordination/continuity; Physical comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3551] "Factors: Client participation in decision-making and goal-setting; Client-centered education; Outcome evaluation from client's perspective; Family involvement; Emotional support; Physical comfort; Continuity/coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3552] "Factors: Reasons for leaving regular school; Hopes for special school; Decision-making process. Subscales: Learning barriers; Emotional strain; Exclusionary school culture; Well-being; Learning; Personhood; Difficulties; Paternalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3553] "Factors: Complex Skills; Communication; Genetic Testing; Basic Psychosocial Skills; Genetic Counseling Process; Information Gathering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3554] "Factors: Participation in the local community; Family/friends and neighborhood connections; Feelings of trust and safety; Value of life; Tolerance of diversity; Pro-activity in a social context."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3555] "Domains: Activities of daily living; Mobility; Social participation; Assistance; Emotional effects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3556] "Subscales: Family conflict; Social support; Sexual minority stress; Acculturative stress; Non-specific minority stress; Idioms of distress (emotional/somatic); Idioms of distress (suicidal actions); Cultural sanctions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3557] "Subscales: Unstable sense of reality; Ideas of reference/paranoia; Sensitivity to sensory experiences; Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3558] "Subscales: Therapist Emotional Experiences; Therapist Judgments; Therapist Reactions in Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3559] "Subscales: Diligence; Integrity; Self-Preservation; Self-Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3560] "Factors: Strength; Body Fat; Physical Activity; Endurance/Fitness; Sport Competence; Coordination; Health; Appearance; Flexibility; General Physical Self-Concept; Self-Esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3561] "Factors: Activity; Appearance; Body Fat; Coordination; Endurance; Esteem; Flexibility; General Physical; Health; Sport; Strength."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3562] "Factors: Perceptual-motor skills; Safety skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3563] "Factors: Hostile aggression and Revenge; Aggressive warnings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3564] "Factors: Self-serving, altruistic ideological motives (SSAIM); Self-serving, altruistic pedagogical motives (SSAPM); Egoistic motives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3565] "Subscales: Attitudes; Knowledge; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3566] "Factors: Prosocial behavior toward teammates; Prosocial behavior toward opponents; Antisocial behavior toward teammates; Antisocial behavior toward opponents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3567] "Subscales: Commitment to university publicness (UniPub); Commitment to performance-based management (PerfCom); Reputation (Reput); Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3568] "Scales: Honesty-Humility; Emotionality; Extraversion; Agreeableness; Conscientiousness; Openness to Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3569] "Factors: Civic skills; Civic duty; Internal political efficacy; Civic behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3570] "Factors: Direct bullying; Indirect bullying; Evaluative bullying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3571] "Subscales: Frequency; Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3572] "Subscales: Self-functioning; Interpersonal functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3573] "Subscales: Presence; Awareness of Self and Others; Nonjudgmental Acceptance; Nonreactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3574] "Factors: Inappropriate Touch Scale (ITS); Appropriate Touch Scale (ATS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3575] "Factors: planned pacing behaviors; pacing through flare ups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3576] "Domains: Quality with reference to the individual; Setting and follow up of personal development plans; Staff training; Structure and organization of services; Human resources, equipment, and premises; Community access, and social empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3577] "Subscales: Distress; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3578] "Subscales: Rare Symptoms; Symptom Combinations; Extreme Psychopathology; Over-report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3579] "Subscales: Socialized reflexivity; Self-exertion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3580] "Subscales: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3581] "Subscales: Cooperation; Assertion; Responsibility; Empathy; Engagement; Self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3582] "Subscales: Rigid Demand (RD); Awfulizing Beliefs (AB); Low Frustration Tolerance (LFT); Global Evaluation (GE); Rational Beliefs (RB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3583] "Subscales: Social limitations; Problematic/repetitive behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3584] "Subscales: Meaninglessness (ML); Distrust (DT); Moral decline (MD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3585] "Subscales: Emotional attachment; Fashion leadership; Prestige sensitivity; Social value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3586] "Factors: Self-care; Socially useful activities; Personal and social relationships; Disturbing and aggressive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3587] "Scales: Classroom mastery goal structure; Classroom extrinsic goal structure; Classroom avoidance goal structure; Impulsive decision making; Sensation seeking; Cheating beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3588] "Factors: Well-being and relatedness; Order; Liberality; Vertical self-transcendence; Horizontal self-transcendence; Accomplishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3589] "Factors: Self-actualization; Vertical self-transcendence; Order; Well-being and relatedness; Horizontal self-transcendence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3590] "Subscales: Presence (MLQ-H-P); Search (MLQ-H-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3591] "Factors: Presence of meaning (MLQ-P); Search for meaning (MLQ-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3592] "Factors: Goals When Speaking: Not Stuttering; Stuttering Openly. During the Moment of Stuttering: Overt; Covert. During a Moment of Not Stuttering: Overt; Covert; Cognitive-Affective Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3593] "Subscales: Positive affect; Negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3594] "Subscales: Motive; Method; Behavior; Time management; Social influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3595] "Subscales: Personal Transition; Care Transitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3596] "Subscales: Socialness; Social Communicative Competence; Imagination; Patterns; Attention Switching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3597] "Subscales: Contentment; Self-respect; Self-control; Anxiety and fear; Insufficiency; Motherhood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3598] "Subscales: Consumption reduction; Environmental concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3599] "Subscales: Preparedness to Quit Smoking; Work and Time Constraints; Smokers Can or Should Quit on Own; Opinions about Professional Assistance; Mobility Limitations; Insurance Limitations; Misinformation about Professional Assistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3600] "Subscales: Family identification with the firm (IDENTIF); Orientation toward key non-family stakeholders (ORNOFAMSTA); Economic performance (PERFORM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3601] "Factors: Strengths; Difficulties; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3602] "Factors: Task Conflict; Social Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3603] "Factors: Interest; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3604] "Subscales: Incidence; Frequency; Difficulty; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3605] "Factors: Client discovery with support; Client-centered planning and management; Client assessment and training; Integration of diverse groups; Promotion of adaptation between groups; Integration of resources to address the structural constraints; Promotion of social recognition and social justice. Subscales: micro-level competencies; mezzo-level competencies; macro-level competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3606] "Subscales: Teasing; Rough-and-tumble play; Encouragement of risk taking; Social daring; Competition; Encouragement of assertiveness; Challenging modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3607] "Subscales: Willingness to share (WSI); Privacy concerns (PC); Disease severity (DS); Online information support (OIS); Information sensitivity (IS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3608] "Factors: Social identification; Homophily; Information bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3609] "Primary factor: Task, goal, and copresence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3610] "Subscales: Community Activities; Media; Nightlife; Political Activism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3611] "Subscales: Code of Silence: Minor Misconduct; Code of Silence: Serious Misconduct; Effective Parenting: Positive Modeling; Effective Parenting: Corrective Action; Self-Control: Mental Orientation; Self-Control: Impulsivity/Temper; Self-Control: Risk-Seeking; Exposure to Minor Violence; Exposure to Serious Violence; Healthy Family Dynamics; Job Satisfaction; Cynicism: Fatalism of Police Efficacy; Cynicism: Perceptions of Dishonesty in Society; Cynicism: Positive Views of the Police; Cynicism: Political Cynicism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3612] "Factors: Sleep expectations; Worry about insomnia; Perceived consequences of insomnia and medication; Cancer-related concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3613] "Factors: Interpersonal functions; Intrapersonal functions. Interpersonal Subscales: Toughness and Autonomy; Interpersonal Influence; Interpersonal Boundaries; Revenge; Peer Bonding. Intrapersonal Subscales: Affect Regulation; Self-Punishment; Anti-Dissociation; Introspective Medium; Replacement of Suffering; Escape Mechanism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3614] "Factors: Perceived gender bias; Perceived quality of academic writing; Perceived readability of writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3615] "Factors: Zealous Religious Dedication (ZRD); Religious Self-Criticism (RSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3616] "Subscales: Support and Protection; Having an Impact; Authenticity; Shared Experience; Initiative from the Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3617] "Subscales: Technology to bridge online and offline experiences and preferences; Technology to go outside one's identity or offline environment; Technology for social connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3618] "Subscales: Static Supporting Surface; Dynamic Supporting Surface."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3619] "Subscales: Cyberbullying; Cybervictimization; Cyber-defending; Cyber-passive bystanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3620] "Subscales: Social Support; Community Drivenness; Community Identification; Community Trust; Customer Engagement (Vigor; Dedication; Absorption); Willingness to Co-create; Stickiness Intention; Repurchase Intention; Positive electronic word of mouth (eWOM) intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3621] "Factors: Thwarted belongingness; Perceived burdensomeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3622] "Factors: Activities (ACT); Information (INF); Relationships (REL); Caring (CAR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3623] "Subscales: General cognitive difficulties; Fatigue; Prospective memory difficulties; Low self-esteem; Interpersonal difficulties; Non-supportive workplace; Movement/mobility difficulties; Workplace inaccessibility; Pain/temperature difficulties; Bladder/bowel difficulties; Work/home balance difficulties; Financial security concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3624] "Factors: Competence and attachment anxieties; Safety and welfare anxieties; Practical baby care anxieties; Psychosocial adjustment to motherhood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3625] "Factors: Psychological/Cognitive Barriers; Physical Barriers; External Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3626] "Factors: Extraversion; Agreeableness; Conscientiousness; Negative emotionality; Open-mindedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3627] "Factors: Structure; Challenge; Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3628] "Factors: Attitude; Subjective norm (SN); Perceived behavioural control (PBC); Intentions; Behavioural beliefs; Normative beliefs; Control beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3629] "Subscales: Identity-Based Growth; Identity Cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3630] "Factors: Psychosis; Mood; Euphoria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3631] "Factors: Anxiety and depression risk; Substance misuse risk; Interpersonal risk; Chronic risk; Risk due to life events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3632] "Factors: Interpersonal resilience; Cognitive resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3633] "Factors: Trigger Stimulus; Consequence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3634] "Factors: Thoughts; Feelings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3635] "Factors: Affirmation; Concrete Aid; Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3636] "Factors: Encourage/Monitor scale; Protect scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3637] "Factors: Confidence in newborn care; Postpartum nursing care; Provision of choice; Physical environment; Respect for privacy; Labor/delivery nursing care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3638] "Factors: Humiliation; Physical adverse effects; Interpersonal separation; Negative environmental influences; Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3639] "Domains: Memory; Orientation; Judgment; Community affairs; Home hobbies; Personal care; Personality & Behavioral problem; Language."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3640] "Factors: Sport commitment; Social constraints; Sport enjoyment; Involvement Alternatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3641] "Subscales: Enthusiastic commitment; Constrained commitment; Sport enjoyment; Valuable opportunities; Other priorities; Personal investments-loss; Personal investments-quantity; Social constraints; Social support-emotional; Social support-informational; Desire to excel—Mastery; Desire to excel—Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3642] "Subscales: Sense of Incompetence and Helplessness; Distress and Entrapment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3643] "Scales: Normalization process scale (total score); Coherence (CO); Cognitive participation (CP); Collective action (CA); Reflexive monitoring (RM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3644] "Subscales: Quality of care; Women's attributes; Stress experienced."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3645] "Subscales: Holistic view; Self-acceptance; Self-understanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3646] "Factors: Commitment regulation in ICT based vocabulary learning; Metacognitive regulation in ICT based vocabulary learning; Affective regulation in ICT based vocabulary learning; Social regulation in ICT based vocabulary learning; Resource regulation in ICT based vocabulary learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3647] "Domains: Life applications; Self in Group; Agency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3648] "Subscales: Self-awareness; Cognitive empathy; Social skills; Emotional reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3649] "Subscales: Self-monitoring and insight; Constructive attitudes and approaches; Skill and technique acquisition; Emotional distress; Feeling understood and supported by health care providers; Social support for health; Using technology to process health information; Understanding of health concepts and language; Ability to actively engage with digital services; Feel safe and in control; Motivated to engage with digital services; Access to digital services that work; Digital services that suit individual needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3650] "Factors: Social skills; Cognitive empathy; Emotional reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3651] "Factors: Cognitive empathy; Emotional empathy; Social skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3652] "Factors: Gross motor performance; Static position and fine motor performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3653] "Subscales: Cognitive Function; Executive Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3654] "Factors: Identifying with my state; Solidarity and social justice; Trust in National institutions; Trust in public justice. Subscales: Confidence in Prime Minister and the government; Patriotism; Society's coping with crisis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3655] "Factors: Social wellbeing (SWB); Academic wellbeing (AWB); Emotional wellbeing (EWB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3656] "Subscales: Adult Affect (AA); Adult Behavior (AB); Adult Cognition (AC); Child Affect (CA); Child Behavior (CB); Child Cognition (CC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3657] "Factors: Classical; Modern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3658] "Domains: Physical traits; Behavioral features."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3659] "Domains: Physical characteristics; Behavioral features."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3660] "Subscales: Training; Knowledge; Awareness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3661] "Subscales: Coping; Intoxication enhancement; Energy enhancement; Conformity; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3662] "Factors: Cognitive Challenge (COG); Performative Challenge (PERF); Emotional Challenge (EMO); Decision-Making Challenge (DM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3663] "Factors: Willingness scale (WS); Avoidance scale (AS); Psychological flexibility (PF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3664] "Factors: Food as control; Weight as barrier to living; Weight-stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3665] "Factors: Conversational Effectiveness; Successful Communicative Supports."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3666] "Factors: Clarification of Value and Commitment (CVC); Continuation of Avoidance (CA)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3667] "Factors: Unworkable action; Mindful acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3668] "Subscales: Fan-to-fan relationship; Team-to-fan relationship; Fan co-creation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3669] "Subscales: Child Resistance to Eating; Positive Mealtime Environment; Parent Aversion to Mealtime."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3670] "Subscales: Discomfort; Knowledge of capacity and rights; Interaction; Sensitivity or tenderness; Knowledge of causes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3671] "Subscales: Drama and Excitement; Intentions to Follow Cricket; Nostalgic Association; Patriotism; Social Influence; Interest in the Star Players."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3672] "Subscales: Pressures to perform; Perceptions of workload; Academic Self-Perception; Time restraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3673] "Subscales: Coping; Control; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3674] "Subscales: Diagnosticity; Stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3675] "Subscales: Food; Imagination; Nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3676] "Subscales: Effectiveness/Productivity; Organizational Trust; Work-Related Flexibility; Work-Life Interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3677] "Subscales: Attitudes towards online health information; Comfort with sharing health experiences online; Usefulness of sharing health experiences online; Motivation and confidence to act; Information and presentation; Identification. Factors: Motivation and confidence to act; Information and presentation; Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3678] "Subscales: Resistance to Framing (RF); Recognizing Social Norms (RSN); Under/Overconfidence (UOC); Applying Decision Rules (ADR); Consistency in Risk Perception (CRP); Resistance to Sunk Costs (RtSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3679] "Subscales: Social intelligence; Love; Kindness; Fairness; Teamwork; Perspective; Leadership; Bravery; Love of learning; Curiosity; Appreciation of beauty; Creativity; Prudence; Self-regulation; Forgiveness; Open-mindedness; Modesty; Persistence; Zest; Gratitude; Spirituality; Hope; Humor; Authenticity. Factors: Interpersonal strengths; Intellectual strengths; Temperance strengths; Transcendence strengths."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3680] "Subscales: Withdrawal ruptures; Confrontation ruptures; Resolution strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3681] "Factors: Psychological openness (PO); Help-seeking propensity (HP); Indifference to stigma (IS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3682] "Factors: Interpretation; Experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3683] "Factors: Optimism; Innovativeness; Insecurity; Discomfort; Perceived ease of use (PEOU); Perceived usefulness (PU); Intention to use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3684] "Factors: Non-Electrical; Electrical; Natural. Coding categories (Open-ended item): Power; Electrical; Electronic; Mechanical; Human-Made; Solves-a-problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3685] "Factors: Noticing; Not-Distracting; Not-Worrying; Attention Regulation; Emotional Awareness; Self-Regulation; Body Listening; Trusting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3686] "Factors: Time barrier; Tiredness barrier."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3687] "Factors: Thinking skills; Multiple perspectives; Prior knowledge; Self-regulation; Collaboration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3688] "Subscales: Teacher Interactions; Peer Interactions; Task Orientation; Conflict Interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3689] "Factors: Religious Leader Support (RLS); Allah Support (AS); Religious Participant Support (RPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3690] "Scales: Employee resources investments; Organizational resource investments. Subscales: Care; Services; Information; Status; Monetary investments."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3691] "Factors: Frequency; Quality; Elaboration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3692] "Factors: Identification with Self-Image; Identification with Ideal Outcome; Identification with Comfort Zone Feelings; Identification with Striving Ideals; Identification with The Material Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3693] "Factors: Social discrimination and selectivity; Physical and verbal closeness; Friendliness level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3694] "Subscales: Rich and varied lessons; Increased support; Learning gains; Confusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3695] "Subscales: Chaos; Structure; Autonomy support; Warmth; Rejection; Coercion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3696] "Subscales: Personal Relevance; Student Cohesiveness; Teacher Support; Investigation/Involvement; Task Orientation; Enjoyment of Science."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3697] "Subscales: Warmth; Rejection; Structure; Chaos; Autonomy support; Coercion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3698] "Dimensions: (1) spirituality focused on understanding God vs. understanding the Self; and (2) the psychological closeness of the Self and the Divine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3699] "Subscales: Brand equity; Repurchase intention; Distributive justice; Interactional justice; Stability of attribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3700] "Subscales: Sexism and Racism Awareness; Communitarian Values; Multicultural Ideology; Inequality Consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3701] "Factors: Goals and Data; Facilitator Effectiveness; Interpersonal Perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3702] "Factors: Instills confidence through caring; Supportive learning climate; Control vs flexibility; Respectful sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3703] "Subscales: Helpless/Hopeless (HH); Anxious Preoccupation (AP); Fighting Spirit(FS); Fatalism (FA); Cognitive Avoidance (CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3704] "Subscales: Depression (DS); Somatic (SS)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3705] "Subscales: Termination practices theorized as applicable to older adults with PD; Protective termination practices theorized as more applicable to older adults"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3706] "Subscales: Knowledge; Attitude; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3707] "Factors: Sense of responsibility; Vocational identification; Agreeableness; Cooperation capacity; Carefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3708] "Domains: Physical sensations or physical reactions in response to thoughts or emotions; Spontaneous vivid imagery in response to specific thoughts or situations; Spontaneous influence on behavior by the imagination or nonconscious thought content; Spontaneous superimposing of a sense of meaning on neutral or ambiguous external stimuli; Spontaneous emotional responses to imagery; Spontaneous useful memory modulation; Effortless completion of complex familiar tasks with little or no conscious attention or volition; Narrowed awareness of, or dissociation from, the here-and-now in response to compelling thoughts or imagery; Personally valuable knowledge or ideas emerging spontaneously in consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3709] "Factors: Control; Help; Automaton; Magical; Collaboration; Interest; Memory; Marginal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3710] "Factors: Fear; Memory; Help; Control; Collaboration; Interest; Magic; Marginal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3711] "Factors: Environment; Care; Communication and respect; Autonomy; Activities; Transition (leaving)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3712] "Factors: Happiness; Anxiety; Anger; Dejection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3713] "Subscales: Coherence (CO); Cognitive participation (CP); Collective action (CA); Reflexive monitoring (RM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3714] "Subscales: Self-devaluation; Social withdrawal; Public stigma; Family stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3715] "Factors: Innovation Capability, Financial Resources; R & D Human Capital; Innovation Leadership; Collaborative Culture; Government Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3716] "Subscales: Harmony; Objectives; Structure; Future; Personal control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3717] "Subscales: Structure; Harmonious goals; Future; Control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3718] "Factors: Structure; Harmony; Goals; Future; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3719] "Subscales: Consumer knowledge; Consumer awareness & involvement; Credibility of environmental quality; Consumer trust; Design & visibility; Persuasiveness; Information clarity; Private benefit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3720] "Factors: Aggression (Outward Expression of Hostility); Hostility (Hostile Thoughts and Feelings). Subscales: Assaultiveness (Aggression); Indirect Hostility (Aggression); Verbal Hostility (Aggression); Negativism (Aggression; specific to girls); Irritability (Hostility); Resentment (Hostility); Suspicion (Hostility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3721] "Factors: Impulsivity; Callous-Unemotional (CU); Narcissism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3722] "Subscales: Depression; Anxiety; Outwardly directed irritability; Inwardly directed irritability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3723] "Scales: Parent-rated irritability; Child/Self-rated irritability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3724] "Subscales: Attachment behavior; Exploratory behavior; Socioemotional behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3725] "Factors: Animal rights; Anthropocentric; Animal protection; Lay utilitarian."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3726] "Factors: Realistic threat; Symbolic threat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3727] "Factors: Self-care; Dangerousness; Police behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3728] "Subscales: Suppression; Adjusting; Accepting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3729] "Factors: Social media; Customer relationship; Purchasing behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3730] "Subscales: Sexual/relational motives; Goal attainment/insecurity motives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3731] "Subscales: Incompetence; Undesirability; Abandon/Rejection; Powerless/Helpless; Difference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3732] "Factors: Undesirability/rejection; Incompetence; Self-depreciation; Difference/loneliness; Helpless."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3733] "Factors: Buying intention (BI); Functional utility (FU); Symbolic utility (SU); Attitude towards the Organisation (AtO); Concern (CONCERN); Perceived knowledge (PK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3734] "Subscales: Gender discrimination (GD); Sexual violence (SV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3735] "Subscales: Understanding; Action planning; Hope; Reassurance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3736] "Subscales: External similarity; Internal similarity; Parasocial interaction; Trust toward members; Trust toward social commerce platform; Social shopping intention; Social sharing intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3737] "Subscales: Academic engagement; Interpersonal skills; Study skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3738] "Factors: Desire for partner; Sex with partner; Sex with other persons; Desire for other persons; Autoerotic activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3739] "Factors: God Helped (GH); Family History of Religiousness (FHR); Lifetime Religious Social Support (LRSS); Cost of Religiousness (CR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3740] "Subscales: Stress Reduction; Pleasure; Physical Desirability; Experience Seeking; Resources; Reproduction; Social Status; Revenge; Practical; Love & Commitment; Expression; Self-Esteem Boost; Duty/Pressure; Mate Guarding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3741] "Subscales: Environment enhancement; Social competition; Attention seeking; Mood modification; Self-confidence; Subjective conformity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3742] "Scales: Phonological Component; Orthographic Component; Morphological Component."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3743] "Subscales: Gender bashing (GB); Transphobia/genderism (TG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3744] "Subscales: General beliefs; Adaptation of instruction to fit the learning characteristics of students with learning disabilities; Adaptation of instruction to teach middle school mathematics topics effectively to students with learning disabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3745] "Factors: Routine; Automaticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3746] "Factors: Ability-enhancing HR practices (Extensive training; Rigorous staffing); Motivation-enhancing HR practices (Performance-based appraisal and compensation; Employee relations); Opportunity-enhancing HR practices (Self-managed teams; Flexible work arrangements; Empowerment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3747] "Factors: Overevaluation of striving; Concern over mistakes; Clinical perfectionism (general factor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3748] "Subscales: PA: Assured–Dominant; BC: Competitive–Mistrusting; DE: Cold–Hostile; FG: Detached–Inhibited; HI: Unassuming–Submissive; JK: Deferent−Trusting; LM: Warm−Friendly; NO: Sociable−Exhibitionistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3749] "Factors: Math test and evaluation anxiety; Negative affect in relation to Math in general; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3750] "Subscales: Irrationality; Rationality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3751] "Subscales: Direct and Indirect Care; Emotional Support; Evocations; Physical Play and Openness to the World; Discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3752] "Factors: Emotional support; Opening to the world; Basic care; Physical play; Evocations; Discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3753] "Subscales: System support; Belief; Conceptual knowledge; Practical knowledge; Resource; Time; System barrier."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3754] "Subscales: Intrinsic Motivation (9 items); Extrinsic Motivation (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3755] "Scales: German; Mathematics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3756] "Factors: Apathy; Emotional. Domains: Social withdrawal; Diminished emotional range: Avolition; Anhedonia; Alogia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3757] "Factors: Diminished emotional range; Avolition; Alogia; Social withdrawal; Anhedonia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3758] "Subscales: Limiting Affection Conflict (LAC); Explaining the importance of the bond conflict (EBC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3759] "Factors: Respecting older adult in nursing care; Age discrimination and negative views towards older adults; Attention to older adult and their basic caring needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3760] "Subscales: Clinical; Empowerment; Vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3761] "Subscales: Territoriality; Knowledge hiding; Task performance; Interpersonal deviance; Organizational deviance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3762] "Subscales: Open-Minded Input-Driven Learning; Individualized Scaffolding; Growth Mindset; Forgiving Environment; Serious Commitment to Learning; Learning Multiple Skills Simultaneously."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3763] "Subscales: Reality testing ability; Judgment; Thinking processes; Creativity; Sense of reality; Object relations; Regulation and control of emotions, Impulses and instincts; Functioning of the defense; Autonomic functions; Stimulus threshold; Ability to synthesize; Predominance/success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3764] "Subscales: Functionally motivated consumer innovativeness; Hedonically motivated consumer innovativeness; Cognitively motivated consumer innovativeness; Socially motivated consumer innovativeness; Attitude; Desire; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3765] "Factors: Reducing intake of specific food item; Reducing intake of nutritious food; Reducing overall amount of food intake."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3766] "Subscales: Somatic symptoms; Anxiety and insomnia; Social dysfunction; Severe depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3767] "Factors: Traditional virtues (Virt); Relational values (Rela); Choice norms (Chnm)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3768] "Subscales: Green compensation management (GCM); Green health and safety (GHS); Green job design (GJD); Green labor relations (GLR); Green performance management (GPM); Green recruitment and selection (GRS); Green training and development (GTD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3769] "Factors: Ambiguous loss of homeland (ALH); Satisfaction with the country of origin (SCO); Satisfaction with the United States (SUS). Subscales: Ambiguous loss of homeland (ALH); Relative satisfaction (RS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3770] "Subscales: Observation; Targeted cueing; Instruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3771] "Subscales: Explanation provision; Seeking athlete involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3772] "Factors: Amotivation; External; Introjected; Identified; Intrinsic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3773] "Subscales: Hotel Image (HI); Service Quality (SQ); Perceived Value (PV); Tourist/Customer Satisfaction; Hotel Reputation (HR); Customer Commitment (CC); Customer Loyalty (CL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3774] "Indices: W; D. Domains: Absolutism; Relativism; Post-relativism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3775] "Subscales: Importance; Likelihood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3776] "Subscales: Political skill; Work role performance; Perceived organizational support; Intention to leave. Factors: Networking ability; Apparent sincerity; Social astuteness; Interpersonal influence; Individual task proficiency; Individual task adaptivity; Individual task proactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3777] "Factors: Contractual governance; Relational governance; Absorptive capacity; Software-as-a-Service adaptation actions; Software-As-A-Service Operational Benefits; Software-as-a-Service innovation benefits; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3778] "Subscales: Self Injurious Behavior (SIB); Aggressive–Destructive behavior; Stereotyped behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3779] "Factors: Cognitive Restructuring; Relaxation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3780] "Factors: Performing online social behavior; Receiving online social behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3781] "Factors: Pilgrim experiential risk; Pilgrim experiential desire; Pilgrim experiential motivation; Pilgrim experiential satisfaction; Pilgrim experiential trust; Celebrity attachment; Pilgrim experiential supportive intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3782] "Scales: Subjective Well-Being Scale for Chinese Citizens; Satisfaction with Life Scale; General Well-Being Scale; Well-Being Index Scale; Global Happiness Scale; Scale of Happiness of the Memorial University of Newfounland; Affect Balance Scale. Dimensions: Experience of Health; Experience of Satisfaction; Experience of Development; Life Satisfaction; Health Concerns; Energy; Satisfaction and Interest in Life; A Melancholy or Cheerful State of Mind; Control of Emotions and Behavior; Relaxation and Tension (Anxiety); General Well-Being Index; Measuring happiness at a global level; Positive Affect; Negative Affect; General Positive Experience; General Negative Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3783] "Subscales: Dominance; Prestige; Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3784] "Factors: Internal barriers; External barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3785] "Factors: Psychoticism (P); Extraversion (E); Neuroticism (N); Lie (L)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3786] "Factors: Psychoticism (P); Extraversion (E); Neuroticism (N); Lie (L)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3787] "Subscales: Competence; Autonomy; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3788] "Factors: Positive attitude scale (PAS); Negative attitude scale (NAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3789] "Subscales: Values; Acceptance; Mindfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3790] "Subscales: Control; Concerns; Material; Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3791] "Subscales: Mental and physical wellbeing; Injury pain and illness; Physical activity facilitators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3792] "Subscales: Spatial Presence; Active Social Presence; Passive Social Presence; Social Presence – Actor Within Medium; Engagement; Social Richness; Social Realism; Perceptual Realism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3793] "Factors: Moral processing; Self‐awareness; Relational transparency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3794] "Factors: Control During Movement; Fine Motor/Handwriting; Gross Motor/Planning; General Coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3795] "Subscales: Intrinsic motivation and integrative regulation (enjoyment and bonding); Identified regulation (maternal self-perception); Introjected regulation (significant others' pressure); External regulation (instrumental needs); External regulation (baby's health)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3796] "Subscales: Bonding; Enjoyment and maternal self-perception; Social approval; Social pressure; Instrumental needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3797] "Subscales: Visual; Auditory; Gustatory; Olfactory; Tactile; Vestibular; Proprioception; Hypo-responsiveness; Hyper-responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3798] "Factors: Autonomy; Competence; Relatedness; Beneficence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3799] "Subscales: Theft and burglary; Motor vehicle offenses; Drug-related offenses; Assault; Vandalism; School-related offenses; Public disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3800] "Subscales: Theft and burglary; Motor vehicle offenses; Drug-related offenses; Assault; Vandalism; School-related offenses; Public disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3801] "Subscales: Loss of purpose; Inability to cope with the illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3802] "Subscales: Other-awareness; Self-awareness; Courage; Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3803] "Factors: Gendered emotion expression; Gender-neutral emotion expression; Gendered emotion socialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3804] "Factors: Pre-contemplation; Contemplation; Preparation; Action/Maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3805] "Subscales: Stereotypical assault; Acquaintance assault; Assault resistance; Date/Friend assault."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3806] "Factors: Public Support for Gender Equality (SGEMS‐Public): Domestic Support for Gender Equality (SGEMS‐Domestic)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3807] "Factors: Subjective well-being life satisfaction affect; Expectation; Serendipity; Travel satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3808] "Subscales: Activities; Relationships; Living conditions; Negative emotions; Control; Sleep; Self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3809] "Factors: To be included; To trust professionals; To take control; To understand information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3810] "Subscales: Physically experienced demands; Environmentally experienced demands; Psychosocially experienced demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3811] "Subscales: Negation emotion; Interaction with people and the environment; Intimacy; Religiosity; Physical symptoms: Bulbar function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3812] "Factors: Internal Anger; External Anger; Anger Control; Anger Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3813] "Subscales: Anger because of obstructions or slowdowns caused by other pedestrians; Anger because of hostility from other drivers; Anger because of bad conditions of the infrastructure; Anger because of dangerous situations caused by vehicles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3814] "Subscales: Market dynamism; Closed ties (Social interaction; Network density); Diverse ties; Pioneering orientation; Imitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3815] "Factors: Importance attached to non-participant sharing (INPS); Importance attached to participant sharing (IPS)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3816] "Factors: Attitude towards rule violation and speeding (ARS); Attitude towards the careless driving of others (ACD); Attitude towards drinking and driving (ADD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3817] "Subscales: Incentives to employment; Barriers to employment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3818] "Subscales: Virtue ethics; Deontology; Consequentialism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3819] "Factors: Feeling isolated; Available social connections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3820] "Factors: Positive reinforcement; Escape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3821] "Subscales: Downward Classism; Upward Classism"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3822] "Subscales: Downward Classism; Upward Classism; Lateral Classism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3823] "Subscales: Type of Media; Amount; Method of Consumption; Importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3824] "Subscales: Knowledge and skills related to medication error reporting; Feedback and support related to medication error reporting; Action and impact following medication error reporting; Motivation related to medication error reporting; Effort related to medication error reporting; Emotions related to medication error reporting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3825] "Subscales: Relationship with others; Personal Growth; Change of lifestyle; Pressure from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3826] "Factors: Respecting and caring for dying patients and families; Avoiding care of the dying; Involving patients and families in end-of-life care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3827] "Subscales: Supporting the Dying Patients and Families; Helping Families Cope With Grief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3828] "Subscales: Community service; Social networking; Career advancement; Well-being; Generativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3829] "Domains: Film-Formulated Nostalgia (Memory of envying advanced society; Reminiscence of mimicking and desire to buy brand products; Memory of film backdrops and contents; Memory of Hong Kong history and culture); Psychological involvement; Behavioral involvement; Familiarity; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3830] "Factors: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3831] "Constructs (Factors): Social commerce constructs (Forums and communities; Ratings and reviews; Recommendation and referrals); Relationship quality (Commitment; Satisfaction; Trust); Social support (Informational support; Emotional support); Social commerce intentions; Use behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3832] "Factors: Cloud computing assimilation (CCA/ASS); Top management support (TMS); Government regulation (GR); Government support (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3833] "Factors: Technology competence; Top management support; Coercive pressures; Normative pressures; Mimetic pressures; Software as a service use; Perceived opportunities; Perceived risks; Cost saving; Security concerns; Software as a service use continuance intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3834] "Factors: Intrusive Rumination; Deliberate Rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3835] "Factors: Effort cost; LoVA cost; Emotional cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3836] "Scales: Task conflict; Relational behavior; Relationship quality. Subfactors: Flexibility; Information exchange; Solidarity; Satisfaction; Trust; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3837] "Factors: Pedagogical; Classroom environment; Student connection; Student motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3838] "Subscales: Perceived insufficient services and limited products; Lack of facilities and attractions; Personal language and transportation barriers; Time and information constraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3839] "Subscales: High Scores (HS); Relationship Growth (RG); Personal Growth (PG); Assured Success (AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3840] "Factors: Machiavellianism; Narcissism; Psychopathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3841] "Subscales: Other-Directed; Lighthearted; Intellectual; Whimsical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3842] "Subscales: Teacher Knowledge about Tier 1 Implementation; Teacher Knowledge about Leadership and School Systems; Teacher Knowledge about Data-Based Decision Making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3843] "Subscales: Fear of Property Crime; Fear of Violent Crime."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3844] "Subscales: Protection; Punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3845] "Subscales: Adherence; Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3846] "Factors: Believes an Active Role is Important; Confidence and Knowledge to Take Action; Taking Action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3847] "Factors: Self-Efficacy/Control; Supportive University Environment; Financial Confidence; Student Racial/Ethnic Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3848] "Subscales: Comprehensiveness; Family-centeredness and community orientation; Coordination; Service and communication; First contact (access); Ongoing care; Outreach; First contact utilization; Stableness of primary care provider (PCP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3849] "Factors: Suffering; Self-Sacrifice; Claims of Strength"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3850] "Factors: Well-Being; Symptoms; Life Functioning; Global Mental Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3851] "Subscales: Frequency of communication; Satisfaction with communication; Barriers to communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3852] "Subscales: Arguments; Psychological/verbal aggression; Slight physical aggression; Severe physical aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3853] "Factors: Hostility/Rejection; Parenting/Attachment; Helplessness/Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3854] "Factors: Professional and organization satisfaction; Support and flexibility; Professional role; Physical environment; Clinical supervision; External personal support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3855] "Factors: Personal stigma; Perceived stigma (Stigma scale); Social distance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3856] "Factors: Outcome empowerment; Verbal empowerment; Behavioral empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3857] "Subscales: Passionate-Romantic; Open-Direct; Embarrassed-Conservative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3858] "Subscales: Authoritative parenting; Educational integration; Empathy and perspective-taking; Integration into peer groups; Optimism; Parental social and emotional support; Self-control; Self-efficacy; Self-esteem; Sense of coherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3859] "Factors: Developing and administering language assessments; Assessment in language pedagogy; Assessment policy and local practices; Personal beliefs and attitudes; Statistical and research methods; Assessment principles and interpretation; Language structure, use and development; Washback and preparation; Scoring and rating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3860] "Scales: Self-report; Observer. Factors: Mental ability; Conscientiousness; Self-efficacy; Coping. Sub-factors: Planning & organization; Learning & memory; Adaptability; Concentration; Problem-solving (Mental ability); Persistency; Self-confidence (Self-efficacy); Task-oriented coping; Emotion-oriented coping; Avoidance coping (Coping)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3861] "Factors: Narrative processing; Affect; Brand attitude; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3862] "Scales: Before Ultrasound; After Ultrasound. Factors: Anxiety about the baby’s health; Expectation about interaction with staff; Attachment; Verification; Reservation; Deciding (Before Ultrasound Scale); Information during examination; Attachment; Family affinity; Anxiety about the results; Sense of security (After Ultrasound Scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3863] "Factors: Emotional reaction to pain; Limitations to daily life caused by pain; Interference caused by pain in personal and social functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3864] "Subscales: Physical Environment; Learning Materials; Modeling & Encouraging Maturity; Family Routines & Regulatory Activities; Family Companionship & Investment; Warmth, Acceptance, & Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3865] "Subscales: Stress/conflict avoidance; Homemade food; Shared family food; Family involvement in mealtimes; Price; Occasional treats; High/low fat regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3866] "Subscales: Mastery; Creative Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3867] "Factors: Perception of illness; Etiology; Sexual behavior; General perception; General view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3868] "Subscales: Speaking in public/talking with people in authority; Interactions with the opposite sex; Assertive expression of annoyance, disgust or displeasure; Criticism and embarrassment; Interactions with strangers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3869] "Subscales: Object control (OC); Locomotor (LOC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3870] "Subscales: Behavioural activation (BA); Social motivation (SM); Emotional sensitivity (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3871] "Subscales: Worries; Tension; Joy; Demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3872] "Subscales: Negative Affect and Resentment; Concern for Group Integrity; In-Group Identification; Perception of Discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3873] "Subscales: Physical abuse (PA); Emotional abuse (EA); Harassment (HA); Severe combined abuse (SCA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3874] "Factors: Free, Unstructured Play; Structured Play."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3875] "Factors: Identity; Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3876] "Subscales: Self-recognition; Willingness to seek help; Fear and stigma; Family/partner support; Logistics of getting an appointment; GP reaction; Logistics of attending appointment; Barriers to therapy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3877] "Subscales: Work Engagement (WE); Workaholism (WH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3878] "Domains: Motor skills; Cognitive skills; Language skills; Social–emotional skills; Mental health skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3879] "Factors: Fundamental motor skills (FMS [Locomotion skills; Object control skills]); Active play (AP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3880] "Factors: Psychosomatic symptoms; Mental symptoms; Interpersonal problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3881] "Subscales: Non-violent; Violent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3882] "Subscales: Knowledge; Attitude; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3883] "Factors: Trust in daughter; Internalization of sociocultural pressure; Mother-daughter shopping; Clothing conformity; Mother-daughter solidarity; Psychological well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3884] "Subscales: Emotional Support Skills; Session Management Skills; Helping Skills/Insight; Helping Skills/Exploration; Helping Skills/Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3885] "Subscales: Message frequency; Challenge appraisal; Threat appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3886] "Factors: Before Ultrasound (Anxiety about baby's health; Expectation about interaction with staff; Attachment; Verification; Reservation; Deciding; Interpretation); After Ultrasound (Information during examination; Attachment; Family affinity; Anxiety about the results: Sense of security)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3887] "Subscales: Bullying; Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3888] "Subscales: Resource Readiness; Cultural Readiness; Strategy Readiness; Technology Readiness; Innovation Valance; Cognitive Readiness; Partnership Readiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3889] "Subscales: Cooking Skills; Cooking Knowledge; Nutrition Knowledge; Food Systems Knowledge; Self-Efficacy Regarding Eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3890] "Factors: Psychosocial and emotional; Fertility; Sexual function; Obesity and menstrual disorder; Hirsutism; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3891] "Subscales: Knowledge; Attitude; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3892] "Subscales: Lay theories about corporate social responsibility (CSR) and corporate ability (CA); Internal attribution; Company evaluation; Prosocial behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3893] "Subscales: Rehearsal; Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3894] "Subscales: Interactions with facility administration and staff; Mediums used for interaction; Communication and providing care; In person visitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3895] "Subscales: Maladaptive reactions to shame (MRS); Guilt/self-blame (GSB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3896] "Factors: Reflective Learning with ICT (RL); Authentic Learning with ICT (AUL); Collaborative Learning with ICT (COL); Active Constructive Learning with ICT (ACTL); Beliefs of New Culture of Learning (BNCL); Design Disposition (DD); Design Thinking Efficacy (DT); Teachers as designer (TAD)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3897] "Subscales: Managing the sessions; Administrative duties; Designing the treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3898] "Subscales: Individuals' behavioral negotiation; Cognitive negotiation; Group members' behavioral negotiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3899] "Subscales: Physical abuse (PA); Emotional abuse (EA); Harassment (HA); Severe combined abuse (SCA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3900] "Factors: Behavior-Effort/attention; Behavior-Boredom/distraction; Emotional-Social; Emotional-Learning; Cognitive-Strategies; Cognitive-Autoregulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3901] "Subscales: Demographics and Use of the Internet; Knowledge About Cybercivility; Experience With and Perceptions of Cyberincivility; Perceived Benefits of Including Cybercivility in IPE and Preferred Formats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3902] "Factors: Individual behaviors in online environments; Online class attendance attitudes; Email manner on online environments; Online assignment ethics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3903] "Factors: Medical Locus of Control; Treatment-Specific Efficacy; Perception of Support; Expectations of Allied Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3904] "Subscales: Amotivation; External regulation; Introjected regulation; Identified regulation; Intrinsic regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3905] "Factors: First Contact-Accessibility; First Contact-Utilization; Ongoing Care; Coordination of Service; Comprehensiveness-Services Available; Comprehensiveness-Services Received; Community Orientation longitudinality interpersonal relationships, comprehensiveness services available, comprehensiveness services received, coordination, and community orientation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3906] "Subscales: Distraction, Rumination, Reappraisal, Suppression, Engagement, Arousal Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3907] "Subscales: Distraction; Rumination; Reappraisal; Suppression; Engagement; Relaxation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3908] "Factors: General social curiosity (SCS-G); Covert social curiosity (SCS-C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3909] "Factors: Nonreligiousness (NR); Nonspirituality (NS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3910] "Factors: Youth (Cooking skills by yourself; Cooking skills with help; Physical activity; Openness to new foods; Culinary self-efficacy; Eating together); Adults (Cooking together; Eating together; Physical activity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3911] "Factors: Taking safety measures; Eating a healthy diet; Coping with uncertainty; Seeking help from professionals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3912] "Dimensions: Physical well-being; Psychological well-being; Moods and emotions; Self-perception; Autonomy; Parent relations and home life; Financial resources; Peers and social support; School environment; Social acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3913] "Factors: Self-blame; Acceptance; Rumination; Positive refocusing; Refocus on planning; Positive reappraisal; Putting into perspective; Catastrophizing; Other-blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3914] "Domains: Attention/Orientation; Memory; Fluency; Language; Visuospatial functions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3915] "Factors: General anxiety; Social anxiety; Separation anxiety; Specific fears."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3916] "Factors: Empathy; Sacred connection; Distress; Space and Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3917] "Factors: Professional performance; Awareness and contribution in self-care; Recognition of physical needs; Human resources; Pain and fear; Interdisciplinary collaboration; Overall care outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3918] "Factors: Nützlichkeit (Usefulness); Pädagogisches Interesse (Pedagogical interest); Fähigkeitsüberzeugung (Ability conviction); Soziale Einflüsse (Social influences); Geringe Schwierigkeit des Lehramtsstudiums (Low difficulty in teaching); Fachliches Interesse (Professional interest)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3919] "Factors: Active; Routine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3920] "Subscales: Attention Deficit; Hyperactivity/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3921] "Subscales: SWAN-F Inattention (S-IN); SWAN-F Hyperactivity/Impulsivity (S-HY/IM); SWAN-F ADHD score (S-ADHD); SWAN-F Oppositional Defiant Disorder (S- ODD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3922] "Subscales: Social/Emotional; Academic; Familial; Caregiver/Teacher Support; Other Support; Etiology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3923] "Subscales: Academic impairment; Peer impairment; Familial impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3924] "Domains: Children’s behavior; Emotional maladjustment; Parental consistency; Coercive parenting; Positive encouragements; Parent-child relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3925] "Factors: Persistence-promoting; Licensing-promoting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3926] "Factors: Effortful Control; Surgency; Affiliativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3927] "Subscales: Physical function; Anxiety; Depression; Fatigue; Sleep disturbance; Ability to participate in social roles and activities; Pain interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3928] "Factors: Spiritual well-being-ideal-Feeling Good (SWB_FG): Relationship with self (FG_S); Relationship with family (FG_F); Relationship with nature (FG_N); Relationship with God (FG_G); Spiritual well-being experience-Living Life (SWB_LL): Relationship with self (LL_S); Relationship with family (LL_F); Relationship with nature (LL_N); Relationship with God (LL_G)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3929] "Factors: Openness to People's Ideas; Stress Tolerance; Deprivation Sensitivity; Joyous Exploration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3930] "Factors: Technical usability (TU); Content interpretation (CI); Content generation (CG); Anticipatory reflection (AR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3931] "Subscales: Connectivity (CN); Integration (IN); Consistency (CS); Flexibility (FL); Personalization (PL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3932] "Factors: Anticipated stigma (Family members (FAM); Employers (EMP); Health care workers (HCW)); Enacted stigma (Family members (FAM); Employers (EMP); Health care workers (HCW); Internalized stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3933] "Subscales: Internalized HIV stigma; Anticipated HIV stigma; Enacted HIV stigma"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3934] "Factors: Friendly-Acceptance; Norms of Behavior; Trusting-Reciprocity; Governance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3935] "Subscale: Teacher of English Preparedness to Include Dyslexics (TEPID). Factors: Knowledge and skills; Stance towards inclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3936] "Subscales: General Trauma (GT); Sexual Concerns (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3937] "Subscales: General Trauma (GT); Sexual Concerns (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3938] "Subscales: Knowledge; Attitudes; Behaviors; Emotional support for patient and families; Symptom management; Communication; Spiritual support; Decision-making; Staff support; Continuity of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3939] "Factors: Distress; Obsessions/Fear; Positive Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3940] "Subscales: Noticing; Not-Distracting; Attention Regulation; Emotional Awareness; Body Listening; Trusting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3941] "Dimensions: Daily spiritual experiences; Values /beliefs; Forgiveness; Private religious practices; Overcoming religious; Religious support; Spiritual religious history; Commitment; Organizational religiosity; Religious preference Overall religiousness/spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3942] "Factors: Attitude; Subjective norm; Perceived behavioral control; Past behavior; Self-identity; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3943] "Subscales: Biological; Cognitive-Behavioral Therapy; Psychoanalytic; Cognitive-Behavioral Causes and External Factors; Brain abnormalities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3944] "Subscales: Authenticity; Balance; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3945] "Subscales: Innovator Role; Broker Role; Producer Role; Director Role; Coordinator Role; Monitor Role; Facilitator Role; Mentor Role."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3946] "Subscales: Zero-sum game; Joint profit exchange."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3947] "Factors (Domains): Motivation for change (Program needs for improvement; Immediate training needs; Pressures for change); Adequacy of resources (Offices; Training; Staffing: Computer access; E-communication); Staff attributes (Growth; Efficacy; Influence; Adaptability); Organizational climate (Mission; Cohesion; Autonomy; Communication; Stress; Change)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3948] "Factors: Values and Ethics; Systems Thinking; Emotions and Feelings; Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3949] "Factors (Subscales): Symptom burden (Fear of recurrence; Body image; Pain; Fatigue; Depressive symptoms; Anxiety); Function (Cognitive; Social; Work; Sexual; Sleep); Health behavior (Unhealthy diet; Physical activity); Health-care seeking skills (Patient-provider communication; Health information; Healthcare competence; Information acquisition); Financial strain (Financial strain)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3950] "Subscales: Reciprocal filial piety; Authoritarian filial piety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3951] "Factors: General trauma; Physical abuse; Emotional abuse; Sexual abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3952] "Subscales: General Trauma (Physical Abuse; Emotional Abuse; Sexual Abuse)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3953] "Subscales: Psychological; Psycho-somatic; Economic; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3954] "Subscales: Positive metacognitions about emotional and cognitive regulation (MSUQ-PM ECR); Negative metacognitions about uncontrollability and cognitive harm of Smartphone excessive use (MSUQ-NM UH); Positive metacognitions about the social advantages of Smartphone use (MSUQ-PM SR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3955] "Subscales: Severity; Diversity; Propensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3956] "Subscales: Restrained; Emotional; External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3957] "Factors: Preoccupation with procurement of pain medication; Maladaptive behaviors and side-effects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3958] "Factors: Cognitive Demand; Emotional Demand; Physical Demand–Controller; Physical Demand–Exertion; Social Demand."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3959] "Factors: Contamination; Responsibility; Unacceptable Thoughts; Symmetry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3960] "Subscales: Perceived susceptibility; Perceived severity; Perceived benefits; Perceived barriers; Health motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3961] "Subscales: Kantianism; Humanism; Faith in Humanity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3962] "Factors: Activities with high balance demands; Basic and instrumental activities of daily living; Community engagement activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3963] "Subscales: Disengagement; Exhaustion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3964] "Factors: Disheartenment; Sense of failure; Dysphoria; Loss of meaning/Purpose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3965] "Subscales: Respect and Integrity; Planning and Decision-making; Information and Knowledge; Motivation and Encouragement; Involvement of Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3966] "Subscales: Respect and integrity; Planning and decision-making; Information and knowledge; Motivation and encouragement; Involvement of family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3967] "Subscales: Presence of Meaning (POM); Search for Meaning (SFM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3968] "Subscales: Identity; Cause; Timeline acute/chronic; Timeline cyclical; Consequences; Personal control; Personal blame; Treatment control; Illness coherence; Emotional representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3969] "Subscales: Spontaneous Writing; Dictation; Transcription Letters; Transcription Chinese Characters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3970] "Factors: Emotional service expectation; Overall confirmation; Perceived quality; Customer satisfaction; Deep acting emotional labor; Surface acting emotional labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3971] "Factors: Cognitive engagement; Emotional engagement; Social engagement with students; Social engagement with colleagues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3972] "Subscales: Performance success visualization; Establishment of own goals; Internal Dialogue; Self-reward; Evaluation of beliefs; Self-punishment; Self-observation; Focus on natural rewards; Self-alerts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3973] "Factors: Quality of Academic Development; Social and Academic Commitment; Broadening of Interpersonal Relationships; Opportunity for Student Exchange and Internationalization; Perspective of Professional Success; Concern with Self-image; Development of Transversal Competences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3974] "Factors: Action-related competence; Basic knowledge; Reflective competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3975] "Factors: Competence satisfaction; Relatedness satisfaction; Autonomy satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3976] "Factors: Emotional Intensity Morphing Task: Increase condition; Emotional Intensity Morphing Task: Decrease condition; Prisoner's Dilemma; Affective Go/NoGo; Moral Emotions Task; Emotional Face Recognition Task: Face version; Emotional Face Recognition Task: Eyes version; Social Information Preference Task; Reinforcement Learning Task; Monetary Incentive Reward Task; Progressive Ratio Task; Adapted Cambridge Gambling Task; Ultimatum Game."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3977] "Factors: Self-deception (SDE); Creation impression management (IM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3978] "Factors: Moral; Social network"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3979] "Factors: Linguistic intelligence; Logical-mathematical intelligence; Visual-spatial intelligence; Kinesthetic or corporal-kinetic intelligence; Musical intelligence; Interpersonal intelligence; Intrapersonal intelligence; Naturalistic intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3980] "Factors: Self-regulation; Openness/Cognitive engagement; Openness/Bodily and socio-emotional engagement; Negative affectivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3981] "Factors: Risk-taking; Innovativeness; Proactiveness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3982] "Dimensions: Risk Taking; Innovativeness; Proactiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3983] "Factors: Attention-deficit/hyperactivity disorder inattention (ADHD-IN); Hyperactivity/impulsivity (ADHD-HI)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3984] "Factors: Interpersonal competence; Intrapersonal competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3985] "Factors: Awe; Inspiring Energy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3986] "Subscales: Micro Discriminations; Macro Discriminations"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3987] "Subscales: Negative affect; Anxiety and PTSS; Social and self-image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3988] "Factors: Local foods and restaurants; Destination management; Customized service and service staff; Natural environment and landscape; Local hospitality; Activity and events; Building and architecture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3989] "Factors: Relational Need for Inclusion; Collective Need for Inclusion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3990] "Factors: Temporal consistency; Credibility; Originality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3991] "Factors: Self-care maintenance; Management; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3992] "Factors: Negative Emotion (NE); Interaction with People and the Environment (IPE); Intimacy (IN); Religiosity (RE); Physical Symptoms (PS); Bulbar Function (BF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3993] "Factors: Negative emotion; Interaction with people and the environment; Intimacy; Religiosity; Physical symptoms; Bulbar function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3994] "Factors: Personal Altruism; Institutionally-directed Altruism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3995] "Factors: Care; Challenge; Clarify; Confer; Consolidate; Control; Captivate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3996] "Factors: Auto‐regulatory behavior; External emotion management; Collegiality; Internal emotion management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3997] "Factors: Physical Well-Being; Functional Well-Being; Emotional Well-Being; Social Well-Being; Clarity of Thought and Decisions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3998] "Factors: Social stigma; Stigma experience; Self-stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3999] "Factors: Emotional support; Instrumental support; Role modeling; Creative work-family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4000] "Factors: Physical aggression; Indirect aggression; Verbal aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4001] "Factors: Engagement; Identification; Emotion; Dysfunction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4002] "Factors: Minority ethnic consciousness (MEC); Minority ethnic exploration (MEE); Minority ethnic involvement (MEIV); Minority ethnic alienation (MEA); Minority ethnic inheritance (MEIH) Minority Ethnic Mastery (MEM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4003] "Factors: Minority ethnic consciousness (MEC); Minority ethnic exploration (MEE); Minority ethnic involvement (MEIV); Minority ethnic alienation (MEA); Minority ethnic inheritance (MEIH) Minority Ethnic Mastery (MEM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4004] "Factors: Approach-Task; Avoidance-Task; Approach-Self; Avoidance-Self; Approach-Other; Avoidance-Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4005] "Subscales: Perceived Physician Knowledge; Perceived Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4006] "Factors: Interactional justice; Formal procedures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4007] "Subscales: College Response to LGBTQ Students; LGBTQ Stigma"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4008] "Factors: Alienation from the self; Alienation from others; Alienation from Israeli society."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4009] "Factors: Strategic Hypervigilance (CSBS-SH); Affective Suppression (CSBS-AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4010] "Subscales: Physical Component Summary Score (PCS12); Mental Component Summary Score (MCS12)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4011] "Factors: GL Behavior (B); Environmental Attitude towards GL (A1); Attitude towards Costs of GL (A2); Subjective Norm about GL (SN); Perceived Behavior Control Related GL (PBC); Intention towards GL (I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4012] "Factors: Erroneous beliefs about weight control; Experience of pleasant emotions when eating; Importance given to body weight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4013] "Negative performances indicators; Marketing Illegitimacy indicators; Broadness of the marketing communications indicators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4014] "Factors: Customer orientation; Employee commitment; Customer performance; Interfunctional coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4015] "Factors: Civic Life; Self-care, Mobility and Work Capacity; Work and Domestic Life; Social and Economic Contribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4016] "Subscales: Fear; Joy; Surprise; Disgust; Sadness; Anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4017] "Factors: Unrealistic fears about the abortion and fantasies about the pregnancy; Decision conflict; Negative abortion attitudes; General indecisiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4018] "Subscales: Inattention; Hyperactivity/Impulsivity; Total."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4019] "Factors: Excessive social use at work (ESU); Excessive hedonic use at work (EHU); Excessive cognitive use at work (ECU); Technology-work conflict (TWC); Strain (STR); Job performance (JP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4020] "Factors: Trait beliefs; Goal orientations"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4021] "Factors: Place Identity; Place Dependence; Social Bonding; Behavioral Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4022] "Subscales: Grid dimension (GRI); Group dimension (GRO); Risk Perception (RP); Organizational Commitment (OC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4023] "Subscales: Intention to use; Performance expectancy; Effort expectancy; Social influence; Facilitating conditions; Perceived risk; Financial literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4024] "Factors: Integrity; Self-sacrifice; Building community; Empowering people; Emotional healing; Visioning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4025] "Subscales: Physical; Motivational; Affective; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4026] "Subscales: Metaawareness; (Dis)Identification with internal experience; (Non)Reactivity to internal experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4027] "Subscales:"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4028] "Subscales: Trust and respect; Equality; Fair-treatment; Autonomy; Self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4029] "Factor structure: Unidimensional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4030] "Subscales: Non-reactivity; Observe; Act with awareness; Describe; Non-judging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4031] "Subscales: Dangerousness; Unpredictability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4032] "Subscales: Reflection on group work; Attitude towards group work; Knowledge of interprofessional working; Skill in group work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4033] "Factors: Avoidance; Weight control; Mood improvement; Lack of enjoyment; Exercise rigidity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4034] "Subscales: Demands; Influence and development; Interpersonal relationships and leadership; Job insecurity; Strain-effects and outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4035] "Subscales: Self-psychological security; Social environmental security; Natural environmental security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4036] "Subscales: Individual collectivism; Vertical collectivism; Horizontal collectivism; Horizontal individualism; Attitude toward the CSR ad; Attitude toward products; Social status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4037] "Factors: Interprofessional Teamwork and Team-Based Practice; Roles/Responsibilities for Collaborative Practice; Patient Outcomes from Collaborative Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4038] "Subscales: Equipment Application; Platform Application; Application Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4039] "Subscales: Danger to self; Danger to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4040] "Subscales: Autonomy needs satisfaction; Competence needs satisfaction; Related needs satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4041] "Subscales: Drive to excel; Catalytic learning; Enterprising spirit; Dynamic sensors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4042] "Factors: Unstructured play; Structured play or activities conducted with an adult; Electronic play."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4043] "Subscales: Safety and familiarity; Setting drink limits; Pacing strategies; Minimizing intoxication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4044] "Factors: Attraction; Structure; Affect; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4045] "Factors: Opinions; Motivations; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4046] "Factors: Perceived ease of use; Perceived usefulness; Enjoyment; Customisation; Subjective norm; Attitudes towards the app; Attitudes towards the brand; Purchase frequency; Loyalty towards the brand."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4047] "Domains: Entitativity; Similarity; Interactivity; Common goals; Boundaries; History of interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4048] "Factors: Supporting well-being; Factional; Effective team leadership; Collaboration within the organization; Valuing residents and relationships; Social distance from residents; Alignment of staff with organizational values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4049] "Subscales: Emotional well-being (EW); Interpersonal relations (IR); Material well-being (MW); Personal development (PD); Physical well-being (PW); Self-determination (SD); Social inclusion (SI); Rights (RI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4050] "Subscales: Fit between Instructional Methods and Intended Learning Outcomes (ILOs); Fit between ILOs and Assessment Tasks; Fit between Assessment Tasks and Instructional Methods; Flexibility in Adjusting Instructional Methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4051] "Factors: Classical prejudice against asylum seekers (CL-PAAS); Conditional prejudice against asylum seekers (CO-PAAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4052] "Factors: Fantasy; Flow; Evaluation; Aesthetics; Physical Attractiveness; Inspiration; Intention to try track cycling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4053] "Subscales: Brand reputation; Brand experiences; Brand attitudes; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4054] "Factors: Home-state attachment (HSA); Consumer ethnocentrism (CET); Loyalty to local businesses (LLB); Attitude to Local-Origin Labelling (LAB); Attitude to Government Intervention (GI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4055] "Subscales: Entitativity; Group structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4056] "Subscales: Family; God; Environment; Self-concern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4057] "Subscales: Satisfaction; Goal setting and planning; Physical interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4058] "Subscales: School Scale; ICT Environment; Policy Support; Operation & Training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4059] "Subscales: Malevolence; Benevolence; Omnipotence; Resistance; Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4060] "Subscales: Immigration; Lack of nativism; Inclination to employ foreigners; Gender imbalance; Lack of justice in the distribution of resources; Lack of meritocracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4061] "Factors: Work functioning; Educational functioning; Financial functioning; Health functioning - Health promotion; Health functioning - Risk avoidance; Health functioning - Self care; Intimate relationship functioning; Parental functioning; Broader social functioning; Paid work satisfaction; Educational satisfaction; Financial satisfaction; Health satisfaction; Intimate relationship satisfaction; Parental satisfaction; Broader social satisfaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4062] "Subscales: Performance efficacy; Intrinsic motivation; Anthropomorphism; Social influence; Facilitating condition; Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4063] "Subscales: Intention to initiate a negotiation; Expectancy; Instrumentality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4064] "Factors: Malevolence; Benevolence; Resistance; Engagement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4065] "Subscales: Telepresence; Coherence; Visual complexity; Legibility; Mystery; Aesthetics; Intention to approach; Intention to visit; Intention to purchase; Involvement; Style of processing; Familiarity; Category knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4066] "Subscales: Speech; Play; Social engagement; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4067] "Scales: Person-Job Fit Scale (PJFS); Person-Organization Fit Scale (POFS); Person-Group Fit Scale (PGFS); Person Supervisor Fit Scale (PSFS). Factors: Values; Goals; Attributes; Job Satisfaction; Emotional Exhaustion; Turnover Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4068] "Subscales: Drug use for social and sexual enhancement; Perceptions of drug risk; Acceptability of drug use among gay friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4069] "Subscales: State; Trait."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4070] "Factors: Consistency; Credibility; Clarity; Willingness to use; Completeness; Immersion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4071] "Subscales: Core Stockholm Syndrome; Psychological Damage; Love-Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4072] "Factors: Core Stockholm Syndrome (Core); Psychological Damage (Damage), Love-Dependence (Love)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4073] "Subscales: Seguridad (Security); Preocupación familiar (Family concern); Interferencia de los padres (Parental interference); Valor de la autoridad de los padres (Value in parental authority); Autosuficiencia y rencor contra los padres (Self-reliance and resentment against parents); Traumatismo infantile (Child trauma); Permisividad parental (Parental permission)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4074] "Factors: Identity Diffusion (General factor); Consistency in self-concept; Commitment to roles and positive cultural identification; Stability of attributes, talents, interests, perspectives and moral guidelines; Emotional and cognitive self-reflection; Stability of interpersonal relationships; Consciousness of a defined nucleus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4075] "Subscales: Salience; Tolerance; Mood modification; Relapse; Withdrawal; Conflict; Problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4076] "Subscales: Lack of confidence; Worry; Emotionality; Interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4077] "Factors: Perceived susceptibility; Perceived severity; Health consciousness; WeChat self-efficacy; WeChat health information reliability; WeChat health information seeking; Social support; Psychological well-being"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4078] "Subscales: Engagement; Perseverance; Optimism; Connectedness; Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4079] "Subscales: Prosocial Interaction; Withdrawal/Agonism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4080] "Factors: Sexual harassment; Burnout; customer-oriented boundary-spanning behaviors; Psychological safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4081] "Factors: Directive-Behavior (DBF); Self-Continuity (SCF); Social-Bonding functions (SBF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4082] "Subscales: Expertise; Trustworthiness; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4083] "Subscales: Experiential value; Relevance; Congruence; Social vigor; Psychological zest; Emotion spark; Flow; On-the-spot behavior (OSB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4084] "Factors: General Flexibility (EDFLIX-GF); Food and Exercise Flexibility (EDFLIX-FoEx); Weight and Shape Flexibility (EDFLIX-WeSh)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4085] "Subscales: Nutrition Best Practices; Infant Feeding Best Practices; Physical Activity Best Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4086] "Subscales: General; Health; Smoke-free."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4087] "Subscales: Aspirational capital; Familial capital; Navigational capital; Resistant capital. Factors: Identification of oppression in society; Motivation to transform oppressive structures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4088] "Subscales: Own resource (OR); Burden (B); Conversational partner (CP); Resource in nursing care (RNC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4089] "Factors: Family as a resource in nursing care (Fam-RNC); Family as a burden (Fam-B); Promoting family involvement (Prom-FI); Building-resilient families (Bld-RF)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4090] "Factors: Respectful interaction; Competence and contribution; Equality; Inherent value; General dignity perceptions; Workplace indignity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4091] "Domains: Avoidant; Obsessive-compulsive; Narcissistic; Borderline; Antisocial; Schizotypal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4092] "Factors: Use of Mobile Technologies (Learning; Online Participation; Communication; Recording; Entertainment; Navigation); Mobile Technology Attitudes and Beliefs (Positive; Negative; Willingness; Attachment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4093] "Factors: Enjoyment; Affection; Identity; Power; Participation; Understanding; Safety; wanderplaner.ch; Economic Goals"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4094] "Factors: Intention; Attitude; Moral obligation; Materialism; Perceived importance of an ethical issue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4095] "Subscales: Service quality value; Authentic experience value; Emotional experience value; Social value; Utility value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4096] "Factors: Belief-in-self; Belief-in-others; Emotional competence; Engaged living. Subscales: Self-efficacy; Self-awareness; Persistence; School support; Family coherence; Peer support; Emotion regulation; Empathy; Self-control; Optimism; Gratitude; Zest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4097] "Subscales: Conversation communication pattern; Conformity orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4098] "Subscales: Teaching; Prompting; Praise; Tangibles; Majors; Minors; Cross-setting implementation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4099] "Subscales: Empathic concern; Perspective-taking; Personal distress; Fantasy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4100] "Subscales: Classroom; Hallway; Cafeteria; Playground; Restroom; Bus; Arrival/dismissal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4101] "Subscales: Child Affect (CA); Adult Affect (AA); Child Cognitions (CC); Adult Cognitions (AC); Child Behavior (CB); Adult Behavior (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4102] "Subscales: Behavior; Caregiver relief; Contentment; Doing activities; Education; Energy; Face-to-face communication; Family roles; Finances; Security; Self-reliance; Social versatility; Supervision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4103] "Factors: Enabling and Partnership; Providing General Information; Providing Specific Information; Coordinated and Comprehensive Care; Respectful and Supportive Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4104] "Subscales: Enabling and partnership; Providing general information; Providing specific information; Coordinated and comprehensive care; Respectful and supportive care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4105] "Subscales: Salience; Reactibility; Monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4106] "Subscales: Distress; Self-devaluation (Self-worth)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4107] "Subscales: Motivation; Ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4108] "Subscales: Self-stigma; Omission stigma; Provider stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4109] "Subscales: Exercise participation level of friends; Exercise participation level of parents; Exercise intention; Current exercise behavior; Action control; Exercise constraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4110] "Factors: Affectivity; Social Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4111] "Factors: Quality of fantasy; Imaginary playmate; Imaginary relatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4112] "Domains: Financial; Communication; Comprehension/Planning; Transportation; Household skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4113] "Factors: Clarifying Rationale for Medication; Encouraging Patient Adherence Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4114] "Subscales: Organizational Structures; Organizational Processes; Organizational Resources; Organizational Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4115] "Factors: Practice level; Patient resources; Administrative; External personnel; External resources; Internal resources; On-site personnel; Information technology; Educational resources; Community resources; Educational and community resources; Information technology and provider extenders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4116] "Subscales: Traditionalism; Do-it-yourself (DIY); Time scarcity; Processed food; Eating out; Convenience shopping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4117] "Factors: Social norm; Perceived barrier in reducing meat consumption; Environmental concern; Perceived benefits from reducing meat consumption; Attitude toward reducing meat consumption; Intention to reduce meat consumption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4118] "Subscales: Reporting to authority; Comforting; Aggressive; Solution-focused."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4119] "Subscales: Cognitive; Affective; Conative; Novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4120] "Subscales: Amusement; Parent-oriented anxiety; Parent-oriented frustration; Child-oriented sympathy; Child-oriented empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4121] "Dimensions: Understanding of TPI; Development of the TPI in the teaching staff of different educational levels; Relationship between the professional identity of teachers and that of other professionals; Aspects that contribute to the construction of TPI during initial training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4122] "Factors: Life and Pain Issues; Rejection Issues; Sexuality Issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4123] "Factors: Pleasure; Reinforcing the relationship; Satisfying one’s sexual partner; Desire to be appreciated; Boosting self-esteem; Constraint/submission; Dominance desire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4124] "Factors (Subscales): Student Maltreatment by Teachers; Student Violence against Students (Verbal/Social/Physical Violence; Threats/Vandalism; Sexual Harassment); School Victimization by School Peers (Physical/Threatening Violence; Verbal/Social Violence; Sexual Harassment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4125] "Factors: Travel Benefits (Experiential benefits; Health benefits; Relaxation benefits); Travel Importance (Value Relevance; Social Influence; Travel Importance; Travel Knowledge; Travel Behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4126] "Factors: Bullying; Fighting; Victimization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4127] "Subscales: General Prejudice; College-Specific Prejudice; College-Specific Social Distance; Perceptions of Campus Mental Health (MH) Culture; Number of MH Conversation Partners."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4128] "Subscales: Engineering Self-Efficacy (ES); Engineering Career Expectations (EC); Sense of Belonging (SB); Coping Self-Efficacy (CS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4129] "Factors: Academic engagement (Academic learning [ALS]); Online engagement (OES); Cognitive engagement (CES); Social engagement with teachers (Social engagement with teacher [SETS]); Social engagement with peers (Peer engagement [PES]); Beyond-class engagement (BES); Affective engagement (Affective engagement [AFES])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4130] "Factors: Anxiety about the future; Physical wellbeing; Psychological wellbeing; Denial of ageing; Isolation; Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4131] "Factors: Negative Thoughts About Growing Older; Family and Religion; Positive Aspects of Ageing; Perceived Personal Attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4132] "Factors: Cognitive reappraisal; Expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4133] "Subscales: Loss of control of smartphone use; Nomophobia; Smartphone-mediated communication; Emotion regulation through smartphone usage; Smartphone support to romantic relationships; Smartphone tasks support; Awareness of smartphone negative impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4134] "Factors: Control by others/Contrôle par autrui (CA); Personal control/Contrôle personnel (CP); Stability/Stabilité (S); Locus of causality/Lieu de causalité (L)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4135] "Factors: Psychological; Physical/Cognitive; Financial; Work/School."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4136] "Subscales: Knowledge; Performance; Motivation; Tools/Environment; Feedback-Procedural; Feedback-RRI; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4137] "Subscales: Attainment; Intrinsic; Utility; Cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4138] "Subscales: Pre-contemplation; Contemplation; Prepared for action self-evaluative; Prepared for action behavioral; Uncertain maintenance; Proactive maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4139] "Subscales: General compensation; Appointments; Cooking; Finances; Medications; Shopping; Transportation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4140] "Factors: Basic Cognitive Functions; Social Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4141] "Factors: Basic Cognitive Functions; Social Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4142] "Subscales: Personal role responsibility for RTW; Team role responsibility for RTW; Perceived beneficial impact of RTW."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4143] "Factors: Vivacity; Spatiality; Order."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4144] "Subscales: Feelings about memory; Memory deficiency; Memory strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4145] "Subscales: Campus Disruption; Substance Use & Weapon-Carrying; School Climate; School Safety; Physical–Verbal Harassment; Weapons & Physical Attacks; Sexual Harassment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4146] "Factors: Vision and competence; People orientation; Caring disposition; Ethical role model; Social competence; Self-reflection and self-understanding; Positive views about human beings; Unchangeable and dark human nature"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4147] "Subscales: Prolonged reactivity; Reactivity to work overload; Reactivity to social conflict; Reactivity to social evaluation; Reactivity to failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4148] "Factors: Affection-communication; Control-structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4149] "Subscales: Autonomy; Competence; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4150] "Subscales: Social; Enhancement; Coping; Conformity; Expansion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4151] "Factors: Positive and Control Expectations; Positive Memories; Benefit Findings; Responsibility for the Situation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4152] "Factors: Locus of causality (L); Stability (S); Personal Controllability (PC); External Controllability (CE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4153] "Factors: Structural Discrimination (Strukturelle Diskriminierung); Personal Contact (Persönlicher Kontakt)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4154] "Factors: Perceived Cognitive Deficits; Comments from Others; Perceived Cognitive Abilities; Effects on Quality of Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4155] "Factors: Excessiveness; Compulsion; Distress; Reassurance Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4156] "Subscales: Essential Sex and Gender; Normative Behaviour"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4157] "Subscales: Knowledge of highway pollution; Attitude towards environmental issues; Self-efficacy for using maps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4158] "Subscales: Leader facilitation and support; Professional and organizational esprit; Conflict and ambiguity; Regulations, organization, and pressure; Job variety, challenge, and autonomy; Job standards; Workgroup cooperation, friendliness, and warmth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4159] "Scales: Anticipation; Savoring the moment; Reminiscing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4160] "Factor: Need to Belong; Nostalgia proneness; Facebook intensity; Ad-evoked nostalgia on Facebook; Self-brand connections; Brand engagement behaviors on Facebook."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4161] "Factors: Perceived Feminine Frivolity and Selfishness; Perceived Feminine Weakness; Within-Family Patriarchal Attitudes; Extra-Familial Patriarchal Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4162] "Factors: Children’s Expression and Responsibility; Decision Making by the Adult."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4163] "Factors: Observed Children's Choice; Observed Conditions for Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4164] "Subscales: Creating and Sustaining Negative Emotion to Avoid Negative Contrasts; Discomfort with Emotional Shifts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4165] "Subscales: Worry to Avoid Negative Emotional Shifts (14 items); Worry Creates and Sustains Negative Emotion (9 items); Worry to Create Positive Contrast (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4166] "Scales: Participation; Environment. Factors: Participation Frequency; Participation Involvement; Desire for change; Environmental supports; Environmental resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4167] "Subscales: Acceptance; Evocation; Partnership; MI Non-adherent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4168] "Factors: Worries about child health; Fear of giving birth; Concern about own appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4169] "Factors: Sustained executive function; Memory of information; Consciousness of effort; Daily life; Distractibility; Alertness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4170] "Factors: Attention and memory of information (AMI); Daily living cognition” (DLC); Memory” (MEM); Medical memory (MM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4171] "Subscales: Cues; Detection; Impact; Intention; Likelihood; Response benefits; Response costs; Response efficacy; Sanctions; Self-efficacy; Social norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4172] "Subscales: Knowledge beliefs; Learning beliefs. Factors: Certain knowledge; Simple knowledge; Acquisition of knowledge; Ability to learn; Speed of learning; Value of learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4173] "Factors: Concerns of Occasional Encounters; Avoidance of Personal Contact; Responsibility and Blame; Liberalism; Nondiscrimination; Social Policy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4174] "Subscales: Acceptance of one's life; Adaptation; Acceptance of passing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4175] "Subscales: Knowledge of highway pollution; Orientation towards science; Orientation towards technology; Expectations for community engagement; Conversations with parents; Conversations with teachers; Conversations with friends; Conversations with classmates; Environmentalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4176] "Factors: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4177] "Factors: Cultural Relevance; Connectedness to Nature; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4178] "Subscales: Machiavellianism; Narcissism; Psychopathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4179] "Subscales: Specialized Supports; Classroom-Based Emotional/Behavioral Supports; Academic Supports; Reduced Expectations; Referrals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4180] "Factors: Engagement; Communication; Shared friendships"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4181] "Factors: Laterality (PSAS-LAT); Dynamic coordination (PSAS-DC); Tonic-postural control (PSAS-TPC); Motor execution (PSAS-ME); Balance (PSAS-BAL); Respiratory control (PEAS-RC); Body image (PEAS-BI); Motor dissociation (PEAS-MD); Visual–motor coordination (PEAS-VMC); Spatial orientation (PEAS-SO); Emotional control (ESAS-EC); Social relationships (ESAS SR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4182] "Factors: Desire to Use (Deseo de uso); Influence in Social Circle (Influencia en círculo social); Lack of Control Over Desire (Descontrol sobre el deseo)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4183] "Factors: Callous; Uncaring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4184] "Dimensions: Autonomy Support; Involvement; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4185] "Factors: Attitude; Perceived usefulness; Ease of use; Image; Perceived norms; Perceived control; Habit; Environmental constraints; Behavioral intention; Use frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4186] "Factors: Social component; Physical component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4187] "Subscales: Academic Training of Quality; Social and Academic Commitment; Extension of Interpersonal Relationships; Opportunity for Students' Interchanges and Internationalization; Professional Success and Perspectives; Self-image Concerns; Development of Transversal Competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4188] "Scales: Social-behavioral skill; Interpersonal Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4189] "Factors: Adaptive (Strategizing; Help-seeking; Comfort-seeking; Self-encouragement; Commitment). Maladaptive (Confusion; Escape; Concealment; Self-pity; Rumination; Projection)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4190] "Factors: Religious/Spiritual Coping; Coping Skills; Healthy Lifestyle; Information Search); Adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4191] "Subscales: Adaptive (Strategizing; Help Seeking; Comfort Seeking; Self-Encouragement; Commitment). Maladaptive (Confusion; Escape; Concealment; Self-Pity; Rumination; Projection)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4192] "Scales: Attitudes towards police attitudes toward people who use drugs (PWUD), drug policies & public health; Attitudes towards pre-booking diversion program."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4193] "Subscales: Intentional nonadherence; Unintentional nonadherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4194] "Subscales: Try to avoid experiencing positive emotions (AVOID-POS ); Try to avoid experiencing negative emotions (AVOID-NEG); Try to experience positive emotions (EXP-POS); Try to experience negative emotions (EXP-NEG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4195] "Factors: Awareness of Freedom; Personal Choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4196] "Subscales: Reactive aggression; Proactive aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4197] "Subscales: Heavy housework, home repair, lawn work and gardening; Sports and recreation; Light housework and caring for another person; Leisure and occupational activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4198] "Factors: Social Cynicism; Social Complexity; Fate Control; Reward for Effort; Religiosity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4199] "Factors: Inability to fulfil parental commitments and responsibilities; Abortion panic; Life difficulty and growing instability; Abnormality and violating childbearing norms; Negative physical and emotional consequences; Social deprivations and role conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4200] "Factors: Organizational Culture and Climate; Professional Prejudice; Non-Recovery Principles; Working Alliance with Caseload."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4201] "Subscales: Emotional Attachment; Striving for Solidarity and Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4202] "Subscales: Trust; Profit; Learning; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4203] "Factors: Emotion Perception (Emotionswahrnehmung); Emotion Use (Emotionsnutzung); Emotion Knowledge (Emotionswissen); ER Intrapersonal; ER Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4204] "Factors: Emotional family resources; Happiness; Budget money attitude; Compulsive shopping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4205] "Subscales: Control versus flexibility; Supportive learning climate; Instills confidence through caring; Respectful sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4206] "Factors: Expression of emotion; External situations; Mixed emotions; Wishes; Beliefs; Rules of Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4207] "Subscales: Closeness; Support; Monitoring; Communication; Conflict; Peer Approval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4208] "Subscales: How your child uses gestures to ask for something (A); How your child uses gestures to get you to notice something (B); Types of words your child uses (C); Your child's requests for help (D); Your child's interests (E); How your child uses words to get you to notice something (F); Your child's questions and comments about things (G); Your child's questions and comments about themselves/other people (H); Your child's use of words in activities with others (I); Teasing and your child's sense of humor (J); Your child's interest in words and language (K); Your child's interests when talking (L); How your child adapts conversation to other people (M); How your child is building longer sentences and stories (N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4209] "Components: Comprehensibility; Manageability; Meaningfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4210] "Factors: Learning support; (Lernförderlichkeit); Interest (Interesse); Educational support (Pädagogische Unterstützung); Learning community (Lerngemeinschaft)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4211] "Factors: Suicide risk; Depression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4212] "Factors: Manipulation; Praise; Vigilance; Monopolizing time; Therapy; Gifts; Violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4213] "Components: Manipulation; Praise; Vigilance; Monopolizing Time; Therapy; Gifts; Violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4214] "Constructs: Behavioral intention toward Collaborative Collective Behaviors (CCBs); Goal intention; Seriousness of environmental problems; Responsibility for the environmental problems; Effectiveness of CCBs; Perceived importance of CCBs; Avoidance of environmental problems by Individual behaviors; Responsibility for CCBs; Evaluation of ability; Evaluation of opportunity; Evaluation of social norms; Evaluation of costs; Evaluation of benefits; Active interest in environmental problems; Perceived competence; Self-efficacy for changing present situation; Self-efficacy for problem solving; Attachment to the community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4215] "Subscales: Dispositional HF; School HF; Hobby HF; Screen Time HF; Scenario HF. Factors: Failing to Notice the World; Failing to Attend to Personal Needs; Getting \"Stuck\" on Small Details."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4216] "Subscales: Food Selection and Planning; Food Preparation; Food Safety and Storage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4217] "Subscales: Social enjoyment; Information gathering and validation; Negative influence; Group protection; Emotion venting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4218] "Subscales: Shared language (SL); Shared vision (SV); Social trust (ST); Reciprocity (R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4219] "Subscales: Performance expectancy; Effort expectancy; Attitude toward use; Social influence; Facilitating conditions; Intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4220] "Subscales: Comfort with Negative Feelings; Flexible and Negotiable Stance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4221] "Factors: Analytical Part; Evaluative Part; Inferential Part."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4222] "Factors: Proactive; Knowledgeable; Supportive; Perseverant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4223] "Factors: Encouragement; Reinforcement; Instruction; Modeling; Intrinsic motivation; Social self-efficacy with coach; Self-efficacy; Self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4224] "Factors: Changes in physical status; Changes in self-concept; Colostomy care; Changes in familial and social interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4225] "Subscales: Physician-patient communication; Perceived quality of internet health information; Decision-making preference; Physician-patient concordance; Patient compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4226] "Subscales: Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4227] "Factors: Intention to interact; Convenience of Web-based health communities; Inconvenience of physical health facilities; Ease of use; Perceived synchronicity; Inaccessibility; Discontinuity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4228] "Subscales: Control versus flexibility; Supportive learning climate; Confidence through caring; Appreciation of life meaning; Respectful sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4229] "Factors: Affect; Efficacy; Importance; Future self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4230] "Subscales: Baby humans; Baby animals; Animate objects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4231] "Factors: information seeking; Motivation to reengage; Persistence; Self-regulation; Value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4232] "Factors: Prosociality Dimension; Negative Emotionality Dimension; Daring Dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4233] "Subscales: Masculine-Typed behaviors; Feminine-Typed behaviors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4234] "Subscales: First contact-utilization; First contact-accessibility; Ongoing care; Coordination; Comprehensiveness (services available); Comprehensiveness (services provided); Family-centeredness; Community orientation; Culturally competent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4235] "Factors: Victim blaming; Rape minimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4236] "Factors: Comfort and Security; Disturbance. Subscales: Humans; Dogs; Cats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4237] "Subscales: Pro-Person-centred counselling (Pro-PCC); Pro-Low-intensity cognitive behaviour therapy self-help (Pro-LICBT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4238] "Subscales: Views about science teachers; Views about science lessons; Views about the importance of science; Views about the nature of science; Self-views in science learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4239] "Subscales: Perceived responsibility (PR); Perceived parental weight (PPW); Perceived child weight (PCW); Concern for child weight (CN); Child control (CC); Emotion regulation (ER); Food as reward (FR); Monitoring (M); Pressure to eat (PE), Restriction for health (RH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4240] "Factors: Specific Module for Chronic Gastritis (CG); Physical (GPH); Psychological (GPS); Social (GSO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4241] "Factors: Active private Facebook use; Active public Facebook use; Passive Facebook use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4242] "Factors: Well-Being (Negative Emotion; Engagement; Competence; Positive Emotion); Creativity (Interest in New Things; Intrinsic Motivation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4243] "Sections: Assessment of the general status or level of alertness; Oral Inspection; Water swallowing test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4244] "Factors: Obsessions; Compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4245] "Factors: PC expectations from the manager; PC expectations related to career growth and development; PC expectations related to job and work environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4246] "Subscales: Analytical psychotherapy; Psychotherapy based on depth psychology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4247] "Factors: Uncertainty Avoidance; Individualism–Collectivism; Perceived Severity; Perceived Susceptibility; Response Efficacy; Self-efficacy; Response Cost; Behavioral Intent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4248] "Factors: Verbally aggressive; Dislike; Awkward; Demanding requests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4249] "Subscales: Intrapersonal emotional competencies; Interpersonal emotional competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4250] "Subscales: Ehrenkranz School of Social Work subscale; SWSE-Practice Skills Inventory subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4251] "Domains: Your understanding of proverbs; Learning and teaching of English proverbs; Your knowledge of proverbs; Your experience of learning English proverbs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4252] "Subscales: Self-care Maintenance; Self-care Management; Self-care Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4253] "Factors: Technician/manual; Scientific/investigator; Artistic/creative; Social/assistance; Business/persuasive; Office/administrative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4254] "Constructs: Consumer xenocentrism; Consumer ethnocentrism; Consumer cosmopolitanism; Product country image; Brand attitude; Purchase intentions; Product category involvement; Price sensitivity. Subfactors: Perceived inferiority; Social aggrandizement; Open-mindedness; Diversity appreciation; Consumption transcending borders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4255] "Factors: Perception and understanding of emotions; Expression and naming of emotions; Regulation and management of emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4256] "Factors: Ethical Perceptions; Trustworthiness; Perceived Risk; Revealing Information; Taking Actions; Information Falsification; Perceived Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4257] "Factors: Abilities-demands misfit (ADO) (P-O misfit); Needs-supplies misfit (NSO) (P-O misfit); Abilities-demands misfit (ADT) (P-T misfit); Needs-supplies (NST) (P-T misfit); Person-people misfit (PPF) (P-P misfit); Job performance (JP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4258] "Subscales: Children's Connection to Nature Scale (CCNS); Affinity for Nature; Outdoor Play Attitude; Outdoor Play Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4259] "Factors: Consumer values (CABV); Trust in ethical advertising (TEA); Ethical purchase decision involvement (EPDI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4260] "Factors: Information validation; Information gathering; Relationship building; Protection; Social enjoyment; Negative influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4261] "Factors: State anxiety; Arousal; Emotional regulation motivation; Information sharing motivation; Intention to share."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4262] "Factors: Students' learning cognition; Learning self-efficacy; Learning initiative; Learning effect; Teachers' affective support; Teaching methods; Learning environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4263] "Factors: Eating Problems; Emotional Problems; Attention Problems; Problems of Language and Communication; Problems of Proximity Seeking and Body Contact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4264] "Factors (Scales); Satisfaction with life (Satisfaction with self; Personal relationships and satisfaction with the behavior of health professionals and others); Feelings about living with HD (Negative emotions; Positive emotions; Shame and embarrassment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4265] "Components (Subscales): Practical aspects of care-giving (Levels of support and access to professionals'; Long term and genetic issues; Daily hassles); Satisfaction with Life (Overall quality of life issues; Personal issues); Feelings about living with HD (Negative feelings; Positive feelings)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4266] "Factors: Satisfaction with life; Feelings about living with Huntington’s Disease (HD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4267] "Factors: Satisfaction with life; Feelings about living with Huntington’s Disease (HD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4268] "Subscales: Pain-avoidance goal; Mood-management goal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4269] "Factors: [Pro-environmental/pro-social] self-identity; [Pro-environmental/pro-social] values; [Pro-environmental/pro-social] engagement; Enthused participation; Social connection; Self-emotional appraisal; Others' emotional appraisal; Utilization of emotions; Regulation of emotions; Pro-environmental behavior; Pro-social behavior (Emotional intelligence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4270] "Factors: Collaboration; Network exposure; Time pressure; Transcendent experience; Intellectual experience; Creative ideation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4271] "Factors: National identity; EU identity; Global identity; Domestic product preferences; Foreign product preferences; Ethnocentrism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4272] "Factors: Autonomy satisfaction; Autonomy frustration; Competence satisfaction; Competence frustration; Relatedness satisfaction; Relatedness frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4273] "Factors: First-order factors (Procrastination (PRO); Attentional Control (AC); Impulse Control (IC); Emotional Control (EC); Goal Orientation (GO); Self-Control Strategies (SCS)); Second-order (Inhibition; Initiation); Third-order self-control factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4274] "Factors: Focus on Opportunity; Focus on Life; Focus on Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4275] "Factors: Worry; Cognitive Interference; Tension; Physiological Indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4276] "Subscales: Pleasure and VG; Happiness and VG."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4277] "Dimensions: Personal competency to prevent pressure injuries; Priority of pressure injury prevention; Impact of pressure injury; Personal responsibility in pressure injury prevention; Confidence in the effectiveness of pressure injury prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4278] "Dimensions: Risk Assessment; Risk Awareness; Prevention Intervention; Health Education; Wound Assessment and Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4279] "Subscales: Perceived brand globalness (PBG); Perceived brand localness (PBL); Brand competence; Brand warmth; Consumer brand identification (CBI); Purchase intention; Brand ownership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4280] "Subscales: Physical Activity; Healthful Eating; Mental Health; Barriers to Healthful Eating; Peer Influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4281] "Subscales: Control; Encouragement; Discouragement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4282] "Subscales: Fear of seizure consequences; Fear of the disease's long-term consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4283] "Dimensions: Manageability; Meaningfulness; Comprehensibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4284] "Subscales: Adaptive Strategies (AS); Suppression (S); Rumination (R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4285] "Subscales: Subjective feelings; Objective characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4286] "Dimensions: Fertility potential; Partner disclosure; Child’s health; Personal health; Acceptance; Becoming pregnant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4287] "Factors: Unfamiliarity with multi-device use; Complexity of multidevice use; Perceived task fit with multi-device use; Perceived task complexity; Expected satisfaction; Attitude toward multi-device use; Intention to use multiple devices; Perceived information quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4288] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4289] "Factors: Leisure-time physical activities; Social engagement; Mentally stimulating activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4290] "Subscales: Knowledge; General tasks; Communication; Mobility; Self-care; Domestic life; Relationships; Major life areas; Community life; Activities; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4291] "Subscales: Cognitive Burden/Responsibility; Emotional Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4292] "Factors: Symptoms; Energy and Postures; Actions and Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4293] "Factors: Felt stigma (FS); Stigma concealment (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4294] "Versions: Clinician (AES-C); Informant (AES-I); Self-rated (AES-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4295] "Factors: Positively worded (Compassionate); Negatively worded (Uncompassionate);"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4296] "Factors: Conflict Behavior; Speeding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4297] "Subscales: Aggressive Driving (CA); Transgressive/Aggressive Driving involving others (CTA); Individual Transgressive Concession (CTI)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4298] "Subscales: Emotional neglect and abuse; Physical neglect and abuse; Sexual abuse; Other traumatic events; Separation experiences; Dysfunctional family situation; Missing or dysfunctional peer group influences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4299] "Subscales: Anxiety; Depression. Factors: Psychic anxiety; Depression; Psychomotor agitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4300] "Factors: General Capacity for Self-Discipline; Deliberate/Nonimpulsive Action; Healthy Habits; Work Ethics; Reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4301] "Factors: Consequences Negative; Emotional Representation; Control Positive; Consequences Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4302] "Factors: Sleepiness; Alertness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4303] "Subscales: Correct Endorsements; Correct Rejections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4304] "Subscales: Exhaustion (EX); Cynicism (CY); Professional Efficacy (PE or reversed PE [rPE])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4305] "Subscales: Social media technology use; User training; Product Information communication; Diligence; Product knowledge; Adaptability; Customer relationship performance Relative to your competitors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4306] "Subscales: Mitigated killing; Animal cruelty; Murder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4307] "Scales: Client opportunism; Negative affect; Constructive discussion; Passive acceptance; Venting; Disengagement; Client senior management involvement (SMI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4308] "Subscales: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4309] "Factors: Perceived Usefulness; Perceived Ease of Use; Information Quality; Behavioral Intention; Attitude towards Route Diversion; Familiarity with Road Network."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4310] "Subscales: Fatigue; Energy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4311] "Factors: Impulsive trait; Hedonic Tendency; Materialism; Impulsive urge; Actual impulsive purchase behavior; Social influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4312] "Factors: Civil action; Financial action; Physical action; Persuasive action; Sustainable behavior; Proenvironmental behavior; Environmentally friendly behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4313] "Domains: Negative emotions/mood; Anxiety; Low energy; Cognition; Sleep disturbance; Self-harm/suicide; Low motivation; Sense of self; Eating behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4314] "Factors: Timeline chronic; Timeline cyclical; Consequences positive; Consequences negative; Control positive; Control negative; Emotional representations; Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4315] "Subscales: Family support; Friend support; Family rewards and punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4316] "Subscales: Environmental practices; Socioeconomic initiatives; Environmental preservation; Local employment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4317] "Subscales: Adaptability (Concern; Confidence; Control; Curiosity); Interest; Knowledge; Maturity; Career choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4318] "Scales: Hated self; Inadequate self; Reassured self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4319] "Subscales: Relationship Orientation (RO); Employee perceived brand knowledge (BK); Employee perceived brand responsibility (RSP); Employee perceived brand value fit (FIT); Employee-based brand equity (EBE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4320] "Factors: Forgiveness Climate; Organizational Fairness; Psychological Safety; Service Recovery Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4321] "Subscales: Perceived Relevance; Perceived Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4322] "Subscales: Somatic; Affective; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4323] "Subscales: Systematic reflection in the classroom; Systematic reflection at the school level; Using research in the classroom; Using research at the school level; Conducting research in the classroom; Conducting research at the school level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4324] "Subscales: Awareness; Social image; Value; Service quality; Perceived quality-Leadership; Loyalty; Overall brand equity; Satisfaction; (Postfestival) behavioral intention; Firm-created social media communication; User-created social media communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4325] "Factors: Self-awareness; Relational transparency; Balanced processing; Internalized moral perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4326] "Factors: Theism; Religious/Spiritual Practices; Peer Religiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4327] "Factors: Training; Rewards; Management Style; Job satisfaction; Job competence; Job impact; Job autonomy; Service-recovery performance; Job level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4328] "Factors: Brand image; Satisfaction; Brand trust; Brand love, Brand respect; Brand loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4329] "Factors: Conceptual skills; Commitment to the personal growth; Swift trust; Exhibitor team performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4330] "Factors: Understanding my kidney disease; Taking action to manage my kidney disease; Seeking social support; Adhering to a healthy diet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4331] "Subscales: Person-Job Fit Scale (PJFS); Person-Organization Fit Scale (POFS); Person-Group Fit Scale (PGFS); Person-Supervisor Fit Scale (PSFS). Factors: Values; Goals; Attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4332] "Factors: Driving errors; Intentional violations of traffic laws."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4333] "Subscales: Co-creation experience with performers (CoCP); Co-creation experience with other festival goers (CoCG); Festival satisfaction (FS); Place identity (PI); Place dependence (PD); Festival re-patronizing intention (FR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4334] "Subscales: Home Living (HLA); Community and Neighborhood Activities (CNA); School Participation (SPA); School Learning (SLA); Health and Safety (HSA); Social (SA); Advocacy Activities (AA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4335] "Subscales: General strategies; Problem-solving strategies; Support reading strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4336] "Factors: Actual use (ACT); Intentions to book (INT); Overall trust (TRU); Integrity (IGR); Ability (ABT); Benevolence (BEN); Website quality (QUL); Likability (LKB); Lack of Privacy/security (PSC); Natural propensity to trust (NPT); Other’s trust of buyer/seller (TBS); Third party recognition (TPR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4337] "Subscales: Underemployment; Status Discrepancy; Hours Discrepancy; Involuntary Temporary Work; Field; Poverty Wage Employment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4338] "Subscales: Communication; Lack of Concern Over CINV (Patient); Be a Good Patient; Medication Concerns; Treatment Futility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4339] "Subscales: Distress Relief (DR); Communication Comfort (CC); Rapport (R); Compliance Intent (CI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4340] "Second-order Factors: Agency/Voice (A/V); Reflexivity (R); Transformation (T). Subscales: Background research (A/V); Data collection (A/V); Analysis and dissemination (A/V); Participatory decision-making (R); Change in power relations (R); Community transformation (T); Partnership capacity (T)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4341] "Subscales: Innovative worker; Loyal worker; Leading workers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4342] "Factors: Value/accessibility of fast pitch; Internal Entrepreneurship; Internal Innovator; Entrepreneurship Experience; Co-curricular Experience; Recognition Motivation; Monetary Motivation; Dependent Care; Outside Employment; Ambition; PhD Ambition; Introversion; Agreeability; Disagreeability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4343] "Factors: Physiological Symptoms; Professor-Student Relationship; Inability and Inferiority; Leisure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4344] "Subscales: Observation of child's condition; Prevention of adverse events; Bowel habit training; Get social support; Access to medical care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4345] "Subscales: Daily life condition of users and the support required by them; Strengthening medical support; Scheduling medical treatment/management or recuperation; Preparing for users' mental and physical changes and preventing the deterioration of the situation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4346] "Factors: Same gender CTC; Different gender CTC."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4347] "Subscales: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4348] "Subscales: Awareness of deficits (AD); Social relation (SR); Family relation (FR); Instrumental and basic activities of daily living (ADL); Affective relation (AR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4349] "Subscales: Activities of daily living (ADL); Cognitive; Affective; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4350] "Factors: Long-term memory, cognition, and sensory problems; Verbal communication and comprehension deficits; Somatic symptoms; Emotional difficulties; Impulse control; Executive and planning abilities; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4351] "Subscales: Monitoring; Stakeholder relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4352] "Factors: School management; Teacher-teacher relationship; Learning-goal structure; Performance-goal structure; Teacher-student relationship; Student-student relationship; Parent involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4353] "Factors: Activity expectations; Activity self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4354] "Subscales: Intrinsic, contribution, and self-fulfillment; Acquisition and growth; Security and salary; Maintenance of activity levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4355] "Subscales: Efficient classroom management; Safe and stimulating learning climate; Clear instruction; Adaptation of teaching; Teaching–learning strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4356] "Factors: Social problems; Cognitive and emotional symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4357] "Major themes: dynamics of the experience, relating to how the writer experienced his/her characters; how the characters’ voices related to the writer’s own inner speech; how dialogue with characters was experienced; characters exhibiting agency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4358] "Factors: Word recognition; Comprehension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4359] "Factors: Emotional Support; Information Support; Social Presence of Others; Social Presence of Interaction with Sellers; Social presence of web; Trust in Social Commerce."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4360] "Factors: Competence; Autonomy; Autonomous motivation (Intrinsic motivation; Identified regulation); Perceived ease of use; Perceived usefulness; Attitude; Recommendation intention; Satisfaction; Organizational attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4361] "Factors: Service Quality; Perception of the Team’s Financial Status; Attitude Toward Sponsor; Service Quality Valence; Brand Awareness; Previous Experience With Sponsor; Perceived Fit; Brand Image; Behavior Intentions; Brand Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4362] "Subscales: Current services used; Service satisfaction; Future service utilization; Future perceived service needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4363] "Subscales: Enjoyment of nature; Empathy for nature; Responsibility toward nature; Awareness of nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4364] "Factors: Susceptibility to Peer Influence Normative; Informative; Susceptibility to Social Media Influence Normative; Informative; Attitude toward Social Media Platforms (SMPs) Advertising; SMP Advertising Avoidance Cognitive ad avoidance; Affective ad avoidance; Behavioral ad avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4365] "Subscales: Teacher mastery of ICT tools used to teach L1 writing; Teacher use of ICT tools to teach L1 writing; L1 teachers' use of ICT tools to evaluate L1 writing; L1 teachers’ attitudes toward using ICT tools to teach L1 writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4366] "Subscales: Authoritative (Warmth & Support; Autonomy granting; Regulation); Authoritarian (Non-Reasoning/Punitive; Physical Coercion; Verbal Hostility); Permissive (Indulgence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4367] "Subscales: Active/elated; Risk-taking/irritable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4368] "Factors: Marketing exploration; Marketing ambidexterity; Absorptive capacity; Sales growth (T/Q); Market volatility; Market competitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4369] "Subscales: Constant observations; Care planning; PRN with consent; Active distractions; Refuse medical care; Forced IM medication; Therapeutic Interventions; Inappropriate medical care; Remain present during cutting; Seclusion; Informing other staff; Providing sterile razors; Intermittent observations; Physical restraint; Give wound advice; Passive distraction; Provide first aid kit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4370] "Subscales: Orientation; Copying; Semantic knowledge; Calculation; Verbal fluency; Similarities; Naming; Visuospatial 1; Visuospatial 2; Anterograde; Executive (help)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4371] "Factors: Positive rating with comments (PRwC); Negative rating with comments (NRwC); Negative/neutral rating without comments (N/NRwoC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4372] "Factors: Genuine egoistic behaviors; Taking credit; Exerting pressure; Manipulative leader behavior; Undermining development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4373] "Factors: Generalized anxiety; Separation anxiety; Social anxiety; Panic; Specific anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4374] "Factors: Fight-Flight-Freeze System (FFFS); Behavioral inhibition system (BIS); Reward Interest (RI); Goal-Drive Persistence (GDP); Reward Reactivity (RR); Impulsivity (IMP) (Behavioral Approach System [BAS] Scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4375] "Factors: Fight-Flight-Freeze System (FFFS); Behavioral inhibition system (BIS); Reward Interest (RI); Goal-Drive Persistence (GDP); Reward Reactivity (RR); Impulsivity (IMP) (Behavioral Approach System [BAS] Scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4376] "Dimensions: Cognitive fusion (CF); Experiential avoidance (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4377] "Factors: Cognitive deficits; Somatic complaints; Emotional complaints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4378] "Factors: Relationship locus of control; Perspective taking; Intimacy avoidance; Emotion regulation; Romantic appeal; Conflict resolution skills; Temperament."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4379] "Factors: Behavior (Pre-commitment; Honesty and control); Beliefs (Personal responsibility; Gambling literacy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4380] "Factors: Positive play behaviors (Honesty and control (HC); Pre-commitment (PC); Positive play beliefs (Personal responsibility (PR); Gambling literacy (GL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4381] "Factors: Negative Suicide Ideation; Positive Suicide Ideation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4382] "Subscales: Psychosocial support; Career-related action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4383] "Factors: Turnover intentions; Job stress; Coworker support; Political ineptness; Despotic leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4384] "Factors: Job control; Job demand; Employee and management engagement; Supervisor support; Colleague support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4385] "Subscales: Accurately completed; Partially completed; Omitted; Rule breaks; Passes; Inefficiencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4386] "Subscales: Total time; Number of locations visited; Number of tasks completed; Total rule breaks; Performance efficiency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4387] "Factors: Managing the Pain; Enduring the Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4388] "Factors: Being in the Moment with the Child; Mindful Discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4389] "Subscales: Voice; Loyalty; Exit; Neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4390] "Subscales: Emotional control effort in profession; Patient‐focused emotional suppression; Emotional pretense by norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4391] "Domains: Healthy Relationships; Healthy Relationships; Puberty and Adolescence; STI’s and HIV; Pregnancy and Reproduction; Anatomy and Physiology; Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4392] "Factors: Mindful discipline; Being in the moment with the child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4393] "Factors: Meaning; Reactions of Others; Counterfactuals; Injustice; Reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4394] "Factors: Personalized Stigma (PS); Negative Self-Image (NSI); Concern with Public Attitudes (PA); Disclosure Concerns (DC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4395] "Subscales: Recognition of sponsored content (REC); Understanding of selling and persuasive intent (INTENT); Recognition of the commercial source of sponsored content (SOURCE); Understanding of persuasive tactics (TACTIC); Understanding of the economic model (ECO); Self-reflective awareness of the effectiveness of sponsored content (SELF); Skepticism toward sponsored content (SKEP); Appropriateness of sponsored content (APPR); Liking of sponsored content (LIKE). Factors: Self; Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4396] "Factors: Associational solidarity (As); Affection solidarity (Af); Functional solidarity (Fu)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4397] "Factors: Physician–Patient Relationship; Convenient and Fair Process; Service Reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4398] "Factors: Staff actions; Patient actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4399] "Factors: Behavioral intention; Attitude; Subjective norm; Perceived behavioral control; Conformity tendency; Traffic environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4400] "Subscales: Anxiety & Fear; Suspicion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4401] "Factors: Indoor type activities; Outdoor type activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4402] "Subscales: Work support; Personal support; Risk support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4403] "Subscales: Self-care and physical activity; Sex life; Public distresses; Self-perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4404] "Subscales: Social activities; Grooming and weighing; Clothing; Eating restraint."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4405] "Factors: Dissatisfaction/preoccupation with body image (D/P); Body image avoidance behaviors (AV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4406] "Constructs: Perceived intrusiveness; Attitudinal persuasion knowledge; Attitude toward the advertisement; Job-pursuit intention; Privacy concerns; Advertisement realism; Employer familiarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4407] "Factors: Job insecurity; Changes to core tasks; Adaptive performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4408] "Factors: Emotional bond with the group; Problem update and catharsis; Interpersonal learning; Goals and tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4409] "Subscales: Self-efficacy; Institutional support for patient-centered care; Complementary and alternative medicine attitudes; Preparedness to discuss nonpharmacy approaches for treating; Whole health practices; Whole health practice behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4410] "Subscales: Self-awareness (SA); Balanced processing (BP); Internalized moral perspective (IMP); Relational transparency (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4411] "Factors: Thoughts & Emotions; Lack of Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4412] "Factors: Emotional awareness; Emotional regulation; Social awareness; Emotional self-control; Emotional creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4413] "Subscales: Work; Close People; Own health; Close person's health; Finances. Factors: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4414] "Subscales: Knowledge of breastfeeding; Attitudes towards breastfeeding; Knowledge of schizophrenia; Attitudes towards women with schizophrenia; Attitudes towards breastfeeding among women with schizophrenia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4415] "Subscales: Seeking positive affect-inducing activities; Seeking support; Healthcare use behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4416] "Factors: \"I am\" (Identity; Satisfaction); \"I Have\" (Bonds; Network; Internal Strength); \"I Can\" (Self-efficacy; Affectivity/Reciprocity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4417] "Subscales: Japan Product; Japan Affairs; Intercultural; Approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4418] "Subscales: Perceptions of research in profession; Cognitive attitude towards research; Affective attitude towards research (positive); Affective attitude towards research (negative); Self-efficacy towards research; Importance of research"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4419] "Subscales: Compensation; Meaning Negotiation; Misinterpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4420] "Subscales: Positive implicit affect (PA); Negative implicit affect (NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4421] "Subscales: Health and Medicines Advice (HMA); Relationship Quality (REL); Environmental Quality (ENV); Technical Quality (TQ); Non-Prescription Service (NPS); Health Outcome (HO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4422] "Subscales: Metacognitive self-regulation; Growth mindset; Intrinsic motivation; Academic perseverance; Empathy; Relationship skills; Emotional regulation; Self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4423] "Factors: Dynamic capabilities; Cocreation capabilities; Service provision capabilities; Performance. Subfactors: Sensing capability; Seizing capability; Reconfiguring capability; Relational interaction capability; Empowered interaction capability; Ethical interaction capability; Individuated interaction capability; Concerted interaction capability; Developmental interaction capability; Brand management advisory capability; Creative advisory capability (originality); Creative advisory capability (relevance); Customer relationship advisory capability; Market research advisory capability; Customer-based performance; Financial performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4424] "Sections: Over-reactivity; Under-reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4425] "Factors: Product quality; Sales service quality; Technical repair service support; Complaint handling service; Trust in the supplier; Customer loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4426] "Factors: Interaction; Benevolence; Relationship value; Loyalty; Willingness-to-pay premium price; Relationship quality. Subfactors: Trust; Competence; Perceived relationship orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4427] "Factors: Product innovation; Importer feedback; Importer Integration in product development; Interfunctional coordination; Competitive intensity; Technological turbulence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4428] "Factors: Product innovation intensity; Product innovativeness novelty; Market responsiveness; Human resource capacity; Dysfunctional competition; Export market competitive intensity; Perceptual export performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4429] "Factors: Transaction-specific investment; Out-of-the-channel-loop perception; Partner's achievement orientation; Partner's opportunistic behavioral intention; Partner's extra-role behavioral intention; Market uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4430] "Factors: Direct offline; Indirect offline; Direct online; Indirect online."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4431] "Constructs: E-commerce resources; E-commerce marketing capabilities; Distribution efficiency; Communication efficiency; Export venture e-commerce performance; Export venture sales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4432] "Factors: Relationship value; Core offering; Customer responsiveness; Market sensing; Customer relationship management; Relational governance; Contractual governance; Psychic distance; Environmental munificence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4433] "Factors: Customer collaboration; Supplier Collaboration; Exploratory learning; Knowledge tacitness; Cross-functional collaboration; Service meaningfulness; Service novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4434] "Subscales: Affect; Probability; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4435] "Factors: Coercive power; Non-coercive power; Distance; Opportunism; Uncertainty; Infidelity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4436] "Factors: Conservativeness in the cheating accusation; Justification of cheating; Perceived immorality of cheating students."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4437] "Factors: Family; Friends; School; Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4438] "Factors: Narcissism; Machiavellianism; Psychopathy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4439] "Factors: Narcissism; Machiavellianism; Psychopathy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4440] "Subscales: Physical assault; Psychological aggression; Sexual coercion; Injuries; Negotiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4441] "Subscales: MILM-Experience (MILM-E); MILM-Reflectivity (MILM-R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4442] "Factors: Desire for Change and Innovation; Product Presentation; Product Performance Uncertainty; Web Shopping Convenience; Consumer Confidence; Shopping Enjoyment; Price Consciousness; Product Selection Support; Interest in Product Combinations; Product Search; Variety Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4443] "Domains: Respects the rights of patients to inspect their medical records; Conducts structural consultation with support personnel; Has perceptions about how to repeat prescriptions can be written in a responsible manner; Is able to let a mild disorder run its course even though the correct diagnosis is a mystery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4444] "Factors: Attitudes toward the Science of PrEP; Perception of Sexual Health Risks of PrEP; Perception of Dangerous Effects of PrEP."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4445] "Domains: Safe and stimulating learning climate; Efficient organization; Clear and structured instructions; Intensive and activating teaching; Adjusting instructions and learner processing to inter-learner differences; Learner engagement; Beyond the basic standards of teaching; Basic teaching skills; Activating students; Di!erentiating teaching; Teaching learning strategies; Almost perfect; Perfect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4446] "Factors: Self-care and emotional maturity; Cognitive and communication; Social competence; Learning dispositions; Classroom rules"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4447] "Factors: External; Introjected; Identified; Intrinsic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4448] "Factors: Leader-Member Exchange (LMX) Ambivalence; Leader-Member Exchange (LMX) Quality; Leader ambivalence; Leader-Member Exchange (LMX) certainty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4449] "Factors: Physical health; Food enjoyment; Security; Environmental comfort; Autonomy; Meaningful activity; Interrelationship; Family relationships; Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4450] "Subscales: Management commitment (MC); Management priority (MP); Organization communication (OC); Organizational participation (OP)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4451] "Subscales: Leader safety commitment; Safety communication; Safety training; Coworker safety practices; Safety equipment and housekeeping; Safety involvement; Safety rewards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4452] "Factors (Subscales): Pre-Burnout (Fatigue, Disturbed Breaks, Disturbed Leisure Time); Resources (General Well-Being, Sleep Quality, Being in Shape); Burnout (General Stress, Social Stress, Amotivation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4453] "Factors: Withdrawal symptom worry; Relapse worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4454] "Factors: Civic skills; Civic orientation; Local civic acts; General civic acts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4455] "Factors: Emotional exhaustion (EE); Depersonalization (D); Personal accomplishment (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4456] "Factors: Resilience; Adaptability; Flexibility; Decision-Making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4457] "Subscales: Inner awareness; Outer awareness; Acting with awareness; Acceptance; Decentering/nonreactivity; Openness; Relativity; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4458] "Subscales: Inner awareness; Outer awareness; Acting with awareness; Acceptance; Decentering/nonreactivity; Openness; Relativity; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4459] "Subscales: Stereotype endorsement; Social withdrawal; Alienation; Discrimination experience; Stigma resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4460] "Factors: Social support (SS); Self-efficacy (SE); Skills (SK); Goal setting (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4461] "Subscales: Life style liberty; Economic liberty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4462] "Factors: Economic/Government Liberty; Lifestyle Liberty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4463] "Subscales: Care; Fairness; Loyalty; Authority; Sanctity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4464] "Scales: Reflective Dialogue; Socialization of New Teachers; Teacher Collaboration; Data Use; Collective Responsibility; Innovation; School Commitment; Teacher Safety; Teacher–Principal/Director Trust; Teacher–Teacher Trust; Teacher–Parent Trust; Parent Involvement; Teacher Outreach/Collaboration With Parents; Parent Influence; Instructional Leadership; Teacher Influence; Program Coherence; Quality of Student Interaction; Positive Learning Climate; Child–Child Interactions; Early Mathematics Development; Early Language and Literacy; Early Cognitive Development; Early Social-Emotional Development; Support for Kindergarten Transition; Principal/Director–Parent Relationships; Program Orientation Towards Early Education; Staff Care of Parent as Person; Including Parents as Partners; Teacher Communication With Parents; Teachers’ Interactions With Children; Parent Influence on the Program; Social-Capital Building of Parents. Factors:"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4465] "Subscales: Aggressive/hostile behaviors; Exaggerated safety/caution behaviors; Anxiety-based performance deficit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4466] "Factors: Diabetes self-Management Skill; (Medical) Insulin Management Competence; (General) Self-Assertiveness; Autonomous Self-Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4467] "Subscales: Available resources; Intrinsic load; External load: organization and social ambiance at work; External load: temporal aspects of work; Germane load."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4468] "Subscales: Symptom Burden; Function; Health Behaviors; Healthcare-Seeking Skills; Economic Strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4469] "Subscales: Cognitive Centrality; In-Group Affect; In-Group Ties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4470] "Factors: Communication; Leader Support; Justice at Work; Colleagues Support; Paper Clarity; Skills Alignment; Challenges; Growth perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4471] "Subscales: Patient-centered care; Treatment effectiveness; Staff behavior; Availability and coordination of care; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4472] "Subscales: Verbal Sexual Communication; Non-Verbal Sexual Communication. Factors: Nonverbal Sexual Initiation and Pleasure; Nonverbal Sexual Refusal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4473] "Subscales: Verbal Sexual Communication; Non-Verbal Sexual Communication. Factors: Nonverbal Sexual Initiation and Pleasure; Nonverbal Sexual Refusal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4474] "Factors: Inadequate Attention/Affection; Jealousy/Infidelity; Chores/Responsibilities; Sex; Control/Dominance; and Future Plans/Money."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4475] "Factors: Healthcare Climate Supporting Competence and Relatedness; Healthcare Climate Supporting Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4476] "Factors: Readiness for Change; Planfulness; Using Resources; Intentional Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4477] "Factors: Autonomy in organizing work; Decision-making autonomy; Autonomy when using working methods; Diversity of tasks; The importance of work tasks; Identity of work tasks; Feedback from the job position; Complexity of work; Information processing; Problem solving; Diversity of skills; Specialization; Social support; Initiated interconnection of work; Acquired coherence of work; Cooperation outside the organization; Feedback from others; Ergonomics; Physical demands; Working conditions; Equipment used."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4478] "Factors: Avoidance of Negative Affectivity; Escape from Social and/or Evaluative situations; Pursuit of Attention; Pursuit of Tangible Reinforcement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4479] "Components: Family; Self; School; Compared Self; No violence; Self-efficacy; Friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4480] "Factors: Executive; Initiation; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4481] "Factors: Executive Apathy; Emotional Apathy; Initiation Apathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4482] "Subscales: Skills; Psychology Value; Course Behaviors; Student Learning Outcomes; Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4483] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4484] "Factors: Deliberative endangerment (DE); Unfocused driving (UD); Speed (SP); Risky exposure (RE); Smartphone distraction (SMP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4485] "Subscales: Transient violations; Fixed violations; Misjudgement; Risky exposure; Driver mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4486] "Subscales: Excitement; Sincerity; Competence; Sophistication; Ruggedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4487] "Subscales: Team Structure; Leadership; Situation Monitoring; Mutual Support; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4488] "Subscales: Centrality; Private Regard; Public Regard; Out-Group Regard; Prosocial Motivation; Personal Motivation; Moral Motivation; Strictness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4489] "Subscales: Competency 1; Competency 2; Competency 3; Competency 4; Competency 5; Competency 6; Competency 7; Competency 8; Competency 9."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4490] "Subscales: Barriers to the implementation of SQC; Benefits of SQC; Employee and company attitudes;"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4491] "Factors: Skills and resources; Awareness and sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4492] "Factors: Self-acceptance; Self-knowledge; Relationship quality; Consideration of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4493] "Subscales: Time scarcity; Material scarcity; Psychological resources scarcity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4494] "Subscales: Team structure; Leadership; Situation monitoring; Mutual support; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4495] "Factors: Challenge; Hindrance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4496] "Factors: Positive metacognitions about somatic hypervigilance (P-MASH); Negative metacognitions about the uncontrollability and physical repercussions of cognitive and attentional processes (N-MUR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4497] "Factors: Spiritual belief; Centricity of God; Altruism; Spiritual conduct; Purposefulness of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4498] "Constructs: SNS continuance usage; SNS continuance intention; Lack of awareness; Uncontrollability; Mental efficiency; User satisfaction; Trust in an SNS provider; Prior SNS use; Relationship management; Self-presentation; Perceived enjoyment; Perceived security; Perceived Risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4499] "Factors: Reading Attitudes and Interests; Reading Purposes; Reading Ability; Higer-Order Literacy; Sophistication of Reading Materials; Transformational Reading."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4500] "Subscales: Knowledge about healthy products; Knowledge about unhealthy products; Dietary/nutrition knowledge; Healthy eating habits; Unhealthy eating habits; Dietary/Eating habits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4501] "Factors: Interpersonal dependence; Emotional outburst; Distress internalizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4502] "Subscales: Social inclusion; Self-determination; Emotional wellbeing; Physical wellbeing; Material wellbeing; Rights; Personal development; Interpersonal relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4503] "Factors: Social Development; Social Demonstration Approach; Social Demonstration Avoid Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4504] "Subscales: Perceived Self-Knowledge; Others' Knowledge; Perceived Specific Knowledge; Actual Specific Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4505] "Subscales: Knowledge; Attitude; Self-efficacy; Reinforcing factors; Enabling factors; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4506] "Subscales: Sense of Purpose; Purposeful Personal Expressiveness; Effortful Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4507] "Subscales: Health; Relationship; Identity; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4508] "Subscales: Device; Service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4509] "Subscales: B&H woman; B&H man; Social success; Pro-health behaviors; Anti-health behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4510] "Scales: Satisfaction; Performance. Themes: “Likes” about the Canadian Occupational Performance Measure; Effects on practice; Utility; Future use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4511] "Subscales: Activity; Autonomy; Belonging and friends; Hope; Self-perception; Well-being; Physical health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4512] "Factors: Special event experience; Memory of event experience; Satisfaction of event experience; Purchase intention of room nights. Subscales: Esthetics; Entertainment; Escapism; Memory of the special event; Satisfaction of the event; Purchase intention of special event package with room nights in it."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4513] "Factors: Transition preparation; Transition support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4514] "Subscales: Physical environment; Atmosphere; Ancillary events; Competition; Event novelty; Site accessibility; Site maintenance; Event organization; Self-service technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4515] "Factors: Place identity (PI); Place dependence (PD); Social bonding (SB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4516] "Factors: Behavioral self-blame (BSB) attributions; Characterological self-blame (CSB) attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4517] "Factors: Motivations (Perceived teaching abilities; Intrinsic value; Job security; Time for family; Shape future of children/adolescents; Enhance social equity; Make social contribution; Work with children/adolescents; Fallback career; Prior teaching and learning experiences; Social influences); Perceptions (High demand; Expert career; Social status; Salary; Social discussion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4518] "Subscales: Frequency that the child used rotation; Finger-to-palm translation; Palm-to-finger translation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4519] "Subscales: Comprehensibility; Listening; Openness; Feedback; Empathy; Nonverbal; Paralanguage; Manner."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4520] "Subscales: Hedonic values; Egoistic values; Altruistic values; Biospheric values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4521] "Factors: Content nativeness; Design nativeness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4522] "Factors: Ability; Benevolence; Integrity; Willingness to accept vulnerability (W2AV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4523] "Factors: Emotional burden; Family and friends distress; Regimen-specific distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4524] "Subscales: Electricity saving; Waste reduction; Pro-social action; Local support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4525] "Factors: Behavioral intention (BI); Attitude (AT); Subjective norms (SN); Perceived behavioral control (PBC); Self-reported lane change violation behavior at intersections (LCV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4526] "Domains: Awareness of the guidelines; Knowledge of the guidelines; Perceived disease susceptibility; Perceived disease severity; Perceived behavioral control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4527] "Factors: Personal regimen-specific distress; Child regimen-specific distress; Keeping up with chronic demands; Negative Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4528] "Factors: Emotional burden; Regimen-specific distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4529] "Factors: Negative emotions; Keeping up with chronic demands; Personal regimen-specific distress; Child regimen-specific distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4530] "Subscales: Purpose in life; Self-esteem; Life satisfaction; Cognitive Flexibility; Proactive coping; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4531] "Factors: Coping motives; Enhancement motives; Social motives; Conformity motives; Expansion motives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4532] "Factors: Focus of assessment (Learning; Accountability; Certifying; Teaching); Control purpose (Formative regulation (FR); Societal control (SC)); Focus *control interaction (Learning-FR; Teaching-FR; Accountability-FR; Certifying-FR; Accountability-SC; Certifying-SC; Learning-SC; Teaching-SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4533] "Factors: Professor's work; Pedagogical issues; Usability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4534] "Constructs: Social influence; Learning relevance; Self-efficacy; Anxiety; Playfulness; Perceived ease of use; Perceived usefulness; Voluntariness; External facilitating conditions; Use behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4535] "Subscales: Considered torture; Effective; Justified."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4536] "Subscales: Somatic; Schneiderian; Secondary features of dissociative identity disorder; Borderline personality disorder criteria; Extrasensory perception/paranormal; Suicide attempts; Conversion; Number of dissociative disorders; Trauma score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4537] "Factors: Quality (Positive Bonding; Positive Working; Negative Relationship); Structure (Member-member; Member-leader; Member-group)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4538] "Factors: Hedonic needs; Symbolic needs; Self-esteem needs; Recognition needs; (Korean luxury cosmetic) brand involvement; Informational herd behavior; Normative herd behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4539] "Subscales (Factors): Preparation (Course; Resource); Process (Debrief; Clinical Ability); Outcome (Confidence; Problem Solving & Collaboration)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4540] "Factors: Information Sensitivity; Privacy Control; Privacy Risk; Social Privacy Concerns; Institutional Privacy Concerns; Efficiency Benefit; Social Benefit; Enjoyment Benefit; Engagement; Social Desirability Bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4541] "Factors: Technological insecurity; Organizational support for strengths use; Friendship opportunities; General Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4542] "Factors: SZS Intentional; SZS Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4543] "Factors: Negation of Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4544] "Factors: Recognition needs; Information needs; Social needs; Entertainment needs; Salience; Tolerance; Mood modification; Relapse; Withdrawal; Conflict; Instagram addiction; Psychological well-being; Shyness; Loneliness; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4545] "Subscales: Antisocial; Avoidant; Borderline; Compulsive; Dependent; Depressive; Histrionic; Narcissistic; Negativistic; Paranoid; Sadistic; Schizoid; Schizotypal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4546] "Subscales: Risk taking; Innovativeness; Proactivity; Perseverance; Passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4547] "Subscales: Non-Arousal; Partnered-Arousal; Solitary-Arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4548] "Factors: Social media analytics technology–related deployment; Marketing and Information technology integration; Social media analytics skills; Technological opportunism; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4549] "Factors: Organizational Ambidexterity; Organizational Context; Interorganizational Relations; Structural Differentiation; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4550] "Scales: Entrepreneurial intentions; Personal attitudes; Subjective norms; Entrepreneurial skills; Entrepreneurial behavior"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4551] "Subscales: (Eighth-grade level suggested) Technique; Intonation; Expressiveness/tone quality; Rhythm; (Seventh-grade level suggested) Rhythm/technique; Tone quality/intonation; Expressiveness/tone quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4552] "Subscales: Comfort and confidence with RtI; School-wide changes and beliefs; School psychologist self-efficacy; Preparedness of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4553] "Factors: Listening with Full Attention; Compassion and Acceptance; Self-Regulation in Parenting; Emotional Awareness of Child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4554] "Domains: Physical sexual function; Sexual and relationship concerns; Sexual desire and sexual self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4555] "Subscales: Emotional Awareness; Present-Centered Attention; Low-reactivity; Non-judge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4556] "Factors: Compassion for Child (7 items); Emotional Awareness in Parenting (6 items); Nonjudgmental Acceptance in Parenting (6 items); Listening with Full Awareness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4557] "Subscales: Compassion for child; Non-judgmental acceptance; Self-regulation in parenting; Listening with full attention; Emotional awareness of child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4558] "Factors: Listening with Full Attention; Compassion for the Child; Non-judgmental Acceptance of Parental Functioning; Emotional Non-reactivity in Parenting; Emotional Awareness of the Child; Emotional Awareness of Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4559] "Subscales: Nonjudgmental acceptance of parental functioning (NONJUDG); Emotional self-regulation (EMO); Compassion for child (COMP); Listening with full attention (LISTEN); Noticing child’s feelings (NOTICE); Insight into effect of mood (INSIGHT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4560] "Subscales: Geometry; Numeracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4561] "Subscales: Stereotype awareness (aware); Stereotype agreement (agree); Self-concurrence (apply); Self-esteem decrement (harm)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4562] "Subscales: Awareness of public stereotypes; Stereotype agreement; Stereotype self-occurrence; Drug-related shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4563] "Factors: Aggressive violations; Ordinary violations; Errors; Lapses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4564] "Subscales: Assessment; Professional foundations; Planning and preparation; Educational method and strategies; Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4565] "Subscales: Understanding; Support; Expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4566] "Factors: Disease symptoms; Side-effects of treatment; Body image; Future perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4567] "Factors: Disease Symptoms (DS); Side Effects of Treatment (SE); Future Perspective (FP); Body Image (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4568] "Factors: Self-acceptance; Self-development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4569] "Factors: Lack of concentration; Lack of pro-social attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4570] "Factors: Trust in supervisor; Top management reliability; Outgroup attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4571] "Subscales: Social awareness; Social cognition; Social communication; Social motivation; Restricted interests and repetitive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4572] "Subscales: Physical well-being (PWB); Social/family well-being (SWB); Emotional well-being (EWB); Functional well-being (FWB); Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4573] "Subscales: Perceived cognitive impairments (CogPCI); Comments from others (CogOth); Perceived cognitive abilities (CogPCA); Impact of perceived cognitive impairments on QOL (CogQOL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4574] "Factors: Authentic leadership; Job crafting; Customer-oriented OCB; Service recovery performance; Human resource flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4575] "Factors: Sales Team Intragroup Conflict; Learning Orientation; Performance Orientation; Procedural Justice; Distributive Justice; Job Satisfaction; Intent to Turnover; Company Tenure; Sales Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4576] "Factors: Effective use of method selected and continuity of contraceptive use and care; Method selection; Respectful care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4577] "Factors: International Joint Venture Knowledge co-creation; Partner complementarity; Partner compatibility; International Joint Venture Performance; Information verifiability; Chinese asset specificity; Foreign asset specificity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4578] "Factors: Network governance; Consumer demand uncertainty; Unilateral governance; Retailer's power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4579] "Factors: Social-information processing capability; Information acquirement; Information communication; Information responsiveness; Customer co-creation; Social media agility; Internal social media agility; External social media agility; Strength of customer-firm relationships; Levels of social media use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4580] "Dimensions: Characterological self-blame; Behavioral self-blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4581] "Subscales: Relational behavior; Authoritarian behavior; Competitive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4582] "Subscales: Necessity; Concerns; Practical barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4583] "Factors: Asset specificity; Opportunism; Administrative control; Transactional uncertainty; Trust; Information exchange; Flexibility; Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4584] "Factors: Perceived learning effect; Expected outcome; Intention; Entertainment; Engagement; Competition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4585] "Factors: Disinhibition; External Cues; Awareness; Emotional Response; Distraction.; Self-regulation; Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4586] "Factors: To draw attention to the others; Need to have fun and relax; Hookah smoking in the family; Availability; Curiosity; Having a positive attitude towards hookah."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4587] "Factors: Acute anxiety and adjustment; Social anxiety, specific fears and trauma; Perfectionism and control; General anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4588] "Domains: Chinese; Macau; Hong Kong; Western."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4589] "Factors: Absenteeism; Presenteeism; Productivity costs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4590] "Modules: Absenteeism; Presenteeism; Loss of unpaid work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4591] "Factors: Addiction; Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4592] "Factors: Behavioral intention; Subjective norms; Perceived control; Attitudes toward behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4593] "Factors: Individuality supported through specific nursing interventions (ICS-A); Patient perceptions of individuality in their own care during hospitalization (ICS-B). ICS-A Subscales: Clinical situation A; Personal life situation A; Decisional control over care-related decisions A. ICS-B Subscales: Clinical situation B; Personal life situation B; Decisional control over care-related decisions B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4594] "Factors: Self-confidence; Need for success; Personal benefit and leadership; Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4595] "Factors: Job Performance; Informed Action; Transparent Interaction; Representational Fidelity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4596] "Factors: High arousal negative; Low arousal negative; General positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4597] "Factors: Facial expression; Upper limb; Compliance with ventilation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4598] "Sections: Facial expression; Upper limb movement; Compliance with ventilation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4599] "Factors : Child impact (Symptom; Function; Psychology; Self-image); Family impact (Parental distress; Family function)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4600] "Sections: Face; Activity (movement); Guarding; Physiological (vital signs); Respiratory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4601] "Sections: Facial expressions; Body movements; Muscle tension; Compliance with the ventilator for intubated patients or vocalization for extubated patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4602] "Factors: Intelligence; Personality; Cognition; Behavior; Feeling; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4603] "Factors: Computer Engagement; Computer Addiction; Computer Comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4604] "Subscales: Similarity; Vividness; Positive affect/Positivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4605] "Subscales: Interference with life; Somato-sensory retreat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4606] "Dimensions: Active and constructive coping; Cognitive coping and refocus on planning; Positive reappraisal; Rumination and preoccupation; Emotional regulation; Self-soothing and the ability to manage negative emotions; Perseveration of negative emotion; Proneness to responding with anger; Emotional awareness; Denial and cognitive avoidance; Behavioral (dis)engagement and catastrophizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4607] "Factors: Stigma; Normalization/glorification; Isolation/depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4608] "Factors: Glorification; Isolation; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4609] "Factors: Animal meat (MEAT); Poor hygiene (HYG); Human contamination (HUCON); Mold (MOLD); Decaying fruit (FRUIT); Fish (FISH); Decaying vegetables (VEGI); Living contaminants (LCON)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4610] "Domains: Signs and symptoms; Causes or the nature of suicide; Risk factors; Treatment and prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4611] "Factors: Sleep dissatisfaction and impairments; Sleep onset; Sleep maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4612] "Factors: Active Coping (Exercise; Relaxation; Cognitive Control; Pacing; Assertive Communication; Proper Body Mechanics); Perseverance (Task Persistence; Avoid Pain-Contingent Rest; Avoid Asking for Assistance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4613] "General Factor: Work‑Study Congruence. Factors: Family; Leisure; Occupation; University demands and resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4614] "Subscales: Quantitative demands; Work pace; Emotional demands; Demands to conceal feelings; Cognitive demands; Work without boundaries; Influence at work; Influence on working hours; Possibilities for development; Role clarity; Role conflicts; Predictability; Possibilities for performing work tasks; Unnecessary work tasks; Social support from colleagues; Cooperation between colleagues within teams, departments, or groups; Trust between colleagues; Social support from management; Quality of leadership; Cooperation with immediate supervisor; Justice in the workplace; Involvement of employees; Changes in the workplace; Experience of meaning at work; Commitment to the workplace; Work engagement; Job insecurity; Conflict between work-life and private life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4615] "Factors: Observing; Describing; Nonjudging of inner experience; Acting with awareness; Nonreactivity to inner experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4616] "Subscales: Identity problems; Self-direction problems; Empathy problems; Intimacy problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4617] "Factors: Perceived Obstacles; Negative Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4618] "Factors: Effectiveness of MALL; Teacher influence; Degree of exhibition to MALL; Surplus value of MALL; Orientation towards MALL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4619] "Factors: Effectiveness of CALL vs. non-CALL; Surplus value of CALL; Teacher influence; Degree of exhibition to CALL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4620] "Subscales: Leadership; Justification; Culture/practice; Contextual cues; Judgement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4621] "Subscales: Information Exchange; Interpersonal Relationship; Disrespect and Abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4622] "Subscales: Psychological Well-being (PW); Social Support (SS); Social and Environmental Security (SES); Spirituality (SP); Functional Health (FH); Mental and Physical Health (MPH); Health-Related Behaviors (HRB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4623] "Factors: Habitual action (HA); Understanding (U); Reflection (R); Critical reflection (CR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4624] "Factors: Personal Control; External Control; Stability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4625] "Factors: Cognitive factor; Somatic/vegetative symptoms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4626] "Subscales: Personal competence; Acceptance of self and life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4627] "Subscales: Secure Attachment (SA); Anxious Attachment (AxA); Avoidant Attachment (AvA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4628] "Factors: Autonomy; Enjoyment; Habit; Impulsiveness; Outcome Expectancy; Self-Presentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4629] "Subscales: Universal-nonuniversal beliefs; Fixed-growth beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4630] "Factors: Social referrals (SOR); Information quality (IQ); Transaction safety (TS); Trust (TRU); Continued use of Airbnb (CU); Positive word-of-mouth intention (PWOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4631] "Domains: Pain; Function; Fatigue; Sleep; Emotional wellbeing; Physical wellbeing; Coping/self-management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4632] "Factors: Working memory; Inhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4633] "Factors: Psychopathy; Machiavellianism; Narcissism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4634] "Factors: Pain Willingness; Activity engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4635] "Subscales: Activity Engagement; Pain Willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4636] "Factors: Negative information processing style (NIPS); Positive information processing style (PIPS); Positive response evaluation style (PRES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4637] "Factors: Negative information processing style (NIPS); Positive information processing style (PIPS); Positive response evaluation style (PRES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4638] "Subscales: Attitudes towards HIV testing; Subjective norm; Barriers: Negative feelings about HIV testing; Barriers: Concern about privacy; Barriers: Structural barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4639] "Subscales: Well-being; Calm; Adverse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4640] "Domains: Quality of Care; Interpersonal Relationship (pharmacist/patient); Overall."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4641] "Subscales: Lack of cognitive confidence (CC); Positive beliefs (POS); Cognitive self-consciousness (CSC); Uncontrollability and danger (NEG); Need to control thoughts (NC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4642] "Dimensions: Preservation; Use; Global."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4643] "Factors: Positive connection to nature and other people; Unpredictable or negative cognitive responses; Physical reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4644] "Factors: Affective Instability; Identity Problems; Self-Harm; Negative Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4645] "Factors: Religious Beliefs; Mistrust; Health Beliefs/Fears; Role Overload; Perceived Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4646] "Factors: Computational Thinking; Robotic Coding and Software; Professional Development and Career Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4647] "Factor: Global cognitive performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4648] "Factors: Data-informed decision-making; Safe and orderly school operation; High, cohesive and culturally relevant expectations for all students; Distributive and empowering leadership; Coherent curricular programs; Real-time and embedded instructional assessment; Commitment and passion for school renewal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4649] "Subscales: Exercise; Task Persistence; Relaxation; Cognitive Control-Diverting Attention; Cognitive Control-Coping Self-Statements; Cognitive Control-Reinterpreting Sensations; Cognitive Control-Avoid Catastrophizing; Cognitive Control-Ignoring Pain; Pacing; Avoid Pain Contingent Rest; Avoid Asking for Assistance; Assertive Communication; Proper Body Mechanics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4650] "Subscales: Identity; Self-Direction; Empathy; Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4651] "Subscales: Distance; Time flexibility; Frequency; Long distance/leisure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4652] "Subscales: Trans-inclusive messaging; Name/pronoun usage; Outreach; Gender-affirming practice; Referral comfort; Inclusive intake forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4653] "Factors: Prementalization; Certainty in Mental States; Interest and Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4654] "Factors: Empathic concern; Interpersonal OCBs towards peers (OCB-I); Privacy invasion peers; Crowding perceptions; Person-Organization Fit (POF); Relational conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4655] "Factors: Überlebensschuldgefühl (Guilty of Survival); Trennungsschuldgefühl (Separation Guilt); Schuldgefühl aus Verantwortung/Pflicht (Omnipotent Responsibility Guilt [Feeling the Guilt of Responsibility/Duty])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4656] "Factors: Leaving Family Behind; Having More Privileges; Becoming Different; Experiencing Pressures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4657] "Factors: Adaptability; Expressivity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4658] "Constructs: Affective irreplaceability; Behavioral compulsion; Cognitive preoccupation; Habit; Online social game addiction; Self-reactive expectation; Usage Experience; Usage Frequency; Social Desirability Bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4659] "Factors: Psycho-social aspects; Physical fit of hearing device; Hearing device sound quality and understanding conversation; Anxiety; Self-image; Physical sensations; Wax-related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4660] "Factors: Active Coping; Passive Coping; Loneliness; Online Disclosure; Offline Disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4661] "Subscales: Light touch; Pressure; Pin-prick; Temperature; Tactile localization; Bilateral simultaneous touch; Appreciation of joint movement; Direction of movement sense; Joint position sense; Two-point discrimination; Stereognosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4662] "Subscales: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4663] "Constructs: Proactive Technological Orientation; IT Connectivity; Internal Communication; Supply Chain Member Pressure; Member Relationship Quality; Business Systems Leveraging; Information Sharing; Supply Chain Performance; Uncertainty; Process Innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4664] "Factors: Careful in daily life; Stockpiling; Health monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4665] "Factors: Wisdom; Courage; Humanity; Justice; Temperance: Transcendence. Subscales: Creativity; Curiosity; Love of Learning; Open-mindedness; Perspective; Honesty; Bravery; Industry; Zest; Kindness; Love; Social intelligence; Fairness; Leadership; Citizenship; Forgiveness; Humility; Prudence; Self-regulation; App. of beauty; Gratitude; Hope; Humor; Spirituality; Wisdom; Courage; Humanity; Justice; Temperance; Trascendence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4666] "Factors: Self-determining reason; Conformity reason."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4667] "Factors: Inattention/memory; Hyperactivity; Impulsivity; Self-concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4668] "Factors: Interference of Heroin (IH); Frequency of Craving (FC); Control of Heroin (CH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4669] "Factors: Present perceived powerlessness; Future perceived powerlessness; Financial perceived powerlessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4670] "Subscales: Personal; Social; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4671] "Scales: Personal Science Teaching Efficacy Belief (PTSE); Science Teaching Outcome Expectancy (STOE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4672] "Factors: Personal Mathematics Teaching Efficacy (PMTE); Mathematics Teaching Outcome Expectancy (MTOE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4673] "Factors: Chronic Fatigue (CF); Acute Fatigue (AF); Intershift Recovery (IR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4674] "Factors: Efficient Sexual Function; Inefficient Sexual Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4675] "Factors: COMP 1; COMP 2; COMP 3; COMP 4."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4676] "Factors: Realistic fears about medical fragility and anxieties related to spiritual or afterlife issues (F1); fears about dying alone and defenseless (F2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4677] "Second Order Factor: Hotel Employees' Perceived Job Risk (HEPJR). First-Order Factors: Human risk (PHR); Equipment risk (PER); Internal environment risk (PIER); external environment risk (PEER); management risk (PMR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4678] "Subscales: Chronic Fatigue (CF); Acute Fatigue (AF); Intershift Recovery (IR)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4679] "Factors: Continuous; Intermittent; Affective; Neuropathic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4680] "Factors: Physical; Psychological; Hardship; Nausea; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4681] "Factors: Stigma; Value; Respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4682] "Factors: Positive Beliefs about Worry (POS); Negative Beliefs about Worry (NEG); Cognitive Confidence (CC); Need for Control (NC); Cognitive Self-Consciousness (CSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4683] "Subscales: Capability; Opportunity; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4684] "Domains: Knowledge; Social/professional role and identity; Beliefs about capability; Optimism; Beliefs about consequences; Emotion; Intentions; Goals; Environmental context and resources; Social influences; Reinforcement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4685] "Subscales: Belief about the substances; Attitudes toward substance abuse; Anti-drug information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4686] "Subscales: Autonomy irrational beliefs (AIB); Relatedness irrational beliefs (RIB); Competence irrational beliefs (CIB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4687] "Subscales: Occupation (O); Activities (A); Traits (T)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4688] "Factors: Total working experience; Proactive personality; Organization socialization; Initial need-supply misfit; Initial demand-ability misfit; Person-organization fit; Person-group fit; Person-supervisor fit; Person-mentor fit; Actual turnover; Task performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4689] "Subscales: Underlying causes of problem behavior and symptoms; Responses to problem behavior and symptoms; On-the-job behavior; Self-efficacy at work; Reactions to the work; Personal support of TIC; System-wide support for TIC."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4690] "Subscales: Conceptual; Procedural."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4691] "Subscales: Intercultural friendship orientation; Interest in foreign affairs; Intercultural approach-avoidance tendency; Interest in international occupation or activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4692] "Subscales: Reframing; Reappraisal effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4693] "Subscales: Descriptive norms for close friends' reasons to use PBS; Injunctive norms for close friends' reasons to use PBS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4694] "Subscales: Informational support; Emotional support; Peer support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4695] "Subscales: Top management participation (TMP); Attitude (ATT); Subjective norms (SN); Behavioral intention (INT); Self-efficacy (SE); Perceived risk vulnerability (PV); Response cost (RC); Perceived response efficacy (RE); Perceived severity of sanctions (PSS); Perceived certainty of sanctions (PCS); National smartphone cybersecurity policies (NSCP); Actual smartphone security compliance behavior (AC); Smartphone-specific security threats (SSF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4696] "Factors: Rational beliefs (RB); Irrational beliefs (IB). Subscales: Non-demanding preferences; Rational frustration tolerance; Rational realistic negative evaluations; Rational self and other acceptance; Irrational demandingness; Irrational frustration intolerance; Irrational catastrophizing/awfulizing; Irrational global condemnation of human worth (self/others/life downing)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4697] "Factors: Environmental turbulence; Entrepreneurial orientation; Organizational unlearning; Radical innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4698] "Factors: Outcome control; Activity control; Capability control; Functional customer-oriented behaviors; Relational customer-oriented behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4699] "Factors: New Product Development Performance; Entrepreneurial Orientation; Market Orientation; Environmental Turbulence. Subfactors: Innovativeness; Proactiveness; Risk-taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4700] "Factors: Celebrity endorser credibility; Brand image; Purchase intention; Brand differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4701] "Sub-Dimensions: Change-driving; Bootstrapping; Risk-taking. Subscales: Risk (RT; Risk-taking); Proactiveness (PA; Change-driving); Innovativeness (IN; Change-driving); Customer orientation (CO; Bootstrapping); Resource leveraging 1 (RL1; Bootstrapping); Resource leveraging 2 (RL2; Bootstrapping); Market-driving (MD; Change-driving)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4702] "Factors: Strategic flexibility; Explorative capability; Exploitative capability; Magnitude of marketing strategy response; Top management commitment; Organization-wide commitment: existential criticality; Organization-wide commitment: embracement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4703] "Subscales: Amotivation; External regulation; Introjected motivation; Identified motivation; Intrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4704] "Factors: Harm Reduction; Abstinence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4705] "Factors: Commitment to Recovery; Commitment to Harm Reduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4706] "Scales: Images of Curiosity; Attitudes towards Epistemic Curiosity. Factors: Social Image; Epistemic Image; Personal Inclination; Societal Relevance; Negative Opinion; Fear of Negative Judgment; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4707] "Subscales: Motivation (Perceived Value and Valence); Self-management (Interdependence); Self-monitoring (Metacognitive Proficiency)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4708] "Factors: Destination Femininity (Grace; Gorgeousness; Softness; Kindheartedness); Destination Masculinity (Dominance; Vigor; Courage; Competence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4709] "Subscales: Depressive symptoms; Vegetative symptoms; Symptoms of agoraphobia; Symptoms of socialphobia; Pain symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4710] "Subscales: Verbal Perseveration; Imaginal Prefiguration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4711] "Subscales: Antagonistic; Synergistic; Social; Negative Effects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4712] "Factors: Health and function; Living environment; Carers’ perception of fall and fall risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4713] "Factors: Parental Permission; Self-Disclosure; Academic Performance Decrement; Privacy Concerns; Parental Encouragement; Parental Worry; Parental Monitoring; Social networking site fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4714] "Factors: Core disgust; Interpersonal disgust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4715] "Factors: Personalization; Perceived Entertainment; Perceived Informativeness; Perceived Creativity; Perceived Credibility; Utilitarian click-through motivation; Hedonic click-through motivation; Urge to Buy Impulsively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4716] "Factors: Emotional support; Practical support; Co-parent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4717] "Factors: Teacher support; Teacher promotes interaction; Teacher promotes mutual respect; Teacher promotes performance goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4718] "Factors: Positive Climate; Teacher Sensitivity; Regard for Adolescent Perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4719] "Subscales: Lifestyle Restrictions; Positive Coping; Negative Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4720] "Factors: Information technology use for work; Power distance; Masculinity; Technostress; Techno-invasion; Techno-overload; Techno-complexity; Techno-insecurity; Techno-uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4721] "Factors: Travel fear; Threat severity; Threat susceptibility; Response efficacy; Self-efficacy; Protection motivation; Resilience; Problem-focused coping; Self-supported emotional coping; Social-support emotional coping; Disengagement coping; Travel avoidance; Cautious travel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4722] "Factors: Environment; Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4723] "Factors: Worry; Self-Focus; Bodily Symptoms; Somatic Tension; Perceived Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4724] "Factors: Positive recognition; Task assignment; Relationship establishment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4725] "Subscales: Explaining skills (Tier1); Reasoning from an addressee-oriented perspective (Tier2_A); Reasoning from a subject-oriented perspective (Tier2_S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4726] "Constructs: Functional Failure (scalability and response failure); Functional Failure (ergonomics failure); Information Failure (accuracy failure); Information Failure (assurance failure); System Failure; Perceived justice with service recovery (PJWSR) (Distributive); PJWSR (Procedural); PJWSR (Interactive); Post-recovery satisfaction (SSR); Perceived customer opportunism (PCO); Post-recovery perceived switching cost (PSC); E-loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4727] "Factors: Motivated use; Expanded perception; Experiential value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4728] "Factors: Motivation; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4729] "Factors: Behavioural social avoidance; Behavioural non-social avoidance; Cognitive social avoidance; Cognitive non-social avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4730] "Factors: Behavioral-social avoidance; Cognitive-non-social avoidance; Cognitive-social avoidance; Behavioral-non-social avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4731] "Factors: Cognitive Nonsocial, Behavioral Nonsocial, Behavioral Social and Cognitive Social"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4732] "Factors: Behavioral-social avoidance; Cognitive-non-social avoidance; Cognitive-social avoidance; Behavioral-non-social avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4733] "Factors: Early Postmodern; Current Postmodern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4734] "Subscales: Task-orientation; Relationship-orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4735] "Factors: College-bound identity; Circumstances and financial burden; Academic preparation; Other career options."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4736] "Factors: Augmenting Adaptations; Reducing/Reordering Adaptations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4737] "Factors: Detachment self-efficacy; Expectations of feeling relaxed; Expectations of having fun; Expectations of gaining perspective; Expectations of connecting with loved ones; Expectations of making progress on personal priorities and projects (Positive Outcome Expectations); Expectations of planning stress before the vacation; Expectations of stress during the vacation; Expectations of being perceived as less committed by supervisors and/or colleagues; Expectations of burdening coworkers; Expectations of falling behind at work; Expectations of falling behind in housework; Expectations of negative financial consequences (Negative Outcome Expectations)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4738] "Factors: Psychomotor Acceleration; Hopelessness; Suicide Tendency; Overactivity; Retardation; Distraction/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4739] "Factors: Impulsive-Aversive; Controlled-Aversive; Controlled-Appetitive; Impulsive-Appetitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4740] "Subscales: Rage aggression; Revenge aggression; Reward aggression; Recreation aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4741] "Dimensions: Acceptance/Medication Inconvenience; Acceptance/Long-Term Treatment; Acceptance/Regimen Constraints; Acceptance/Numerous Medications; Acceptance/Side Effects; Acceptance/Effectiveness; Acceptance/General."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4742] "Subscales: Passion transfer; Organizational innovation; Self-enhancing passion; Self-transcending passion; Mutual communication; Organizational barriers-behavior; Organizational barriers-incentive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4743] "Subscales: Connecting; Knowing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4744] "Subscales: Being attentive; Reciprocity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4745] "Subscales: Country image; Attitude towards the Country; Product-Country Image; Need for Cognition; Need for Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4746] "Subscales: Attitude; Disclosure and Help-seeking; Social Distance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4747] "Subscales: Consumer Ethnocentrism; Self-Direction; Stimulation; Achievement; Power; Hedonism; Perceived Product Quality; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4748] "Subscales: Joint planning (JP); Joint problem solving (JPS); Interface standardization; Tacitness of knowledge (TOK); Contracts; Intellectual property rights (IPRs); Product innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4749] "Subscales: Intrinsic/extrinsic enjoyment value; Logistics value; Efficiency value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4750] "Factors: Fear; Somatic Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4751] "Subscales: Knowledge, beliefs, and attitudes towards people suffering from chronic pain; Knowledge, beliefs, and attitudes towards biopsychosocial impacts of CP; Knowledge, beliefs, and attitudes towards treatment of CP."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4752] "Factors: Perceived concerns; Perceived benefits; Stigma and disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4753] "Factors: Inhibition of harmful intention (IHI); Prosocial intention (PI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4754] "Factors: Decisional = Presence of Positive Emotion; Emotional = Reduction of Negative Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4755] "Factors: Program effectiveness; Teaching quality; Ethics and Professionalism; Learner support; Safety and convenience; Awareness of the rules."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4756] "Factors: Mental health problems; Cognitive problems; Physical problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4757] "Factors: Perceived Time Use Context - Time-of-Day; Perceived Time Use Context - Day of the Week; Perceived Location Use Context - Physical Distraction; Perceived Location Use Context - Location Characteristics; Perceived Social Use Context - Social Place; Perceived Social Use Context - Occurrence of Social Relations; Perceived Technological Use Context - Connected Device; Perceived Technological Use Context - Network Connectivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4758] "Factors: Cognitive Competence; Value; Difficulty; Affect; Effort; Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4759] "Factors: Socially Prescribe Perfectionism (SPP); Self Oriented Perfectionism (SOP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4760] "Factors: Socially prescribed perfectionism-SF ; Self-oriented perfectionism-SF."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4761] "Subscales: Intrinsic value; Attainment value (Importance of achievement); Attainment value (Personal importance); Utility value (Utility for daily life); Utility value (Utility for job); Utility value (Utility for school); Utility value (Social utility); Cost (Effort cost); Cost (Opportunity cost); Cost (Ego cost); Cost (Emotional cost); Expectancy (Self-efficacy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4762] "Subscales: Content; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4763] "Factors: Rigid Perfectionism; Self-Critical Perfectionism; Narcissistic Perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4764] "Subscales: Positive mood; Negative mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4765] "Factors (Facets): Self-critical perfectionism (Concern over mistakes; Doubts about actions; Self-criticism; Socially prescribed perfectionism); Rigid perfectionism (Self-oriented perfectionism; Self-worth contingencies); Narcissistic perfectionism (Other-oriented perfectionism; Hypercriticism; Entitlement; Grandiosity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4766] "Subscales: Internal flow; External flow."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4767] "Subscales: Awareness of needs; Ascription of responsibility; Outcome efficacy; Personal norms; Attitudes; Social norms; Impulsive purchase behavior; Perceived behavior control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4768] "Subscales: Free Will; Fatalistic Determinism; Scientific Determinism; Unpredictability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4769] "Factors: Calm; Negative affect; Positive cognitions; Behavioral avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4770] "Subscales: Negative affects; Calm; Cognitions; Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4771] "Subscales: Self-confidence; Anxiety; Motivation; Grit; F2F WTC inside classroom; F2F WTC outside classroom; WTC in a digital environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4772] "Subscales: Societal; Personal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4773] "Subscales: Learning; Creativity; Motivation; Leadership; Artistic; Musical; Dramatics; Communication-precision; Communication-expressiveness; Planning; Mathematics; Reading; Technology; Sciences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4774] "Subscales: Attitude towards assisted dying; Attitude towards conscientious objection; Attitude towards secularism; Attitude towards abortion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4775] "Subscales: Mathematics (Mat); Motion (Mot); Music (Mus); Information technology (It); Visuals (Vis); Hungarian language and literature (Lit); Foreign language (For)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4776] "Subscales: Saccadic Goal Identification Assessment; Saccadic Goal Execution Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4777] "Subscales: ISP Compliance Behavior (COMP); Emotions; Security-Related Stress (SRS); Neutralization (NEUT); Positive and Negative Emotional States; Outside Activity (OA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4778] "Factors: Decisive involvement; Caring involvement; Appealing involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4779] "Factors: Present feelings of comfortableness; Future working environment; Fear of negative influence on future patient relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4780] "Factors: Physical factors; Patients’ perception of nursing care; Emotional factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4781] "Subscales: External advice seeking; Internal advice seeking; Decision process comprehensiveness; Perceived environmental dynamism; Empowerment climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4782] "Subscales: Social Phobia (SP); Generalized Anxiety (GA); Separation Anxiety (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4783] "Factors: Somatic/panic; Social phobia; Generalized anxiety; Separation anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4784] "Subscales: Panic/somatic; Generalized anxiety; Separation anxiety; Social phobia; School phobia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4785] "Subscales: Panic disorder; Generalized anxiety disorder; Separation anxiety disorder; Social anxiety; School anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4786] "Factors: Unpleasant affect; Pleasant affect; Cues and associated thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4787] "Subscales: DSED: Indiscriminate behaviors with strangers; RAD1: Failure to seek/accept comfort; RAD2: Withdrawal/hypervigilance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4788] "Subscales: Positive; Religious; Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4789] "Subscales: Severity of ideation; Intensity of ideation; Suicidal behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4790] "Subscales: Realistic (R); Investigative (I); Artistic (A); Social (S); Enterprising (E); Conventional (C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4791] "Subscales: Dominant (PA); Calculating (BC); Cold (DE); Self-Critical (FG); Submissive (HI); Ingratiating (JK); Warm (LM); Gregarious (NO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4792] "Subscales: Autonomy Granting; Autonomy Support; Dependability; Emotional Nurturance and Unconditional Love; Intrinsic Worth; Playfulness and Emotional Openness; Confidence and Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4793] "Reasons: Behavioral norms; Child safety; Social relations and respect; Providing guidance; Moral development. Strategies: Nonphysical punishment; Setting and maintaining rules; Reasoning/negotiation; Consistency; Physical punishment and verbal control; Show parents' serious/stern attitude; Correction; Psychological control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4794] "Subscales: Emotional cultural competence (ECC); Cognitive cultural competence (CCC); Behavioral cultural competence (BCC)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4795] "Dimensions: University Logo (L); Typeface (LT); Design (LD); Colour (LC); University Name (LN); University Website (W); Navigation design (WND); Visual identify/design (WV); Information design (WI); Usability (WU); Customization (WCU); Security (WS); Availability (WA); Customer co-creation Behaviour; Customer participation behaviour Information seeking (CPO); Information sharing (CPIS); Responsible behavior (CPRB); Personal interaction (CPPI); Customer citizenship behavior Feedback (CCF); Advocacy (CCA); Tolerance (CCT); Helping (CCH); University reputation (R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4796] "Subscales: ADHD Index; DSM-IV Inattentive Symptoms; DSM-IV Hyperactive-Impulsive Symptoms; Inattention/Disorganization; Hyperactivity/Fidgetiness; Problems with Self-Concept; Frustration/Anger Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4797] "Subscales: Interpersonal communication; Community affairs; Home and hobbies; Personal care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4798] "Subscales: Disorganized; Avoidance; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4799] "Factors: For the Parent, Self-Report (13-18), and Self-Report (8-12): Physical Symptoms; Cognitive Symptoms; Emotional Symptoms; Fatigue Symptoms. For the Self-Report (5-7): Physical Symptoms; Cognitive Symptoms; Emotional Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4800] "Subscales: Nightmare threat; Nightmare harm; Blame/credit; Coping potential."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4801] "Factors: Racial centrality; Public regard; Private regard; Nationalist; Minority; Assimilation; Humanist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4802] "Factors: Antisocial (Overt); Adjustment; Psychiatric History; Antisocial (Covert); Academic Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4803] "Factors: Coding Confidence; Coding Interest; Utility; Social Influence; Perceptions of Coders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4804] "Subscales: Attitude (AT); Effort expectancy (EE); Facilitating conditions (FC); Intention to use (IU); Performance expectancy (PE); Social influence (SI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4805] "Dimensions: Pre-requisites of Appreciation (Appreciation; Respect and Understanding: Benefits; Well-being; Competence); Realisation of IC (Patient-centredness; Information sharing; Goals; Actions; Participation; Evaluation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4806] "Subscales: Customer orientation toward sellers; Customer orientation toward buyers; Seller-side demand uncertainty; Buyer-side demand uncertainty; Performance; Reputation; Training; Information technology skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4807] "Factors: Rational; Behavioral; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4808] "First-Order Factors: Aloof/Unaccountable (A/U); Entitled/Arrogant (E/A); Formal/Authoritarian (F/A). Second-Order Factor: CORS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4809] "Factors: Internality; Chance; Doctors; Other people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4810] "Factors: Internal; Chance; Powerful others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4811] "Factors: Psychological vulnerability/susceptibility; Decision-making abilities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4812] "AT Factors: Operational support; Physical Support; Psychological Support; Social Support; Cultural Match; Reduced External Help; Affordability; Travel Help; Compatibility; Effectiveness; Retention"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4813] "Subscales: Purpose and Connection; Help seeking; Beliefs about civilians; Resentment and regret; Regimentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4814] "Factors: Dietary restraint; Shape/weight overvaluation; Body dissatisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4815] "Subscales: Attractiveness; Trustworthiness; Expertise; Intimacy; Interactivity; Product Design; Product Development; Commercialization; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4816] "Factors: Socioemotional support; Instrumental support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4817] "Subscales: Navigation anxiety; Mental rotation anxiety; Visualization anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4818] "Subscales: Disorders of Initiating Sleep; Disorders of Maintaining Sleep; Sleep Hyperhidrosis; Sleep Breathing Disorders; Parasomnias; Non-Restorative Sleep and Excessive Somnolence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4819] "Factors: Managing Health Problems; Seeking Help and Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4820] "Subscales: Prospective memory ability; Retrospective memory ability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4821] "Factors: Harmfulness of Stress; Usefulness of Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4822] "Factors: Enhancement motive; Coping motive; Conformity motive; Social motive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4823] "Factors: Advanced counseling; Basic counseling; Referral to services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4824] "Factors: Operational skills; Information Navigation skills; Social skills; Creative skills; Mobile skills"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4825] "Subscales: Intention; Attitude; Subjective norm (SN); Perceived behavioral control (PBC); Perceived susceptibility; Perceived severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4826] "Subscales: Autonomy support (AS); Autonomy thwarting (AT); Competence support (CS); Competence thwarting (CT); Relatedness support (RS); Relatedness thwarting (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4827] "Subscales: Autonomy support (AS); Autonomy thwarting (AT); Competence support (CS); Competence thwarting (CT); Relatedness support (RS); Relatedness thwarting (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4828] "Subscales: Dysphoria & Disheartenment; Loss of meaning and purpose; Sense of failure; Hopelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4829] "Subscales: Optimistic Bias-Self; Optimistic Bias-Others; Risk Perception-Perceived susceptibility; Risk Perception-Perceived severity; Risk response-Anxiety; Risk response-Fear; Behavioral outcomes; Information seeking intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4830] "Subscales: Autonomy support (AS); Autonomy thwarting (AT); Competence support (CS); Competence thwarting (CT); Relatedness support (RS); Relatedness thwarting (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4831] "Subscales: Worries about contracting the virus; Academic frustrations; Current mental health symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4832] "Subscales: Physiological; Psychological."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4833] "Subscales: Potential to augment; Psychoeducational value; Perceived risks; Perceived relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4834] "Subscales: Professional Dispositions; Tasks; Goals; Bonds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4835] "Domains: Disclosure Content (Details; Emotions; Cognitions; Beliefs; Social Experiences)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4836] "Subscales: Fail Fast Strategy; Output Control; Product Complexity; Micromanagement; Profit Orientation; Sales Force Resources; Salesperson Extra-Role Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4837] "Subscales: Business Ties Formative Scale; Planning Ties; Planning Flexibility; Demand Uncertainty; Customer Capital; Strategic Performance; Financial Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4838] "Subscales: Other-focus; Self-focus; Game-playing; Self-protection; Social standing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4839] "Subscales: Challenge; Self-esteem; Mate quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4840] "Subscales: Knowledge-Based TSIs; Hotel Opportunism (OPPT); Hotel Satisfaction (SAT); Representative Monitoring Ease (MON); LENGTH; SIZE; OWNS; BRAND."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4841] "Subscales: Customer orientation; Relationship management orientation; Solution orientation; Project management orientation; Process competence and efficiency; Innovation orientation; Technology orientation; Sustainability orientation; Quality orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4842] "Dimensions: Breadth of channel; Transparency of channel; Appropriateness of channel; Information consistency; Transaction data integration; System consistency; Image consistency; Privacy; Security; Service recovery accessibility; Cross-buying intention; Perceived value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4843] "Subscales: Public value; Organizational citizenship behavior; Work engagement; Employee common good orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4844] "Factors: Interest-contents fit; Needs-supplies fit; Demands-abilities fit; Values-culture fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4845] "Factors: Psychological and Emotional Needs; Health Care and Information Needs; Work and Social Needs; Communication and Family Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4846] "Subscales: Cognitive legitimacy; Moral legitimacy; Pragmatic legitimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4847] "Factors: Media richness; Facebook intensity; Social capital; Sense of virtual community (SOVC); Trust; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4848] "Scales: Capability (Psychological); Physical opportunity; Social opportunity; Reflective motivation; Automatic motivation (COM-B); Hygienic Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4849] "Factors: Negative work-home interactions; Coworkers issues; Workload; Responsibilities burden; Financial issues; Emotional demands; Issues with clients; Feeling of being in danger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4850] "Factor: Specific Domain; Metacognitive; Innovation; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4851] "Factors: Work Load (Carga de trabalho); Dealing with death and the process of death (Lidar com a morte e o processo da morte); Suffering of patients (Sofrimento dos pacientes); Stress with co-workers (Estresse com colegas de trabalho); Dealing with patient and family requirements (Lidar com requisitos dos pacientes e familiares)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4852] "Component: General Pseudoscientific Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4853] "Factors: Intrinsic (INTR); Integrated (INTEG); Identified (IDENT); Introjected (INTRO); Extrinsic (EXTR); Amotivation (AMOT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4854] "Subscales: Behavior/conduct; Conduct disorder; Aggressive; Nonaggressive; Oppositionalism; Attention deficit; Inattention; Impulsivity; Overactivity; Alcohol/drug abuse; Affective/neurotic; Anxiety; Separation anxiety; Overanxious; Fears/phobias; Simple fears; Social phobias; Obsessive-compulsive; Schizoid/psychotic; Affective disorders; Mania; Depression; Affective; Cognitive; Vegetative; Suicidal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4855] "Factors: Women's health protection; Chemical exposure prevention; Alternative consumption; Community-oriented behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4856] "Factors: Criminal History; Antisocial Attitudes and Associates; Positive Psychotic Symptomology; Social Functioning; Social Networking; Substance Abuse; Negative Affect; Traumatic History."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4857] "Factors: Impulse Purchase (IP); Information Content (IC); Streamer Admiration (SA); Psychological Distance (PD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4858] "Factors: Driver's Emotional Attention (DEA); Driver's Emotional Clarity (DEC); Driver's Emotional Regulation (DER)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4859] "Subscales: Perceived Price (PP); Perceived Quality (PQ); Website Security (WS); Customer Experience (CE); Comment and Rating (CR); Corporate Image and Reputation (CI); Customer Trust (CT); Customer Satisfaction (ST);"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4860] "Scales: Staffing; Organization; Service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4861] "Subscales: Staffing: Organization; Services."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4862] "Subscales: Forgetting; False Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4863] "Subscales: Forgetting; False Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4864] "Subscales: Tier 1; Tier 2; Tier 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4865] "Subscales: Praise; Indulgence; Status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4866] "Factors: Severity/Irreparability; Blame/unfairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4867] "Subscales: Awareness; Non-judgment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4868] "Factors: Reading perception; Reading memory; Reading thinking; Reading emotion; Reading will; Reading attention; Other influencing factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4869] "Subscales: Object Valuation; Personal identification; Perceived Capacity; Knowledge; Level of Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4870] "Factors: Interpersonal Fit at Work; Thriving at Work; Feeling of Competency at Work; Perceived Recognition at Work; Desire for Involvement at Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4871] "Subscales: Critical events (Ce); Daily hassles (Dh); Social exposure (Se); Family concerns (Fc); Academic stressors (As); Social pressure (Sp)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4872] "Factors: Interpersonal relationships; Work functioning; Cognitive functioning; Autonomy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4873] "Factors: Values/Commitment; Acceptance/Defusion; Goals/Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4874] "Subscales: Values commitment; Defused acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4875] "Factors: Violaciones (Violations); Errores (Errors); Lapsus (Blunders); Conductas Agresivas (Aggressive Behaviors); Conductas Positivas (Positive Behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4876] "Factors: Invalidation; Incomprehensibility; Fault; Simplistic view; Devaluation; Lost of control; Insensitivity; Rationality; Duration; Low consensus; Non-acceptance; Rumination; Low expression; Blaming others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4877] "Subscales: Validation; Comprehensibility; Guilt; Simplistic View of Emotion; Higher Values; Control; Numbness; Rational; Duration; Consensus; Acceptance of Feelings; Rumination; Expression; Blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4878] "Subscales: Subscales: Invalidation; Incomprehensibility; Guilt; Simplistic View of Emotion; Devalued; Loss of Control; Numbness; Overly Rational; Duration; Low Consensus; Non-Acceptance of Feelings; Rumination; Low Expression; Blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4879] "Subscales: Negative evaluation; Emotion regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4880] "Factors: Amotivation (AMOT); External Regulation (EXT); Introjected Regulation (INTROJ); Identified Regulation (IDENT); Integrated Regulation (INTEGR); Intrinsic Motivation (IM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4881] "Subscales: Antibiotic resistance; Normative use; Adverse reaction; Basic knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4882] "Subscales: Knowledge of the Child's Characteristics; Perceived Social Supports; Positive Perception of Parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4883] "Subscales: Self-centered emotional evaluation; Evaluation of emotions centered on others; Regulation of self-centered emotion; Regulation of emotions centered on others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4884] "Dimensions: Longing for and differences with the country of Origin; Adaptation in school, family and relationship with peers; Experiences of discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4885] "Factors: (1) Aversion toward doze; (2) Hypersensitivity toward others' reactions about my doze; (3) Sense of defeat caused by doze."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4886] "Factors: Decline in basic taste; Discomfort; Phantogeusia; General taste alterations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4887] "Factors: Work/School problems; Home/Family problems; Close/Intimate relationships; Social problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4888] "Predicted Variables: Intentions to follow government recommendations; physical distancing behavior; fear control responses. EPPM Variables: Perceived threat; Perceived efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4889] "Subscales: Activities; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4890] "Subscales: Computer Proficiency; Computer Integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4891] "Factors: Cognitive (Language learning proficiency; Language learning beliefs); Affective/evaluative (Extrinsic motivation; Intrinsic motivation; Teacher influence); Behavioral/personality (Inhibition; Exhibition; Tolerance of ambiguity; Learning effort)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4892] "Factors: Perceived Age-Related Losses (AARC-Losses); Perceived Age-Related Gains (AARC-Gains)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4893] "Subscales: Role and Responsibility Pressures; Work Relationship Challenges; Challenges to Personal Spiritual Practices; Leading through Change & Controversy; Pastoral Care Challenges; Perceived Expectations Strain; Family versus Ministry Conflict; Time and Workload Strain; Financial Challenges; Preaching Challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4894] "Subscales: Creative Initiative; Personal Spiritual Practices; Leadership/Management Practices; Pastoral Care Practices; Fostering Faith Development; Vocational Calling; Social Responsibilities; Ongoing Learning; Building Work Relationships; Time and Diversity of Tasks; Community Worship & Liturgy; Preaching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4895] "Subscales: Xenophilic love; Xenophilic grace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4896] "Factors: Goal Oriented Team Synergy (Factor S); Organizational Background for Teamwork (Factor O); Competence (Factor C, only COPAN-3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4897] "Factors: Perceived age-related gains; Perceived age-related losses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4898] "Subscales: Value; Aspiration; Deprivation; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4899] "Scales: Tendency to Reread; Tendency to Read."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4900] "Factors: Quality of Information; Interaction and Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4901] "Subscales: Quality of information; Interaction and support; Efficiency of handover."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4902] "Factors: Parent-child communication about consumption; Restriction of consumption; Children's consumption autonomy; Children's influence; Television viewing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4903] "Subscales: Technology acceptance–Perceived ease of use; Technology acceptance–Perceived usefulness; Technology acceptance–Attitude; Technology acceptance–Behavioral intention; Technology acceptance–Self-efficacy; Technology acceptance–Subjective norm; Information system success–Information quality; Information system success–Service quality; Information system success–System quality; Information system success–User satisfaction; Information system success–System use; Information system success–Net benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4904] "Subscales: Attitude; Behavioral intention; Perceived ease of use; Perceived usefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4905] "Subscales: Internalizing Problems (INT); Externalizing Problems (EXT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4906] "Factors: Compulsive behavior; Functional impairment; Withdrawal, Tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4907] "Factors: Single-factor measure (habitual positive thinking)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4908] "Factors: Vulnerable child (VC); Angry child (AC); Enraged child (EC); Impulsive child (IC); Undisciplined child (UC); Happy child (HC); Punitive mode (PM); Demanding mode (DM); Healthy adult (HA); Compliant surrender (CS); Detached protector (Det.P); Detached self-soother (Det.SS); Self-aggrandizer (SA); Bully and attack (BA); Helpless surrenderer (HS); Eating disorder overcontroller (EDO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4909] "Subscales: Relative advantage; Compatibility; Complexity; Observability; Trialability; Future use intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4910] "Subscales: Relative advantage; Compatibility; Complexity; Future use intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4911] "Factors: Personal Impairment; Cognitive Impairment; Social Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4912] "Factors: Personal Impairment; Social Impairment; Cognitive Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4913] "Factors: Daily Activities; Manage Disease in General."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4914] "Factors: Identification with the heritage culture; Identification with the mainstream culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4915] "Factors: Identification with the heritage culture; Identification with the mainstream culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4916] "Subscales: Constructive Learning (ConL); Quick and Natural Learning (NatL); Constructive Teaching (ConT); SRL Achieve (SRLAc); SRL Inconsistent (SRLNeg); Locus of Learning Control (LoLC); Transmissive Teaching (TranT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4917] "Factors: Anhedonia; Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4918] "Subscales: Positive Affect; Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4919] "Factors: Cognitive yearning; Emotional yearning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4920] "Factors: Visual Field or Scotoma; Visual Acuity. Subscales: Self-Care; Food Preparation; Home Management; Communication; Financial Management; Leisure; Shopping; Mobility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4921] "Factors: Salience; Mood modification; Tolerance; Withdrawal; Conflict; Relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4922] "Subscales: To know = Kn; To do = Do; To sense = Se; To care = Ca; To want = Wa."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4923] "Subscales: Disgust (EAQ-D); Interest (EAQ-I); Feeding animals (EAQ-F)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4924] "Subscales: Assistance with physical care; Implementation of prescribed treatment plan; Surveillance, coordination of care and discharge planning; Documentation, planning and evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4925] "Subscales: Proactive Parenting; Positive Reinforcement; Warmth; Supportiveness; Hostility; Physical Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4926] "Domains: Identity Salience; Congruence with Group; Interpretation of Difficulty/School Dynamics; College Savings Account."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4927] "Factors: Importance of Modeling; Clinical Application; Self- Exploration/Awareness; Education and Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4928] "Subscales: Leadership; Infrastructure and equipment; Continuing professional development (CPD); Teaching and learning – support; Teaching and learning – pedagogy; Assessment practices; Student digital competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4929] "Factors/Subscales: Perspective shifting (PS); Emotional reawakening (ER)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4930] "Factors: Anger; Boredom; Enjoyment; Pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4931] "Factors: Mother and Infant Physical–Psychological Readiness; Expected Support; Knowledge of Future Events and Care; Infant Personal Care Knowledge; Pain; Treatment Interventions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4932] "Factors: Positive Relations; Belonging; Inclusion; Participation; Mental health awareness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4933] "Factors: Affective basis of commitment; Normative basis of commitment; Continuance basis of commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4934] "Factors: Virtual popularity; Entertainment; Socializing; Information seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4935] "Factors: Active Engagement (AE); Independent Critical Thinking (ICT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4936] "Subscales: Active Engagement (AE); Independent Critical Thinking (ICT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4937] "Factors: Negative Affect; Social Pressure; Physical and Other Concerns about Using Drugs; Cravings and Urges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4938] "Scales: Self-Efficacy; Temptation. Dimensions: Negative Affect; Social/Positive; Physical and Other Concerns; Cravings and Urges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4939] "Factors: Resident attitudes towards being in long-term care; Quality of care and caregivers; Resident engagement and peer relationships; Keeping in touch with people and places; Quality of the physical environment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4940] "Sections: SARS-CoV-2 related attitudes; SARS-CoV-2 related stressors; SARS-CoV-2 related work outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4941] "Factors: Emotional Distress; Worry Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4942] "Factors: Perceived organizational support for strengths use (POSSU); Perceived organizational support for deficit correction (POSDC); Strengths use behavior (SUB); Deficit correction behavior (DCB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4943] "Factors: POS for strengths use; Deficit correction behaviour; Strengths use behaviour; POS for deficit correction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4944] "Factors: Selecting and eating; Access and preparation; Food labels and measurements; Picky eating; Eating snacks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4945] "Factors: Intrapersonal Conflict; Intragroup Conflict; Intergroup Conflict; Causes of Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4946] "Sections: Relevance; Judgment. Factors: Family; Group; Reciprocity; Heroism; Deference; Fairness; Property."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4947] "Subscales: Considering the individuality of athletes; Framing learning situations; Imparting coaching knowledge; Respecting preferences for effort, accountability, and feedback; Creating personalized programming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4948] "Subscales: Perceived Ease of Use; Perceived Usefulness; and Attitudes toward the EHR."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4949] "Subscales: Separation anxiety disorder; Social phobia; Generalized anxiety disorder; Panic disorder; Obsessive-compulsive disorder; Major depressive disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4950] "Factor: Low Emotion Awareness/Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4951] "Subscales: Empathy; Self-regulation & Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4952] "Subscales: Participates in healthy interactions; Expresses a range of emotions; Regulates social-emotional responses with caregiver support; Regulates social-emotional responses; Attends to and engages with others; Shares attention and engages with others; Explores hands and feet and surroundings; Demonstrates independence; Displays a positive self-image; Regulates activity level; Regulates attention and activity level; Cooperates with daily routines and requests; Shows a range of adaptive skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4953] "Subscales: Victimization; Perpetration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4954] "Subscales: Instructor's limited competence in clinical environments; Inappropriate clinical environment; Inadequate knowledge and skills; Inefficient education in clinical planning; Instructor's inappropriate conduct; Concerns about the characteristics of nursing career."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4955] "Subscales: Negative reactions; Tangible aid; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4956] "Factors: Interpersonal Action; Communal Action; Political Change Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4957] "Subscales: Abuse of Power; Justice; Lack of Autonomy; Meaning; Humanization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4958] "Subscales: Heterosexism; Homophobia; Homonegativity; Neutrality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4959] "Subscales: Coactivity; Support; Directing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4960] "Factors: Entertainment; Revival; Strong Sensation; Diversion; Discharge; Mental Work; Solace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4961] "Factors: Market turbulence; Technological turbulence; Competitive intensity; Perceived importance of innovation; Innovativeness; Business performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4962] "Factors: Perceived usefulness; Perceived ease of use; Perceived behavioral control; Subjective norms; Trust; Resistance bias; Eye health consciousness; Perceived risks; Intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4963] "Subscales: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4964] "Factors: Availability stress; approval anxiety; fear of missing out; connection overload; online vigilance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4965] "Subscales: Sexual satisfaction; Physical intimacy; Emotional closeness during sex; Sexual compatibility; Distress related to problematic sexual function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4966] "Subscales: Idea generation; Market‐based partnerships; Front‐end performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4967] "Factors: Doctrinal Buddhism; Nat cult; Weikza Line. Dimensions: Centrality of Religiosity Public; Centrality of Religiosity Private; Centrality of Religiosity Religious Experience; Centrality of Religiosity Ideology; Centrality of Religiosity Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4968] "Factors: General symptoms; Birth-related symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4969] "Factors: Friendly behaviors; Unfriendly behaviors. Subscales: Friendly behaviors; Avoidant behaviors; Relationally hostile behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4970] "Primary Factors: POM Target (POMS-T); POM Agent (POMS-A). Secondary Factor: POM Emotional Impact (POMS-E). POMS-T and POMS-A Subscales: Verbal Policing Epithets; Physical Policing Challenges; Masculinity Deviations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4971] "Factors: Personality & Behavior Teasing; Family & Environment Teasing; School-Related Teasing; Teasing About My Body."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4972] "Factors: Openness to Seeking Treatment; Value and Need in Seeking Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4973] "Subscales: Game Interface; Game Task. Sub-constructs: Prior experience; Positive emotion; Occurrence frequency; Level of processing; Retention rate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4974] "Factors: Perceptions of fit (Person-organization; Person-job)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4975] "Subscales: 1- Response to the child (sensitivity to the child’s interests, responsivity, reciprocity, inventiveness); 2- Control (directiveness, pace); 3- Affect (enjoyment, warmth, acceptance); 4- Support to learning (stimulation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4976] "Factors: Cooperative morality; Sexual morality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4977] "Subscales: Parenting interventions are worthwhile, and I'd deliver them; Parenting interventions are worthwhile, but I'm not confident to deliver them; Parenting interventions might be worthwhile, but it's not my responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4978] "Factors: Mental Fatigue; Physical Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4979] "Factors: View on life and future; Self-confidence and inner strength."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4980] "Factors: Inner connectedness and positive readiness and expectancy; Loneliness and fear for the future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4981] "Subscales: Recruitment; Organising; Work well-being; Work atmosphere; Communication; Clinical nursing; Development of the unit; Personnel development; Development of nursing; Financial management; Planning and evaluation of activities; Collaboration; Development with collaborating partners."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4982] "Subscales: Immediate Memory; Delayed Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4983] "Subscales: Organizational learning culture (OLC); Self-efficacy (SE); Motivation to transfer (MTT); Learning transfer climate (LTC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4984] "Factors: Social distance; Procedural justice; Legitimacy; Violent subculture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4985] "Subscales: Affective Tasks in an Environment Context (AFF_ENV); Behavioral Tasks in an Environment Context (BEH_ENV); Cognitive Tasks in an Environment Context (COG_ENV); Affective Tasks in an Interpersonal Scale (AFF_INT); Behavioral Tasks in an Interpersonal Scale (BEH_INT); Cognitive Tasks in an Interpersonal Context (COG_INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4986] "Subscales: Interpersonal emotion regulation; Intrapersonal emotion regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4987] "Factors: Family Pillar; Virtuous and Chaste; Subordinate to Others; Self‐Silencing to Maintain Harmony; Spiritual Pillar."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4988] "Subscales: Physical; Psychological; Existential; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4989] "Domains: Single-Item Scale (SIS); Physical symptoms; Feelings and thoughts; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4990] "Subscales: Agent; Target."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4991] "Factors: Child maltreatment; Household dysfunction; Community dysfunction; Peer dysfunction/Property victimization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4992] "Factors: Thwarted belongingness; Perceived burdensomeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4993] "Factors: Thwarted Belongingness (TB); Perceived Burdensomeness (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4994] "Factors: Disinhibition; Type of Food; Guilt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4995] "Factors: Performance Evaluation; Need for Approval; Autonomous Attitude; Tentativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4996] "Factors: Negative Self Concept; Confusion/Escape Fantasies; Personal Maladjustment and Desire for Change; Loneliness/Isolation; Giving up and Helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4997] "Subscales: Neighborhood Disruption; Neighborhood Gentrification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4998] "Factors: Communication, agreements, and coordination; Positive encouragement and tailoring; and Supporting independent performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4999] "Subscales: Pro-environmental attitude; Descriptive Social Norm; Injunctive social norm; Pro-environmental image; Environmental awareness; Perceived benefits; Feeling of guilt; Moral norm; Pro-environmental consumption intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5000] "Factors: Dealing with discrimination; Diversity Beliefs; Ethical Dealing with Minorities; Affective Diversity Aspects; Bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5001] "Subscales: Geometry content knowledge (GCK); Knowledge of students' van Hiele levels (KSVL); Knowledge of geometry instructional activities (KGIA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5002] "Subscales: Smell-Taste; Auditory; Vision; Touch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5003] "Factors: Value; Teaching; Participation; Evidence-Based Pedagogy; Role; Clinical Comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5004] "Factors: Positive Orientation; Shared Knowledge; Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5005] "Subscales: Expectancy for success; Task value; Perceived cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5006] "Subscales: Personal-Social Beliefs; Interpersonal Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5007] "Factors: Caregiver Stigma (CS) (Aesthetics; Help and willingness to help; Fear and Shame; Emotions; Distancing); Lay Person Stigma (LS) (Aesthetics and Dangerousness; Distancing; Fear and Shame; Compassion; Cognitive Functioning; Behavioral; Willingness to help; Physical Functioning); Structural Stigma (SS) (Adequacy of Community Services; Adequacy of Health Professionals; Negative Behavior of Health Professionals)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5008] "Subscales: Effort; Evaluation; Tempo; Response; Result."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5009] "Subscales: Risk perception; Aggressive behavior; Non-driving activities; Driving tasks; Traffic rules; Driving responsibility; Road condition; Carelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5010] "Subscales: Mental/emotional state; Behavioral regulation: anthropometrics; Behavioral regulation: diet quality; Health identity; Perception; Behavioral regulation: habits; Knowledge; Reinforcement; Resources; Functional status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5011] "Factors: Organizational support; Social Norms; HSE attitudes; Self-efficacy; Organization Citizenship Behavior for Environment and Organization Citizenship Behavior for Health and Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5012] "Subscales: Economic rewards (ER); Degree of authority (DA); Freedom of Action (FA); Education required (EDU); Academic ability required (AA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5013] "Factors: PCQ-F: Climate of safety; Climate of Hospitality; Climate of Everydayness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5014] "Factors: Effective role play; Fatigue and surrender; Trust; Uncertainty; Caring ignorance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5015] "Subscales: Teaching practices-autonomy support; Teaching practices-structure; Student sense of competence; Student task value; Student behavioral engagement-misbehavior; Student behavioral engagement-participation; Student behavioral engagement-compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5016] "Factors: Complex movement patterns; Basic movement patterns; Oral-motor coordination; Fundamental oral-motor skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5017] "Factors: Sense of Permanent and Disturbing Change since the Trauma (CPTCI-PC); Sense of Being a Fragile Person in a Scary World (CPTCI-SW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5018] "Factors: Decent work; Workplace democracy; Sustainable career climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5019] "Factors: Supporting Presence; Practical Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5020] "Subscales: Rupture and Collaboration Processes (IVAT-P); Direct Rupture Markers (MD); Indirect Disruption Markers (MI); Collaborative Processes (PC); Therapist's Positive and Negative Contributions (IVAT-T); Resolution Interventions (IR); Negative Interventions (IN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5021] "Subscales: Self-Kindness (SK); Self-Judgement (SJ); Common Humanity (CH); Isolation (IS); Mindfulness (MI); Overidentification (OI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5022] "Factors: Persuasive bullshitting; Evasive bullshitting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5023] "Factors: Spontaneity; Creative Cognitive Style; Creative Engagement; Tolerance; Fantasy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5024] "Scales: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5025] "Subscales: Adequate coping strategies; Aggressiveness externalization; Pessimism; Paralyzation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5026] "Factors: Two Factor Model (Locomotor; Ball Skills); One-Factor Model (Gross Motor Development)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5027] "Factors: Interpersonal relationship; Infrastructure; Perceptions of work with vulnerable populations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5028] "Factors: Family Cancer and Health Communication; Perception of Cancer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5029] "Factors: Intention; Attitude; Global Social Norms; Injunctive Norms; Descriptive Norms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5030] "Factors: Frequent change and events; Uncertain work demands"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5031] "Factors: Relational and Personal Concern; Contentment; Communication; Compatibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5032] "Subscales: Motor impairment; Intellectual impairment; Emotional impairment; Behavioral symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5033] "Factors: Affective; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5034] "Factors: Well-being; Self-control; Emotionality; Sociability; Global trait EI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5035] "Subscales: Controllability of Events; Comprehensibility and Predictability of People; Trustworthiness and Goodness of People; Safety and Vulnerability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5036] "Factors: Discrepancy; Standards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5037] "Subscales: Professional Nursing Organizations; Health Care Delivery Systems: Organizations that Deliver Health Care Services; Governance Levels: City/Town, State, National, Global; Valuing Health and Policy; Influence Skills. Factors: Contributions to policy positions or practice guidelines; Engagement in health policy within the health care delivery system (one's organization of employment); Sharing information and discussing health policy; Familiarity with health problems, policy processes, and policy decision-makers; Professional expectations for nursing regarding health policy; Voter participation; Mindset and involvement in collaborative efforts to improve health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5038] "Subscales: Communal affordance; Embeddedness; Environment pleasantness; Time outdoors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5039] "Subscales: Occupational expertise; Labor market knowledge; Soft skills; Career involvement; Career confidence; Career clarity; Social support from school; Social support from family; Social support from peers; Networking; Career exploration; Self-exploration. Factors: Knowledge and skills; Motivation; Environment; Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5040] "Subscales: Concern; Control; Curiosity; Confidence; Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5041] "Factors: Concern; Control; Curiosity; Confidence; Cooperation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5042] "Subscales: Primary or basic needs/necessities; Neighborhood changes and moving; Identity and place attachment; Community value; Services and resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5043] "Subscales: Attitudes (ATT); Subjective norm (SN); Perceived behavioral control (PBC); Trust; Experience satisfaction (ES); Behavioral intention to use AV (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5044] "Subscales: Stigma; Normalisierung/Glorifizierung (Normalization/Glorification); Isolation/Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5045] "Subscales: Crystallizing; Exploring; Deciding; Preparing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5046] "Subscales: Implicit Positive Affect; Implicit Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5047] "Factors: Critical situations (If-part) with focus on seizing opportunities; Critical situations (If-part) with focus on overcoming obstacles; Goal-directed behaviors (Then-part) with focus on seizing opportunities; Goal-directed behaviors (Then-part) with focus on overcoming obstacles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5048] "Subscales: Hostile Classism (HC); Protective Paternalism (PP); Complementary Class Differentiation (CCD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5049] "Subscales: All-or-nothing behaviour; Limiting behaviour; Practical support seeking; Emotional support seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5050] "Factors: Reference: Persecution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5051] "Subscales: Fatigue; Limiting behavior; Social support; Overexertion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5052] "Factors: Ideas of Reference (IR); Ideas of Persecution (IP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5053] "Subscales: Certainty about mental states (RFQc); Uncertainty about mental states (RFQu)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5054] "Factors: Connection; Risk; Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5055] "Subscales: Demands; Control; Managerial Support; Peer Support; Relationships; Role; Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5056] "Factors: Attitude; Subjective norm friends; Subjective norm parents; Prototype favorability; Prototype similarity; Willingness; Intention; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5057] "Subscales: Autonomy satisfaction; Autonomy frustration; Competence satisfaction; Competence frustration; Relatedness satisfaction; Relatedness frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5058] "Subscales: Comfort talking with partner; Choice of partners, marriage, and children; Parental support; Sexual safety; Self-love; Sense of future; Sexual pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5059] "Subscales: Neurotic; Anti-social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5060] "Factors: Self-Kindness (SK); Common Humanity (CH); Mindfulness (M); Self-Judgment (SJ); Isolation (IS); Overidentification (OI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5061] "Subscales: Experiential Attitudes; Instrumental Attitudes; Cognitive Engagement; Behavioral Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5062] "Factors: Self-concept; Life satisfaction; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5063] "Subscales: Low cognitive demand; High cognitive demand."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5064] "Subscales: Guilt And Anxiety Induction; Love Manipulation; Invalidating Feelings And Perspectives; Constraining Verbal Expressions And Behavioral Intention; Erratic Emotional Behavior; Personal Attacks and Shaming; Intrusive Control; Use of Threats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5065] "Factors: Circumscribed interest; Social communication. Subdomains: Social relatedness; Circumscribed interests; Sensory-motor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5066] "Factors: Obsessions; Compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5067] "Subscales: Exploration; Resolution; Affirmation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5068] "Factors: Healthcare team/physician; Family/friends; Media/policy; Organizations; Personal; Neighborhood/community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5069] "Subscales: Personal; Family and Friends; Health Care Team; Neighborhood; Community Organizations; Worksite; Health Information-Media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5070] "Subscales: Intrinsic motivation; Integrated regulation; Identified regulation; Introjected regulation; External regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5071] "Subscales: Joyous Exploration; Deprivation Sensitivity; Stress Tolerance; Thrill Seeking; Overt Social Curiosity; Covert Social Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5072] "Subscales: Structures, functions and activities influencing the meal; Environmental factors influencing the meal; Swallowing safety during the meal; Swallowing efficacy during the meal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5073] "Factors: value reorientation; esteem restoration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5074] "Domains: Substance use; School; Work; Family; Social relationships; Justice; Mental health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5075] "Factors: Recognition of positive emotions; Expression of positive emotions; Emotional control; Suppression; Cognitive change; Physical reactions; Recognition of negative emotions; Difficulty to regulate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5076] "Factors: Consistency (Global Grit-consistency, GG-C; Political Grit-consistency, PG-C); Perseverance (Global Grit-perseverance, GG-P; Political Grit-perseverance, PG-P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5077] "Factors: Coaching; Non-Involvement; Dysfunction; Dismissing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5078] "Factors: Customer Delight Service Control System; Expected Competencies for Customer Delight; Shared Values for Customer Delight; Employee Empowerment for Customer Delight; Expected Norms for Customer Delight; Superior Service Environment; Customer Delight Competencies Development; Customer Delight Service Scripting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5079] "Subscales: Good; Safe; Enticing; Alive; About Me; Abundant; Acceptable; Beautiful; Changing; Cooperative; Funny; Harmless; Hierarchical; Improvable; Intentional; Interconnected; Interesting; Just; Meaningful; Needs Me; Pleasurable; Progressing; Regenerative; Stable; Understandable; Worth Exploring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5080] "Factors: Good (Primary Primal); Safe; Enticing; Alive (Original Secondary Primals); Empowering; Communal; Fluid (Secondary Primals)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5081] "Domains: Other's approval; Appearance; Competition; Family support; Virtue; God's love; Work competence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5082] "Subscales: Combustible; Edible; Vaporized."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5083] "Subscales: Social network; Income; Public service; Physical; Technology; Political orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5084] "Subscales: Risk-Factor Awareness (RFA); External Support Awareness (ESA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5085] "Subscales: Basic Knowledge; Attitude; Intended Behavior. Factors (Basic Knowledge): Financial Knowledge and Abilities; Financial Behavior and Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5086] "Subscales: Transcendent guiding force (TGF); Sense and meaning and value-driven behavior (SMVB); Identification and person-environment-fit (IP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5087] "Subscales: Cultural Presentation Appropriateness; Language Appropriateness; Appealing to the White Ideal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5088] "Measurement Scales: Internal Networking (IN); Knowledge Transfer (KT); Knowledge Absorptive Capacity (KA); Innovation Ambidexterity (AMBIDEX)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5089] "Scales: Effectual Control Orientation; Effectual Affordable Loss Orientation; Effectual Contingency Orientation; Effectual Means Orientation; Effectual Partnership Orientation; Market-based Innovation Barriers; Innovation Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5090] "Factors: Participative Actions; Leadership Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5091] "Subscales: Trust; Expertise; Predictability; Human-likeness; Ease of use; Risk; Reputation; Propensity to trust technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5092] "Factors: Habit and Negative Affect Reduction; Pleasure and Stimulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5093] "Factors: Closeness and Empathy; Teaching and Respect; Teacher Gender; Character, Demand and Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5094] "Domains: Transition Planning; Transition Assessment; Types of Skills They Provide for Students During School; Currently Implemented Transition Practices; Partnerships and Collaboration Between Schools and Business."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5095] "Categories: Responsiveness; Insensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5096] "Subscales: Daily Uplifts Scale: Frequency; Daily Uplifts Scale: Intensity; Daily Hassles Scale: Frequency; Daily Hassles Scale: Intensity. Factors: Conflicts and unpleasant interactions; Time management and task-related hassles; Threats to self-efficacy and performance; Failures interruptions and annoyances; Organizational and leader-related hassles; Achievement recognition and task-related uplifts; Pleasant interactions helpfulness and compliments; Humor and communication; Time management and customer-related uplifts; Organizational uplifts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5097] "Factors: Self-suppression (6 items); Self-expansion (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5098] "Factors: Overt Social/Relational threat (O-SR); Covert Social/Relational threat (C-SR); Overt General threat (O-G); Covert General threat – Active (C-GA); Covert General threat – Passive (C-GP)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5099] "Factors: Knowledge of where to seek information (SI); Knowledge of self-treatment (ST); Ability to recognize disorders (AR); Attitudes that promote recognition or appropriate help-seeking behavior (A); Knowledge of risk factors and causes (RF); Knowledge of professional help available (PH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5100] "Factors: Proactive personality; Perceived strengths use; Perceived organizational support; Routine disruption; Physical exposure; Job performance (Bonus); Withdrawal behaviors; Resilience; Thriving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5101] "Factors: Impact and Satisfaction; Severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5102] "Factors: Direct Experiences (Performance Accomplishment (PA); Verbal Persuasion (VP); Physical Arousal (PhA)); Vicarious Learning (VL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5103] "Factors: Injustice (IN); Hostility (H); Behavioural responses (BR); Malicious feelings (MF); Malicious actions tendencies (MAT)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5104] "Subtests/Tasks: Questionnaire about the awareness of difficulties; Conversational discourse; Metaphor interpretation- Explanations; Unconstrained verbal fluency; Emotional prosody; Narrative discourse; Indirect speech acts interpretation; Reading; Writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5105] "Tests: Lexical Selection; Semantic Categorization; Grammatical Structures I; Grammatical Judgment; Expository Comprehension; Narrative Comprehension (Collective tests); Word Reading; Pseudoword Reading; Grammatical Structures II; Punctuation Marks; Reading comprehension I; Reading Comprehension II; Oral comprehension (Individual version tests)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5106] "Factors: Catastrophize; Negative Secondary; Attuned; Distracted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5107] "Factors: Coparenting agreement; Coparenting closeness; Exposure to conflict; Coparenting support; Coparenting undermining; Endorsement of partner’s parenting; Division of labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5108] "Factors: Anxiety; Avoidance; Security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5109] "Factors: Warmth; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5110] "Factors: Parental blame; Child characteristics and causes of the disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5111] "Subscales: Preference for Intuition in Eating Decision-making; Preference for Deliberation in Eating Decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5112] "Subscales: Civic values (CV); Self-efficacy (SE); Involvement (IV); Civic engagement (CE); Electoral participation (EP); Political militancy (PM); Extra-parliamentary activism (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5113] "Subscales: Challenging the Binary; Social Construction; Theoretical Awareness; Gender Fluidity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5114] "Subscales: Current life satisfaction; Life satisfaction in the recent month; Marital liberalization in the recent month; Religiosity in the previous year."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5115] "Domains: Control of Physical Activity; Control of Screen Media; Explicit Modeling; Implicit Modeling; Perceived Barriers and Facilitators. Scales: Weather-related restriction of outdoor play; Restriction of active play indoors; Use of physical activity as a bribe; Perceived influence on physical activity; Limits on and supervision of screen media; Monitoring and use of TV as a threat or bribe; Monitoring and use of video games as a threat or bribe; Use of computers as a threat or bribe; Negotiation of screen media rules; Perceived influence on screen media use; Co-participation in physical activity; Encouragement for outside play; Facilitation of sports and lessons; Encouragement and education to reduce screen media; Co-viewing TV; Co-use of video games and computer; Context-driven permissiveness for screen media; Value of parent physical activity; Value of child sports; Value of child physical activity; Health benefits of child physical activity; Value of TV for parent; Value of child screen media; Entertainment and education benefits of child screen media; Child preference for inactivity; Lack of support for physical activity from adults; Lack of self-efficacy for limiting screen media; Permissiveness for TV viewing by other adults; Permissiveness for screen media by other adults; Enforcement of screen media rules by other adults; Weather-related barriers to physical activity; Family consistency in beliefs about screen media."
##  [5116] "Factors: Cognitive (C); Social-Communication (SC); Emotional (E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5117] "Factors: Health status; Mental resilience; Social adaptation; Disaster response capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5118] "Factors: Person-Organization supplementary fit; Person-Organization complementary fit; Person-Job supplementary fit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5119] "Factors: Attitude toward luxury brands; Product fit; Brand fit; Acceptance of High-tech products; Affect; Cognition; Recommendation to buy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5120] "Subscales: Skills; Knowledge; Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5121] "Dimensions: Basic skills; Thinking Skills; Personal Qualities; Dangerousness (Employer Concerns and Rehabilitation/recidivism)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5122] "Factors: eMpowerment (M); Success (S); Interest (I); Caring (C); Usefulness (U)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5123] "Factors: Encouragement; Control; Discouragement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5124] "Factors: Prosocial Organizational Behavior; Role-Prescribed Prosocial Behavior; Prosocial Individual Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5125] "Subscales: Prosocial Organizational Behaviors; Role-Prescribed Prosocial Behaviors; Prosocial Individual Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5126] "Factors (Subscales): Perceived Causes of Homelessness (Structural; Intrinsic; Health Causes); Role of Federal Government; Effectiveness of Policies (Financial; Mental Health-Related Policies); Compassion for Homeless Individuals; Legal Restrictions and Rights; Personal Attitudes and Beliefs (Trustworthiness/Dangerousness; Effect of Homelessness on Communities; Capabilities of Homeless People)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5127] "Subscales: Corporal Dissatisfaction; Concern about Weight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5128] "Factors: Positive Reinforcement; Negative Reinforcement; Appetite/Weight Control; Negative Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5129] "Domains: Hand skills without interacting with objects; Arm–hand use; Adaptive skilled hand use; Bimanual use; General quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5130] "Subscales: Genuine Relationships; Sense of Purpose; Engaged Citizenship; Mental Health; Physical Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5131] "Subscales: Leisure; School; Daily living."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5132] "Subscales: Leisure and play domain; School/education domain; Activity of daily living domain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5133] "Factors: Cognitive experiences (CE); Behavioral experiences (BE); Emotional experiences (EE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5134] "Subscales: Experiential Engagement; Behavioral Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5135] "Factors: Interdependence (INT); Newly Created Professional Activities (PROF); Professional Flexibility (FLEX); Collective Ownership (COL); Reflection on Process (REF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5136] "Factors: Anticholinergic side effects; Cholinergic side effects; Antihistaminergic side effects; Orthostatic hypotension side effects; Hyperprolactinemic/sexual side effects; Galactorrhea; Extrapyramidal system/movement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5137] "Factors: Knowledge; Skills; Identity; Capability beliefs; Optimism; Consequence beliefs; Reinforcement; Goals; Memory; Safety climate (Organizational level); Safety climate (Group level); Social Influences; Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5138] "Factors: Conflict Frequency; Positive Response to Conflict; Negative Response to Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5139] "Factors: Emotional Fear Reactions; Symptomatic Expressions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5140] "Subscales: Technique; Energy imagery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5141] "Factors: Mastery-oriented behaviors (MO); Helpless-oriented behaviors (HO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5142] "Subscales: External adaptation; Internal integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5143] "Subscales: Design; Follow-Up; Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5144] "Constructs: academic workload; separation from school; fears of contagion; perceived stress; health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5145] "Subscales: Regulating Attention, Impulsivity, and Activity; Cooperating; Expressing Emotion; Responding to Change; Eating; Sleeping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5146] "Subscales: Cooperating; Expressing emotion; Responding to change; Eating; Sleeping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5147] "Subscales: Attention-deficit hyperactivity disorder (ADHD); Oppositional-defiant disorder (ODD); Conduct disorder (CD); Separation anxiety disorder (SAD); Generalized anxiety disorder (GAD); Major depressive disorder (MDD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5148] "Externalizing scales: Regulating Attention, Impulsivity, and Activity; Cooperating; Regulating Conduct. Internalizing scales: Separating from Parents; Managing Anxiety; Managing Social Anxiety; Regulating Compulsive Behavior; Managing Mood. Regulating scales: Eating; Sleeping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5149] "Factors: Salience-Tolerance; Mood Modification; Withdrawal; Conflict; Relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5150] "Subscales: Motor control; Executive functions; Perception; Memory; Language; Learning; Social skills; Emotional/behavioral problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5151] "Factors: Emotional exhaustion (EX); Cynicism (CY); Reduced professional efficacy (REF)/Reduced experience of effectiveness (RW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5152] "General domains: motor skills; executive functioning; perception; memory; language; learning; social skills; emotional/behavioral problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5153] "Domains: Physical functioning; Daily life; Psychological well-being; Social life and relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5154] "Domains: Physical; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5155] "Subscales: Space Management; Material Management; Imitation; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5156] "Dimensions: Space management; Material management; Pretence/symbolism; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5157] "Factors: Parent's attitude toward music involvement with child; Parental concert attendance; Parent/child ownership and use of record/tape player, records, tapes; Parent plays a musical instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5158] "Subscales: Language Curiosity as a Feeling of Interest (LCFI); Language Curiosity as a Feeling of Deprivation (LCFD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5159] "Subscales: Nature of Suffering (NOSi) Experiences; Extent of Suffering (EOSi) Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5160] "Factors: PIPS-Causes; PIPS-Mother; PIPS-Baby."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5161] "Subscales: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5162] "Factors: Self focus; Relationship focus; Offender focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5163] "Subscales: Anhedonia; Distress; Asociality; Avolition; Blunted affect; Alogia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5164] "Factors: Consumer Engagement (CE); Customer Trust (CT); Customer Satisfaction (CS); Customer Commitment (COM); Customer Loyalty (CL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5165] "Subscales: Disgust Propensity; Disgust Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5166] "Subscales: Psychological; Echo-coprophenomena; Social; Cognitive; Physical and activities of daily living; Obsessive-compulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5167] "Subscales: Structural Barriers; Pregnancy-Decision Making; Lack of Autonomy; Others' Reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5168] "Factors: Social identification; Group efficacy; Perceived instability; Legitimacy of collective action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5169] "Factors: My home is my castle; My home is my prison; My Home is my social hub."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5170] "Subscales: Cognitive; Psychomotor; Affective-attitudinal. Factors: Knowledge about educational resources and techniques; Knowledge about health education; Knowledge about health; Educational skills; Personal/social skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5171] "Subscales: Appreciative encounters and interactions with older people; Medication for older people; Nutrition for older people; Safe living environment for older people; Supporting the functioning of older people; End-of-life care; Developing one's competencies; Supporting an older person's mental well-being; Supporting an older person's sexuality; Guiding self-care among older people; Responding to challenging situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5172] "Subscales: Pouching system change; Emotional management; Role management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5173] "Variables: Korean Dance of BTS; Purchase of Korean cultural products; Tourism behavior intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5174] "Factors: Access and Use; Design and Structure; Content Adequacy; Value as an Aid to Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5175] "Factors: Emotional distress; Auditory perceptual difficulties; Intrusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5176] "Subscales: Memory belief efficacy; Self-care efficacy; Future planning efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5177] "Factors: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5178] "Factors: Credibility; Expectancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5179] "Constructs: Self-Efficacy; Locus of Control; Outcome Expectations; Social Environment; Health Knowledge/Knowledge of Recommendations; Health Practices/Plans."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5180] "Domains: Affective; Cognitive. Factors: Comfort; Activity; Legibility; Enclosure; Complexity; Crime Potential; Wildlife; Lighting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5181] "Subscales: Changes in the appraisal of caregiving resources; Changes in the health belief as a caregiver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5182] "Factors: Challenges; Dissatisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5183] "Subscales: Subjective deployment exposures; Objective deployment exposures; Human death and degradation deployment exposures; Environmental deployment exposures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5184] "Subscales: Sense of Self; Emotional Regulation; Flexibility; Social Behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5185] "Subscales: Stimulating sense of self; Supporting emotion regulation; Stimulating flexibility; Supporting social behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5186] "Factors: Brand attribute associations; Emotional brand relationship (E-CBR); Perceived fit; Intention to purchase the brand extension"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5187] "Factors: Involvement in luxury products; Nostalgia; Convenience orientation; Health involvement; Involvement in traditional food (TFP); Perceived uniqueness ordinary clipfish (Model 1); Perceived uniqueness ordinary clipfish (Model 2); Intention to consume ordinary clipfish (Model 1); Intention to consume ordinary clipfish (Model 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5188] "Component Factors: Childhood/Adolescent Touch Experience (CATE); Comfort with Interpersonal Touch (CoT); Fondness for Interpersonal Touch (FoT); Adult Touch Experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5189] "Subscales: Cultural Awareness (NCCS-CA-P); Cultural Knowledge (NCCS-CK-P); Cultural Sensitivity (NCCS-CSe-P); Cultural Skills (NCCS-CS-P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5190] "Factors: Autonomy; Psychosocial/Societal functioning; Cognitive functioning; Financial issues; Interpersonal relationships/Leisure time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5191] "Factors: Feeding on demand (DEM); Using food to calm (FC); Persuasive feeding (PERS); Parent-led feeding (PARENT); Family Meal Environment (FM); Using (non-) food rewards (REW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5192] "Factors: Feeding on Demand (DEM); Using Food to Calm (FC); Persuasive Feeding (PERS); Parent-Led Feeding (PARENT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5193] "Factors: Compensatory health beliefs - Eating; Compensatory health beliefs - Physical activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5194] "Subscales: Teamwork; Goal setting; Social skills; Problem solving and decision making; Emotional skills; Leadership; Time management; Interpersonal communication skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5195] "Subscales: Student-teacher relationship; Behavioral disengagement; Psychological engagement; Academic and cognitive engagement; Self-efficacy; Economic stress; Positive peer influence; Negative peer influence; Goal setting and problem solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5196] "Components (Factors): Psychological Empowerment (Self-Worth; Self-Perceived Capabilities); Goal-Oriented Pathways (Self-Motivation; Utilization of Skills and Resources; Goal Orientation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5197] "Subscales: Autonomy and self-determination; Financial security and responsibility; Family and self well-being; Basic assets for community well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5198] "Subscales: Presence of educational best practices – Active learning; Collaboration; Learning diversity; High expectation; Importance of best practices embedded in simulation – Active learning; Collaboration; Learning diversity; High expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5199] "Factors: Positive Activation (PA); Negative Activation (NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5200] "Subscales: Customer civility; Interpersonal trust; Property experience; Platform governance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5201] "Scales (Subscales): Fear; Avoidance. Being observed by others; Public speaking; Social interaction; Potential contagion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5202] "Subscales: Explicit negative messages about aging; Positive role models; Negative role models; Intergenerational accommodation; Intergenerational nonaccommodation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5203] "Factors: Self-categorization/Teasing; Collusion in Communication; Expressing Optimism; Planning for Future Care Needs; Resisting Anti-Aging Media Messages; Using Technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5204] "Factors: Other Drivers; Self; Vehicle/Environment; Fate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5205] "Factors: Deleterious Self-Directed Humor; Benign Self-Directed Humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5206] "Subscales: Approval-Demandingness (Ap-DEM); Perfectionism-Demandingness (Pe-DEM); Comfort-Demandingness (Co-DEM); Approval-Awfulizing (Ap-AWF); Perfectionism-Awfulizing (Pe-AWF); Comfort-Awfulizing (Co-AWF); Approval-Frustration Intolerance (Ap-FI); Perfectionism-Frustration Intolerance (Pe-FI); Comfort-Frustration Intolerance (Co-FI); Approval-Condemnation (Ap-CON); Perfectionism-Condemnation (Pe-CON); Comfort-Condemnation (Co-CON)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5207] "Subscales: Personal welfare; Happiness and satisfaction with life; Satisfaction with life; Satisfaction with public goods and services."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5208] "Factors: Unidimensional (single-factor: power fluctuation)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5209] "Implicit Theory of Mind tests: white lie detection; intention inferencing; facial affect interpretation; vocal affect interpretation; false-belief detection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5210] "Subscales: Collaborative norms; Consumer-peer interaction; Relationship commitment; Privacy control; Privacy risk; Brand value Co-creation; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5211] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5212] "Factors: First Contact; Longitudinality; Coordination; Comprehensiveness (Services Available); Comprehensiveness (Services Provided); Community Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5213] "Factors: Anxious attachment at work coefficient; Avoidant attachment at work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5214] "Domains (Factors): Self (Self-control; Emotion control; Frustration tolerance; Self-Direction; Stable self-image; Responsibility; Reliability; Aggressive control; Purposefulness; Self-esteem); Interpersonal (Long-term relationships; Cooperation; Intimacy; A sense of recognition; Enjoyment; Respect)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5215] "Factors: Negative affect (Neg_af); Alienation (Odv); Antagonism (Ant); Disinhibition (Dez); Psychoticism (Psi)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5216] "Factors: Victimization by direct assault; Control/follow-up victimization; Perpetration of direct assault; Perpetration of control/monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5217] "Factors: Treatment Adherence; Health Maintenance Efficacy; Self-Stigma; Coping with Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5218] "Subscales: Welcoming and meeting culture; Various and respectful communication; Educational cooperation; Parent participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5219] "Domains: Salience; Tolerance; Mood modification; Withdrawal; Relapse; Conflict; Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5220] "Factors: Appearance orientation; Appearance evaluation; Overweight preoccupation; Self-classified weight; Body areas satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5221] "Subscales: Expectations; Values; Leadership; Education and training; Rewards; Policy; Quality improvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5222] "Dimensions: Social Phobia (SP); Generalized Anxiety (GA); Separation Anxiety (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5223] "Subscales: White Beauty Conformity (WBC); Bicultural Shift (BS); Asian Language/Culture Avoidance (AL/CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5224] "Composite Domains (Domains): Physical (Symptoms; Function; Social Activities); Social (Feelings; Cognition; Social Skills)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5225] "Factors: Anti-Muslim Prejudice; Anti-Islam Sentiment; Conspiracy Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5226] "Factors: Work-related thought; Work-to-home conversation; Task spillover; Superior-subordinate communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5227] "Subscales: Attitudes; Subjective norm; Perceived behavioural control; Sedation orders and goals; Sedation practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5228] "Factors: Cognitive-emotional impairment; Functional impairment; Behavioral engagement; Experience of climate change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5229] "Subscales (Subtasks): Recognition memory task; Match-to-sample sorting task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5230] "Factors: Organization climate; Teamwork climate; Stress recognition; Ambulatory process of care; Perceptions of workload."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5231] "Subscales: Awareness of consequences (AC); Ascription of responsibility (AR); Community attachment (CA); Anticipated negative emotion (ANE); Personal norm (PN); Self-managing behavior (SMB); Other-managing behavior (OMB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5232] "Factors: RMC Knowledge: Giving emotional support; RMC Knowledge: Providing safe care; RMC Knowledge: Preventing mistreatment; RMC Practice: Giving emotional support; RMC Practice: Providing safe care; RMC Practice: Preventing mistreatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5233] "Factors: Ego Resilience (ER); Optimal Regulation (OR); Openness to Life Experience (OL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5234] "Factors: PPE Self; PPE Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5235] "Factors: Eating Alone Attitudes (Enjoyable eating alone; Eating alone as a daily routine; Self-conscious eating alone; Eating alone for freedom; Choose what I want; Efficient eating alone; Lonely eating alone; Solo dining)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5236] "Factors: Teaching and learning environment; Approaches to learning; Generic skills; Self-efficacy beliefs; Study workload stress; Teaching for understanding & encouraging learning; Peer support; Alignment & constructive feedback; Deep and organized approach; Surface approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5237] "Factors: Primary Appraisal; Secondary Appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5238] "Factors: Empowerment of children's sociality; Optimization of children's environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5239] "Scales: Non-verbal cognition; Language. Subscales: Vocabulary; Sentence complexity; Language skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5240] "General Factor: L2 Class Anxiety (LCA). Subscales: Reading Activity Anxiety (RAA); Writing Activity Anxiety (WAA); Listening Activity Anxiety (LAA); Speaking Activity Anxiety (SAA); Classroom Testing Anxiety (CTA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5241] "Subscales: Teacher support for learning (TSL); Study behaviors (SB); Cognitive engagement (COG); Student conduct (SC); Emotional engagement (EMO); Peer support for learning (PSL); Family support for learning (FSL)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5242] "Factors: Relational Bond (N items = 4); Individualized Partnership (N items = 4); Professional Empowerment (N items = 3); Therapeutic Communication (N items = 4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5243] "Subscales: Position; Reputation; Information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5244] "Factors: Seasonal leader’s qualities; Core influence; Operational influence; Terminal influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5245] "Factors: Financial capital (FC); Social capital (SC); Intellectual capital (IC); Human capital (HC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5246] "Factors: Relief from physical and psychological suffering; Playing and learning; Making wonderful memories and fulfilling wishes; Living a normal life; Good relationships with medical staff; Spending time with the family; Minimum medical treatment; A peaceful death in the presence of the family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5247] "Factors (Subdomains): Rehabilitation and mental health counseling (Rehabilitation and mental health counseling theories and techniques; Crisis and trauma counseling; Employment counseling); Employer engagement and job placement (Job placement and job development; Occupational analysis; Demand-side employment); Case management (Health care and disability management; Caseload management; Community resources); Medical and psychosocial aspects of chronic illness and disability; Research methodology and evidence-based practice; Group and family counseling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5248] "Factors: Workplace Coping; Self-Disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5249] "Factors: Emotional responses and difficulties (with subscales for Knowledge and Memory Attention & Decision Processes); Social opportunity (with subscales for Environmental and Social Influences); Motivation and capability (with subscales for Role & Identity, Beliefs Capability, Beliefs Consequences, and Emotion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5250] "Subscales: Human communication (HC); Carer perspectives (CP); Empathy (E); Challenging and changing (CC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5251] "Subscales: Academic/Social Stress; Separation/Discipline Stress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5252] "Factors: Self–efficacy in socially challenging situations; Self–efficacy in personally challenging situations; Self–efficacy in separation situations; Self–efficacy in situations of disengagement from school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5253] "Factors: Positive (Self-kindness; Common humanity; Mindfulness); Negative (Self-judgment; Isolation; Over-identification)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5254] "Factors: Purchasing proactivity; Operational supply risk reduction; Long-term supply continuity; Innovation value; Relationship value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5255] "Factors: Planning; Spontaneity; Creativity; Innovation orientation; Market performance; Financial performance; Formalization; Centralization; Competitive intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5256] "Subscales: Performance; Innovation; Competitive environment; Potential absorptive capacity-Acquisition; Potential absorptive capacity-Assimilation; Realized absorptive capacity-Transformation; Realized absorptive capacity-Exploitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5257] "Subscales: Asset specificity; Behavioral uncertainty; Market orientation capabilities; Differences in channel members' capabilities; Environmental uncertainty; Product standardization in the industry; Degree of dual channels; Degree of indirect channels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5258] "Subscales: Prevention focus; Promotion focus; Trustworthiness; Tacit knowledge transfer; Knowledge leakage. Factors: Security; Oughts; Losses; Gains; Achievement; Ideals; Integrity; Benevolence; Competence; Knowledge leakage risk; Intentional knowledge leakage; Unintentional knowledge leakage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5259] "Constructs: Performance orientation; Learning orientation; Job performance; Extraversion; Agreeableness; Conscientiousness; Openness to experience; Emotional stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5260] "Factors: Relationship commitment; Relationship exploration; Behavioral uncertainty; Environmental uncertainty; Network density; Network centrality; Opportunism; Distributor dependence; Supplier dependence; Relational norms of solidarity; Competitive intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5261] "Factors: Perceived parental non-affirmation; Perceived parental acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5262] "Subscales: Support and affirmation; Guilt and loss; Gender concealment; Pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5263] "Factors: Affective support; Material support; Informational support; Emotional support; Embracing support; Attentional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5264] "Constructs: Purchase intention; Warm glow; Trust propensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5265] "Subscales: Convenience of searching online; Lower search cost online; Accessing online reviews; After-sales services (offline); Immediate possession; Touch and feel; Socialization; Sales-staff assistance; Perceived ease of searching online; Perceived usefulness of webrooming; Anticipated regret (choice); Online risk perceptions; E-distrust; Subjective norms; Product involvement; Perceived behavioral control; Attitude toward webrooming behavior; Intention toward webrooming behavior; Webrooming behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5266] "Subscales: Meeting Personal Needs; Carer Wellbeing; Carer-patient Relationship; Confidence in the Future; Feeling Supported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5267] "Subscales: Supervisor social support; Interpersonal identification; Perceived organizational prestige; Sales performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5268] "Factors: Living with Fatigue; Cognition Fatigue; Emotional Fatigue; Physical Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5269] "Factors: Instillation of Hope; Secure Emotional Expression; Awareness of Emotional Impact; Social Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5270] "Subscales: Practices derived from the evidence base (PDEB); Alternative techniques (AT)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5271] "Subscales: Relational deprivation (RD); Emotional pain (EP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5272] "Subscales: Functional self-efficacy (FnSE); Self-regulatory self-efficacy (Self-RegSE); Exercise self-efficacy (ExSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5273] "Subscales: Reduced sense of accomplishment; Emotional and physical exhaustion; Devaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5274] "Factors: Need of affection; Fear of dropping out; Fear of loneliness; Attention to others; Worry about the disapproval of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5275] "Dimensions: Relation to the Institution (RI); Relationships with Colleagues/Peers (RC); Relationships with Preceptors/Superiors (RP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5276] "Subscales: Prospective IU; Inhibitory IU."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5277] "Subscales: Supportive HR practices; Implementation of tailor-made arrangements; Support of employees' commitment; Support of employees' career development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5278] "Subscales: Forethought capability (FOR); Self-regulation capability (SREG); Self-reflection capability (SREF); Vicarious capability (VIC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5279] "Subscales: Colors; Numbers; Letters; Objects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5280] "Factors: Emotion Expressivity and Asociality (Factor 1); Avolition (Factor 2). Subscales: Asociality; Blunted affect; Alogia; Anhedonia; Avolition; Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5281] "Factors: Basic handling; Advanced handling; Adjustment; Aided listening."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5282] "Subscales: Athlete Wellbeing; Self-Regulation; Performance Satisfaction; Sport-Related Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5283] "Factors: Personal value; Social value; Economic value; Environmental value; Leadership value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5284] "Subscales: Knowledge-Based Risk Identification; Knowledge-Based Risk Examination; Knowledge-Based Risk Sharing; Knowledge-Based Risk Repository; Risk Analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5285] "Factors: Supervisory Activities; Supervisee Reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5286] "Factors: Informal learning activities using personal sources; Informal learning activities using environmental sources; Formal learning activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5287] "Subscales: Negative Affect (NA); Interpersonal Relationships (IR); Detachment (De); Antagonism (An); Psychoticism (Ps); Disinhibition (Di)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5288] "Subscales: Perceived susceptibility; Perceived severity; Perceived benefits; Perceived barriers; Cues to action; General health motivation; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5289] "Factors: Personal Confidence and Hope; Willingness to Ask for Help; Goal and Success Orientation; Reliance on Others; Not Dominated by Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5290] "Subscales: Analogic reasoning; Cube design; Nonsymbolic memory; Numerical series; Spatial memory; Symbolic memory. Factors: Fluid reasoning; Visual processing; Memory; Quantitative; Reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5291] "Factors: Identity; Traditions; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5292] "Subdimensions: Appearance; Weight; Attribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5293] "Subscales: Food; Physical touch; Outdoors; Positive feedback; Hobbies; Social interactions; Goals"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5294] "Subscales: Seeking resources; Seeking challenges; Reducing demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5295] "Dimensions: Recovery strengths in active addiction; Recovery barriers in active addiction; Recovery strengths in recovery; Recovery barriers in recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5296] "Subscales: Competence; Adaptability; Self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5297] "Factors: Information about the disease; Information about the treatments/medical investigation; Relationships with healthcare teams; Healthcare access; Reception conditions in care centers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5298] "Factors: Rumination; Substance Use; External Threat Monitoring; Thought Suppression; Behavioral Avoidance; Internal Threat Monitoring; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5299] "Subscales: Cognitive avoidance; Behavioral avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5300] "Factors: Credibility before; Ethical attitude before; Credibility after; Ethical attitude After; Moral Equity; Relativism; Utilitarianism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5301] "Subscales: Cultural; Institutional; Personal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5302] "Constructs: Corporate brand Identification; Corporate brand Attractiveness; Corporate brand similarity; Corporate brand distinctiveness; Tuition fees; Metropolitan city brand; Higher education country brand; Campus locale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5303] "Subscales: Critical reflection (CR); Unlearning; Idea generation (IG); Idea realization (IR); Job autonomy; Job intensity (JI); Problem-solving demands (PSD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5304] "Factors: Positive metacognitions about emotional and cognitive regulation (PM ECR); Negative metacognitions about uncontrollability and cognitive harm of smartphone excessive use (NM UH); Positive metacognitions about the social advantages of smartphone use (PM SR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5305] "Factors: Destination beliefs; Tourist push motivation; Event satisfaction; Post-visit attitudes toward the event; Product receptivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5306] "Factors: Perceived Impulsiveness (PI); Cognitive Post Purchase Dissonance (CPPD); Affective Post Purchase Dissonance (APPD); Repurchase Intention (RI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5307] "Factors: Accepting and Non-attached Attitude towards one’s own eating experience (ANA); Awareness of Senses while Eating (ASE); Eating in Response to awareness of Fullness (ERF); Awareness of eating Triggers and Motives (ATM); Connectedness (CON); Non-Reactive Stance (NRS); Focused Attention on Eating (FAE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5308] "Subscales: Motor function-Gross motor; Motor function-Distal; Motor function-Axial/proximal; Communication; Family impact; Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5309] "Domains: Aetiology; Classification and observation; Risk assessment; Prevention; Treatment; Specific patient groups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5310] "Factors: Driving intentions; Subjective norms; Attitudes; Risk perceptions; Perceived behavioral control; Neuroticism; Extraversion; Agreeableness; Conscientiousness; Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5311] "Scales: Reported behavior; Intended behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5312] "Higher-order latent factor: Adaptability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5313] "Subscales: Impersonal orientation; Control orientation; Autonomy orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5314] "Subscales: Friendly environment level; Personalized care; Residents' self-realization and relationships; Organizational support; Residents' habits and preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5315] "Subscales: Violence as a form of diversion; Violence to improve the self-esteem; Violence to manage socials problems and relationships; Violence perceived as legitimate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5316] "Factors: Violence as a form of fun; Violence as a way to enhance self-esteem; Violence as a way to relate and solve problems; Violence perceived as legitimate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5317] "Constructs: Awareness of consequences was measured with three items adapted from Stefan et al. (2013); Awareness of responsibility was measured with three items adapted from Wang et al. (2018). Subjective norm was measured with 3 items adapted from Ajzen (1991) and Clayton & Griffith (2003); Moral Norm was measured with 3 items adapted from Bamberg et al. (2007) and Klockner (2013). Attitudes toward over-ordering were measured with 3 items adapted from Ajzen (1991); Perceived behavior control was measured with 2 items adjusted from Ajzen (1991); Intention to over-order was measured with 3 items adapted from Ajzen (1991); Ordering habit was measured with 3 items adapted from Verplanken and Orbell (2003); Over-ordering behavior was measured with 1 item adapted from Stefan et al. (2013); Interventions from the Waiter was measured with 1 item developed for the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5318] "Factors: Disgust Propensity (DP); Disgust Sensitivity (DS); Self and Ruminative Disgust (SFR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5319] "Factors: Pragmatic; Critical; Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5320] "Subscales: Vigilance; Discrimination/harassment; Gender expression; Parenting; Victimization; Family of origin; Vicarious trauma; Isolation; HIV/AIDS stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5321] "Factors: Anxiety; Avoidance; Felt security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5322] "Subscales: Knowledge (Healthy and unhealthy relationships; Dating violence warning signs; Nature of abuse; Dynamics and cycle of abuse; Roles in facilitating or preventing abuse; Contribution of gender roles to abuse; Cycle of violence; Media contributions to violence); Attitude (Acceptance of dating violence; Respect for oneself and others; Self-efficacy for dealing with abuse; Acceptance of gender role stereotypes; Media contribution to violence); Behavioral skills (Ability to identify good and poor communication skills; Confidence in using appropriate conflict resolution; Likelihood of using ineffective aggressive behaviors; Likelihood of using ineffective passive behaviors; Likelihood of using effective behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5323] "Factors: Picky eating; Appetite; Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5324] "Domains: Attachment; Behavioral; Cognitive; Dominance; Emotional; Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5325] "Subscales: Mistrust; Constraints on closeness; Fear of rejection; Self-reliance; Desire for company; Fear of separation; Anger; Total Insecure Attachment. Factors: Fearful; Angry-Dismissive; Enmesh; Secure; Withdrawn."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5326] "Factors: Practice; Know (General; Specific); Patient Motivation; Patient: Expected Outcomes; Setting: Resources; Clinician: Tactics; Clinician: Skills; Clinician: Ethics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5327] "Subscales: Connectedness; Shared Activities; Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5328] "Subscales: Poor functioning at work and at home; Lack of entertainment; Poor social relationships; Cognitive impairments; Addictions; Depressive symptoms; Manic symptoms; Anxiety symptoms; Eating disorder; Sleep problems; Sexual problems; Somatic symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5329] "Factors: Preocupación (Concern); R. Fisiológicas (R. Physiological); Situaciones (Situations); R. Evitación (R. Avoidance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5330] "Factors: Physiological anxiety; Avoidance behavior; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5331] "Subscales: No Reference Group (NRG); Reference Group Dependent (RGD); Reference Group Nondependent- Similarity (RGND-S); Reference Group Nondependent-Diversity (RGND-D)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5332] "Factors: Lifestyle restrictions; Negative emotion; Positive coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5333] "Factors: Professional confidence in depression care; Therapeutic optimism about depression; Generalist perspective about depression occurrence, recognition, and management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5334] "Factors: Peer Belonging (pBEL); Institutional Belonging (iBEL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5335] "Factors: Negative-tendency; Negative-efficacy; Positive-tendency; Positive-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5336] "Subscales: Noticing; Not‐Distracting; Not‐Worrying; Attention Regulation; Emotional Awareness; Self‐Regulation; Body‐Listening; Trusting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5337] "Factors: Noticing; Non-Distracting; Not Worrying; Attention Regulation; Emotional Awareness; Self-Regulation; Body Listening; Trusting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5338] "Factors: Bulletproof Beliefs; Skeptic Beliefs; Jungle Beliefs; Worth it Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5339] "Factors: School/education/work; Family and close relationships; Relationships with others; Your future; Your feelings; Your appearance; Your leisure time (leisure activities); Your values and beliefs; Thinking and concentration; Your general physical health; Your mental health; Your physical health in relation to the eating disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5340] "Factors: Proactive overt aggression; Proactive relational aggression; Reactive overt aggression; Reactive relational aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5341] "Subscales: Suppression; Clarity; Repair; Difficulties in defensive repression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5342] "Subscales: Affective organizational commitment (AOC); Continuance organizational commitment COC); Normative organizational commitment (NOC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5343] "Factors: Community embeddedness culture; Focus on respect culture; Conformity culture; Future orientation culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5344] "Factors: Maintain close ties; Maintain or strengthen weaker ties; Diversion; Positive affect; Negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5345] "Factors: Effectiveness; Efficiency; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5346] "Factors: Perceived Emotional Stress; Perceived Social Stress; Perceived Financial Stress; Perceived Lack of Resources; Perceived Lack of Social Support; Perceived Physical Stress; Perceived Lack of Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5347] "Factors: Autotelic Experience; Clear Goals; Challenge–Skill Balance; Concentration on Task; Paradox of Control; Unambiguous Feedback; Action–Awareness Merging; Transformation of Time; Loss of Self-Consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5348] "Factors: Allyship; Cause Connection; Social Change Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5349] "Factors: Government Openness to Protests; Perceived Repression (by police)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5350] "Factors: Avoidance Impact of Event Scale; Personal Relationship Disruption; Risk Perception; Cleanup & Restoration; Adverse Compensation Impacts; Event Experience; Community Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5351] "Factors: Washing (WS); Obsessing (OS); Hoarding (HD); Odering (OR); Checking (CK); Neutralizing (NT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5352] "Factors: Peer ridicule and avoidance; Paternal blame; Fear of abandonment; Maternal blame; Hope of reunification; Self-blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5353] "Subscales: Fear of Ridicule/Rejection of equals (MR); Paternal Guilt (CP); Maternal Guilt (CM); Self-blame(AC); Hopes of Reconciliation (ER); Fear of Abandonment (MA); Conflicts of Loyalty (CL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5354] "Scales (Subscales): Discontinuity (Disc) (Discontinuity in properties and goals; Discontinuity in relationships and roles; Discontinuity in emotional self-reflection); Incoherence (Inkoh) (Incoherence in the self-image; Overidentification/suggestion; Incoherence in cognitive self-reflection)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5355] "Factors: Vigor; Dedication; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5356] "Subscales: Pain Intensity; Functional Interference; Emotional Response; Side Effects; Perceptions of Care; Usual Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5357] "Factors: Mild damage; Severe damage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5358] "Female version factor-structure (CBCBS-F): Face body areas; Body areas related to attractiveness; Body areas related to thinness/excess weight; Concerns with thinness; Desire/behavior related to muscularity. Male version factor-structure (CBCBS-M): Concerns with specific aspects of the body; Concerns and behaviors related to the body."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5359] "Factors: Body Acceptance; Body Avoidance; Concerns with Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5360] "Factors: Body Acceptance; Pregnancy Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5361] "Factors: Meditative training; Respectful discipline; Positive training environment; Streaming; Training behavior; Heavy training; Goal orientation; Physical challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5362] "Factors: Autonomy-supportive behaviors; Competence-supportive behaviors; Relatedness-supportive behaviors; Autonomy-thwarting behavior; Competence-thwarting behaviors; Relatedness-thwarting behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5363] "Factors: Information transfer; Family information; Management of follow-up; Management of lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5364] "Factors: Information transfer to patients; Relationships with providers during hospitalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5365] "Factors: Crowding; Actual crowding; Hedonic value; Re-patronage intention; Sensation seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5366] "Factors: Process and Awareness; Client Skills; Cultural Sensitivity; Intervention; Facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5367] "Subscales: Emotional Difficulties; Cognitive Difficulties; Relational Difficulties; Problematic Behaviors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5368] "Subscales: Intrinsic motivation to know; Intrinsic motivation to experience stimulation; Intrinsic motivation to accomplish; External regulation; Introjection; Identification (extrinsic motivation); Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5369] "Factors: Identity-based victimization; Personal victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5370] "Factors: Need for recognition; Moral elitism; Lack of empathy; Rumination"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5371] "Subscales: General; Physical; Non-Hostility; Collaboration; Affect; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5372] "Subscales: Appreciation; Intellectual Engagement; Fortitude; Interpersonal Consideration; Sincerity; Temperance; Transcendence; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5373] "Subscales: Idiosyncratic checking (IDSC); Overall appearance (OVAPP); Specific body parts (SBP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5374] "Subscales: Body control (BODC); Objective evaluation (OBEVAL); Reassurance (REASS); Safety beliefs (SAFEB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5375] "Subscales: General Traditional Beliefs; Demands; Awfulizing; Low Frustration Tolerance; Negative Self Rating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5376] "Subscales: Irrational-demand; Irrational-awfulizing; Irrational-low frustration tolerance (LFT); Irrational-negative self rating (NSR); Rational-demand; Rational-awfulizing; Rational-LFT; Rational-NSR."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5377] "Factors: General irrational beliefs about the traditional female role; Irrational beliefs about the traditional female role in the couple."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5378] "Factors: General Functioning (MAFS-GF); Family-Related Functioning (MAFS-FF); Peer-Related Functioning (MAFS-PF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5379] "Subscales: Positive problem-solving behavior (PPSB); Negative problem-solving behavior (NPSB); Rational problem-solving behavior (RPSB); Impulsivity behavior (IB); Withdrawal style (WS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5380] "Domains (Facets): Emotion Dysregulation (Stress Reactivity; Frustration Intolerance); Internalizing (Sadness; Self-Uncertainty), Lack of Will (Self- Directedness; Distractibility); Externalizing (Social Deviance; Impulsive Risk-Taking); Scrupulousness (Rigidity; Perfectionism); Fantasy Proneness; Apathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5381] "Subscales: Positive problem-solving behavior (PPSB); Negative problem-solving behavior (NPSB); Rational problem-solving behavior (RPSB); Impulsive behavior (IB); Avoidance behavior (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5382] "Factors: Well-being; Savoring; Creative-executive effectiveness; Self-regulation; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5383] "Subscales: Ease of Use; Interface and Satisfaction; Usefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5384] "Factors: Ease of use and satisfaction (MAUQ_E); System information arrangement (MAUQ_S); Usefulness (MAUQ_U)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5385] "Subscales: Mood-Related Signs; Behavioral Disturbance; Physical Signs; Cyclic Functions; Ideational Disturbance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5386] "Subscales: Directive Behaviour; Praise and Understanding; Active Involvement; Parental Pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5387] "Factors: Auto-positive reinforcement function; Auto-negative reinforcement function; Positive social reinforcement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5388] "Subscales: Eating concern; Shape concern; Weight concern; Restraint."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5389] "Subscales: Hyperactivity/inattention; Emotional symptoms; Conduct problems; Peer relationship problems; Prosocial behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5390] "Factors: Personality dysfunction (general factors); Identity Diffusion; Aggression; Reality Testing; Moral Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5391] "Factors: Disgust Propensity (DP); Disgust Sensitivity (DS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5392] "Subscales: Picture-naming parameters; Segmental parameters of nonword imitation; Syllabic structure parameters of nonword imitation; Nonword repetition consistency; MRR parameters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5393] "Factors: Personality dysfunction (general factors); Aggression; Reality Testing; Moral Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5394] "Factors: Dwelling (DWE); Caring (CAR); Revering (REV); Experiencing (EXP); Relating (REL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5395] "Subscales: Gelotophobia (Pho); Gelotophilia (Phi); Katagelasticism (KAT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5396] "Subscales: Municipal sports facility (IMD); Sports spaces (ED); Changing rooms (V); Activity program (PA); Teacher-monitor (PM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5397] "Factors: Interpretation of Difficulty; Identity Salience; Congruence with Group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5398] "Factors: Substance Use and Sedentary Behavior; Poor Diet and Physical Activity; Miscellaneous Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5399] "Factors: Respectful and Responsible (RR); Managing and Communicating existing and future Work (MCW); Reasoning/Managing Difficult Situations (RDS); Managing the Individual within the Team (MIT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5400] "Subscales: Affect and Fatigue; Executive and Social Function; Risk Behaviors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5401] "Subscales: Self-engagement (ENG); Service towards others (ST); Self-efficacy (SE); Transcendence (T); Self-awareness (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5402] "Factors: Uninhibited Behavior; Planful Conscientious Behavior; Socially Restrained Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5403] "Factors: Perceived barriers to testing; Perceived benefits of testing; Perceived disease severity; Social concern; Perceived disease susceptibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5404] "Factors: Psychological impact; Economic impact; Recession and COVID-19; Travel risks; Destination risks; Hospitality risks; Holiday intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5405] "Factors: Powerlessness/Hypoglycemia; Management/Eating; Physician Distress; Negative Social Perceptions; Friends/Family Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5406] "Factors: Powerlessness; Negative Social Perceptions; Physician Distress; Friend/Family Distress; Hypoglycemia Distress; Management Distress; Eating Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5407] "Subscales: Financial Partnership; Financial Secrecy; Financial Trust and Disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5408] "Subscales: Internality; Powerful others externality; Chance externality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5409] "Factors: Not being able to access information (Factor 1); Giving up convenience (Factor 2); Not being able to communicate (Factor 3); Losing connectedness (Factor 4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5410] "Subscales: Situational Cognition; General Cognition; Efficacy Beliefs. Factors: Anticipation; Creativity; Experience; Knowing each other's abilities; Agreement among the players; Agreement on players' positioning; Agreement between coaches and players; Maximizing abilities; Team goals; Balance; Self-efficacy; Other efficacy; Collective efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5411] "Factors: Sexualization of sexual identity (SSI); Intrusive and explicit sexual advances (IESA); Body evaluation (BE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5412] "Subscales: Prevention-focused ethical leadership; Promotion-focused ethical leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5413] "Subscales: Daily Living Routines; Household Responsibilities; Discipline Routines; Homework Routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5414] "Subscales: Daily living routines; Household responsibilities; Discipline routines; Homework routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5415] "Factors: Unawareness of South Korean Privilege and Discrimination Against Multicultural Minorities (USKPD); Attitudes Against Multiculturalism (AAM); Attitudes Against Advocacy and Policy for Multicultural Minorities (AAAP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5416] "Factors: Religious Well-Being (RWB); Existential Well-Being (EWB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5417] "Factors: Dementia knowledge; Social comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5418] "Factors: Supportive attitude; Acceptive attitude; Exclusionary attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5419] "Factors: Representations about interpersonal relationships and health problems; Representations about personality and cognitive characteristics; Representations about influence of contextual and family variables on high intellectual capacities; Representations about educational responses; Representations about high performance intellectual capabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5420] "Factors: Cannot Rely on Others; Undeserving; Interpersonal Guilt (Aafjes-van Doorn et al., 2021)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5421] "Subscales: Experiential Acceptance; Non-reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5422] "Factors: Internalized Stigma; Enacted Stigma; Anticipated Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5423] "Factors: Negative emotions; Prototypical aesthetic emotions; Epistemic emotions; Animation; Nostalgia/relaxation; Sadness; Amusement. Subscales: Feeling of beauty/liking; Fascination; Being moved; Awe; Enchantment; Nostalgia; Joy; Humor; Vitality; Energy; Relaxation; Surprise; Interest; Intellectual challenge; Insight; Feeling of ugliness; Boredom; Confusion; Anger; Uneasiness; Sadness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5424] "Factors: Craving; Negative Affect; Sleep; Restlessness; Concentration; Hunger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5425] "Factors: Enjoyment, Emotional Flattening, and Detachment (Factor 1); Connection, Purpose, and Enthusiasm (Factor 2); Effort and Motivation (Factor 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5426] "Subscales: PSI frequency; PSI variety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5427] "Factors: Rumination; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5428] "Factors: Non-normative subordinate masculinity; Normative subordinate femininity; Normative hegemonic masculinity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5429] "Subscales: Reward for Effort; Reduced Self-Control; Need to Consume; Permission to Consume."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5430] "Factors: Intolerance of Uncertainty; Worry; Arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5431] "Subscales: Emotional Exhaustion (EM); Job Autonomy (JA); Job Reward (JR); Conflict TCR (C-TCR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5432] "Subscales: Language/interpretability; Automation; Staffing/access; Requirements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5433] "Factors: Abandonment/instability; Mistrust/abuse; Emotional deprivation; Defectiveness/shame; Social isolation/alienation; Dependence/incompetence; Vulnerability to harm or illness; Enmeshment/undeveloped self; Failure; Entitlement/grandiosity; Insufficient self-control/self-discipline; Subjugation; Self-sacrifice; Approval/recognition seeking; Negativity/pessimism; Emotional inhibition; Unrelenting standards/hypercriticalness; Punitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5434] "Subscales: Related words; Non-related words."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5435] "Subscales: Efficacy over life problems; Cultural and Spiritual beliefs; Others Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5436] "Subscale: Survival and Coping Beliefs (SCB); Responsibility to Family (RF); Fear of Social Disapproval (FSD); Moral Objections (MO); Fear of Suicide (FS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5437] "Subscales: Survival and Coping Beliefs; Responsibility to Family; Child-Related Concerns; Fear of Suicide; Fear of Social Disapproval; Moral Objections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5438] "Factors: Negative affectivity; Detachment; Dissociality; Disinhibition; Anankastia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5439] "Factors: Social maladaptation; Nonsocial maladaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5440] "Factors: Emotional Undereating; Emotional Overeating; Hunger; Food Responsiveness; Slowness in Eating; Enjoyment of Food; Food Fussiness; Satiety Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5441] "Factors: Concealing; Adjusting; Tolerating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5442] "Factors: Relationship with Managers; Empowerment; Collegiality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5443] "Subscales: Determining education needs; Assessment and planning; Implementation; Evaluation and documentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5444] "Subscales: Addictive smoking; Pleasure from smoking; Tension reduction/relaxation; Social smoking; Stimulation; Habit/automatism; Handling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5445] "Subscales: Technology-nature; Animals; Train."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5446] "Subscales: Physical safety; Psychological comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5447] "Subscales: Inability to Learn; Relationship Problems; Inappropriate Behavior; Unhappiness or Depression; Physical Symptoms or Fears."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5448] "Subscales: Inability to Learn; Relationship Problems; Inappropriate Behavior; Unhappiness or Depression; Physical Symptoms or Fears; Socially Maladjusted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5449] "Factors: Fear of contagious depression; Tendency to avoid confrontation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5450] "Factors: Gift of Life; Benefits to Self; Negative consequences; Concerns over medical care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5451] "Subscales: Severity/irreparability of loss; Blame/unfairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5452] "Subscales: Severity/irreparability; Blame/unfairness; Perceived lack of empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5453] "Subscales: Severity/irreparability of loss; Blame/unfairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5454] "Domains: Feeling of safety; Health and mobility; Autonomy; Close entourage; Material resources; Esteem and recognition; Social and cultural life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5455] "Subscales: Affective; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5456] "Factors: Perceived program effectiveness; Gambling misconceptions; Perceived company support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5457] "Subscales: Understanding explicit information; Inferencing; Using syntactic knowledge; Using discourse knowledge; Recognizing mood, attitude, purpose, tone (MAPT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5458] "Factors: Concern about the child's weight; Advanced planning; Family attitude toward fruits and vegetables; Parental resilience—personal competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5459] "Factors: Short-Form Psychological (S-Psych); Short-Form Physical (S-Phys)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5460] "Factors: Persistent behavior; Stereotyped behavior; Self-injurious behavior; Compulsive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5461] "Factors: Brand addiction; Brand hedonism; Brand self expressiveness; Brand innovativeness; Brand authenticity; Brand exclusiveness; Compulsive buying behaviors (toward the brand); Irritability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5462] "Factors: Attitudinal loyalty; Behavioral loyalty; Perceived value for money (PVFM); Price consciousness; Quality consciousness; Price–quality inference; Perceived quality variability in the category; Attitude toward the retailer; Involvement with organic products."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5463] "Factors: Behavior (BEH); Intention (INT); Attitude (ATT); Subjective norms (SN); Perceived health benefits (HB); Perceived sustainability benefits (SB); Perceived price (PP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5464] "Subscales: Common Agenda; Backbone Support; Continuous Improvement Through Measurement; Investment and Sustainability; Collaborative Action; Diversity, Equity, and Inclusion; Youth Development Programming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5465] "Factors: Attitude toward automated vehicles; Adoption intention of automated vehicles; Reasons for adopting automated vehicles; Reasons against adopting automated vehicles; Need for uniqueness; Risk aversion; Face consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5466] "Factors: Temporal Disassociation; Focused Immersion; Heightened Enjoyment; Curiosity; Control; User Experience; User Trust; Technology Continuation Intention (first-order constructs); Tech continuation intention; User experience; User trust; Cognitive absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5467] "Factors: Perceived usefulness (PU); Perceived ease of use (PEOU); Perceived enjoyment (EN); Social presence (SP); Social cognition (SC); Trust (TR); Attitude (ATT); Intentions to use (INT); Privacy concern (PRV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5468] "Subscales: Describing thoughts/feelings; Observing sensations; Attentive awareness; Inattention/distraction; Acceptance; Maintaining a broader perspective (self-as-context) in the face of difficult thoughts/feelings; Gently experiencing difficult thoughts/feelings; Experiential avoidance of difficult thoughts/feelings; Judging difficult thoughts/feelings; Getting stuck in difficult thoughts/feelings; Maintaining daily contact with deeper values/priorities; Taking steps toward goals despite difficult thoughts/feelings/experiences; Losing touch with deeper values/priorities; Getting stuck in inaction by difficult thoughts/feelings/experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5469] "Subscales: Altruistic value; Biospheric value; Egoistic value; New ecological paradigm (NEP); Awareness of consequences (AC); Ascription of responsibility (AR); Personal integrated norms; Personal introjected norms; Eco-socially conscious consumer behavior (ESCCB); ESCCB-conservation intensions; ESCCB-purchase intensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5470] "Categories of Questions: General; Knowledge; Experience; Benefit and risk perception; Behavioral assessment; Feelings; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5471] "Survey Factors: Car dependence; Bike enjoyment; Anti-exercise; Risk tolerance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5472] "Subscales: Supernatural beliefs; Positive views of God; Negative views of God; Supportive; Ruling/punishing; Passive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5473] "Factors: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5474] "Factors: Compassion; Honesty and credibility; Sense of right and wrong; Filial piety and fraternal duty; Gratitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5475] "Subscales: Conduct; Hyperactivity; Emotional; Peer; Prosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5476] "Construes: Addiction; Hedonic benefit; Sense of belonging; Social benefit, Habit; Utilitarian benefit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5477] "Subscales: Distress relief; Communication comfort; Adherence intent; Rapport."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5478] "Factors: Recreation; Financial gambling; Financial investment; Social; Health. Subscales: Expected benefits; Risk perception; Likelihood of engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5479] "Subscales: Boreout; Career satisfaction; Life satisfaction; Job satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5480] "Factors: Positive Functioning; Negative Functioning; Human Insecurity; School Domain; Social Domain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5481] "Subscales: Knowledge in Business Management (KBM); Legal Knowledge (LK); Strategic Knowledge (SK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5482] "Factors: Self-organization; Critical thinking; Understanding context; Socio-political engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5483] "Factors: Proactive flexibility; Reactive flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5484] "Subscales: Comparative Disease Risk; Comparative Environmental Risk; Optimistic Bias; Personal Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5485] "Subscales: Sattva; Rajas; Tamas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5486] "Subscales: Conventional Score; Primary print knowledge; Secondary print knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5487] "Factors: Excessive eating behavior; Time spent eating; Negative emotional consequences; Social impact of healthy eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5488] "Subscales: Relational practices; Participatory practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5489] "Subscales: Respect and integrity; Planning and decision making; Information and knowledge; Motivation and encouragement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5490] "Factors: Preservation (PRE); Utilization (UT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5491] "Subscales: Home Integration; Social Integration; Productivity; Electronic Social Networking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5492] "Factors: Overcommitment; Impatience; Hard-Working; Salience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5493] "Factors: Campus Cultural Fit; Academic Capital; School–Family Integration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5494] "Factors: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5495] "Subscales: Continuance use intention; Catching Pokémon; Passing time; Entertainment; Social interaction; Medium appeal; Game knowledge; Game level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5496] "Subscales: Switching intention (SI); Socializing (SO); Enjoyment (EN); System quality of SNSs (SQ); Customer care satisfaction (CSS); Attractiveness of the alternative (AA); Peer influence (PI); Critical mass (CM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5497] "Factors: Metacognitive Conditional Knowledge; Covert Self-regulation; Environmental Self-regulation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5498] "Subscales: Affordance-Visibility; Affordance-Association; Affordance-Editability; Affordance-Persistence; Ties-Instrumental; Ties-Expressive; Job performance-In-role; Job performance-Innovative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5499] "Factors: Selfie Appearance Investment; Selfie Peer Feedback Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5500] "Factors: Salience; Mood Modification; Conflict; Tolerance; Relapse; Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5501] "Subscales: Physical victimization; Verbal victimization; Property attacks; Social victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5502] "Factors: Lack of belonging; Inauthenticity; Exclusion; Anger; Sadness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5503] "Factor: Need for Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5504] "Factors: Purchase Intention; Motivation to process nutrition and sustainable information; Perception of a healthy and sustainable diet; Attitude to food innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5505] "Method Factors: Positively worded items; Negatively worded items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5506] "Subscales: Avoidance of femininity (AF); Self-reliance through mechanical skills (SR); Negativity toward sexual minorities (NT); Toughness (TO); Dominance (DO); Importance of sex (IS); Restrictive emotionality (RE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5507] "Factors: Speed/degree of escalation combined with intensity; Speed/degree of de-escalation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5508] "Subscales: Diagnosis/Symptoms (D/S); Etiology (ET); Treatment (TR); Stigma (ST)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5509] "Subscales: Physical Functioning; Vitality; Emotional Functioning; Health Perception; Treatment Burden; Upper Respiratory Symptoms; Lower Respiratory Symptoms; Role; Social Functioning; Hearing Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5510] "Factors: Personal habits (PH); Manner with others (MO); Sort of person (SP); Personal ability (PA); Doing something wrong (DSW); Saying something stupid (SSS); Failing competitively (FC); Body (BD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5511] "Subscales: Physical; Cognitive; Social; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5512] "Subscales: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5513] "Subscales: Decreased Food Appeal scale; Physical Satisfaction scale; Planned Amount scale; Self-Consciousness scale; Decreased Priority of Eating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5514] "Subscales: SEQ-insider; SEQ-patient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5515] "Subscales: Perspective taking; Online simulation; Emotion contagion; Proximal responsivity; Peripheral responsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5516] "Factors: Normative conformity; Normative rule adequacy; Deviant performance seeking; Deviant proactivity seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5517] "Subscales: Normative political engagement; Nonnormative political engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5518] "Factors: Perceived usefulness; Confirmation; Satisfaction; Communication quality; Responsiveness; Social interaction; News sharing; Continuance intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5519] "Subscales: Home team; Opposing team; Game promotion; Economic consideration; Schedule convenience; Game amenities; Ticket service; Venue quality; Perceived value; Team identification; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5520] "Subscales: People-related success factors (Pepfact); Trust; Trust in Pepfact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5521] "Subscales: Attitude toward the brand; Customer-based brand equity; Positive word-of-mouth; Advertisement creativity; Brand-event fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5522] "Subscales: Congruency; Consistency; Fan orientation; Fan identity; Sport team enthusiasm; Sport team endorsement; Helping behavior; Sponsor philanthropy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5523] "Factors: Direct burdens of receiving health care; Administrative and financial burdens; Lifestyle burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5524] "Subscales: Task involvement; Active WOM seeking; Message quality; Opinion leadership; Closeness; WOM influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5525] "Factors: Inhibition (SIQ15-I); Sensitivity (SIQ15-S); Withdrawal (SIQ15-W)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5526] "Subscales: Balance; Academic Support; Self-Awareness; Academic Engagement; Social Engagement; Physical Strategies; Academic Interest; Miscellaneous Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5527] "Factors: Mistrust (MIS); Uncertainty (UNC); Powerlessness (POW); Resignation (RES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5528] "Factors: Control; Awareness; Collection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5529] "Subscales: Aesthetic quality; Functionality; Atmosphere; Spaciousness; Physiological conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5530] "Factors: Horizontal Social Inclusion (HSI); Vertical Information Inclusion (VII)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5531] "Domains: Access; Condition; Esthetics; Features; Safety; Target Area; Street; Court; Green Space; Path; Playground; Sports Field."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5532] "Factors: Bricolage; Product innovativeness; Ties with civil society organizations; Ties with governments; Marketing capabilities; Customer value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5533] "Subscales: Dolphins; Monkeys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5534] "Subscales: Close friends' descriptive norms frequency; Typical college student descriptive norms frequency; Close friends' descriptive norms quantity; Typical college student descriptive norms quantity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5535] "Factors: Lapse; Transgression; Aggressive Behavior; Positive Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5536] "Subscales: Self-reflectivity; Awareness of other's minds; Decentration; Mastery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5537] "Factors: Positive Counseling Expectation (PCE); Negative Counseling Expectation (NCE); Positive Norm (PN); Negative Norm (NN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5538] "Subscales: Self-reflectivity (S); Understanding other's minds (O); Decentration (D); Mastery (M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5539] "Subscales: Racial and ethnic identity (RID); Social justice and activism (SJA); Psychological health (PH); Connectedness and spirituality (CS); Humor (HUM); Opposite gender/sexual orientation connections (OGC); Culturally diverse friendships (CDF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5540] "Subscales: Engaging in Work Practices to Reduce Risk; Communicating Health and Safety Information; Preparing to Drive; Using Personal Protective Equipment; Exercising Employee Rights and Responsibilities; Attending to Driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5541] "Dimensions: Clutter; Difficulty Discarding; Acquisition; Distress; Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5542] "Factors: Management; Safety; Studies; Social interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5543] "Subscales: Scale for Therapeutic Homework Assignment (StH-A); Scale for Therapeutic Homework Review (StH-R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5544] "Factors: Perceived Job Demands; Goal Progress; Experienced Meaningfulness; Physical Discomfort; Neuroticism; Positive Affect; Negative Affect; Depletion; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5545] "Subscales: Information source and format preference; Information ownership and analysis style; Centralized decision-making and information control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5546] "Factors/Subscales: Negative emotions; Assessment of responsibility; Lack of empathy; Social disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5547] "Factors: Exhibitionism; Interpersonal connectivity; Informational value; Brand page activities; Brand page regret; Networking activities; Networking regret; Facebook use intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5548] "Effectiveness of WASS; Privacy concern; Security concern; Business integrity; Technology concern; Perceived website trust; Perceived value; Intentions to book hotel online; Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5549] "Constructs: Comprehensive IM policy; IM customization; IM reconfiguration; Self-learning; Effective use; IM competence; Communication quality; Productivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5550] "Learning engagement factors: Challenge; Control; Immersion; Interest; Purpose"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5551] "Factors: Attachment Avoidance; Attachment Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5552] "Subscales: Emotional; Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5553] "Subscales: Iterative planning and deployment of software; Agile corporate culture; Agile working methods and customer involvement; Feedback-oriented employee centricity; Classic project management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5554] "Subscales: Depression; Generalized anxiety; Social anxiety; Eating concerns; Hostility; Family distress; Academic distress; Substance use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5555] "Factors: Legibility; Performance Time; Physical and Emotional Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5556] "Subscales: Hyperexpressive traits; Hyperactive traits; Dominance–egocentrism; Impulsivity; Irritable–aggressive traits; Disorderliness; Distraction; Risk taking; Narcissistic traits; Affective lability; Resistance; Inflexibility; Lack of empathy; Dependency; Anxious traits; Lack of self-confidence; Insecure attachment; Submissiveness; Ineffective coping; Separation anxiety; Depressive traits; Shyness; Paranoid traits; Withdrawn Traits; Perfectionism; Extreme achievement striving; Extreme order; Oversensitivity to feelings; Extreme fantasy; Daydreaming; Odd thoughts and behavior. Factors: Disagreeableness; Emotional Instability; Introversion; Compulsivity; Oddity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5557] "Factors: Consulting behaviors; Fluid restriction; Adherence behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5558] "Scales: Autonomy; Relatedness; Competence. Subscales: Satisfaction; Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5559] "Factors: Enacted Stigma; Internalized Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5560] "Subscales: Tendency to justify medical overuse; Perceived relevance of medical overuse; Evaluation of approaches to prevent medical overuse; Evaluation of “Choosing Wisely” advices for family physicians."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5561] "Subscales: Fears and Concerns; Employers Resources for Persons with Disabilities; Americans with Disabilities Act (ADA) Competence; Knowledge of Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5562] "Subscales: Sexual Emotion Seeking; Tendency for Sexual Boredom."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5563] "Subscales: Monitoring; Metacognitive regulation; Self-explanation; Comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5564] "Subscales: OUD attitudes and beliefs; OUD treatment and referral practices; belief in OUD treatment effectiveness; support for policies to expand access to OUD medications; physician demographics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5565] "Factors: Achievement; Intimacy; Fair treatment; Relationship; Self-transcendence; Self-acceptance; Religion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5566] "Subscales: Helplessness; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5567] "Domains: Knowledge; Skills; Social/professional and role and identity; Beliefs about capabilities; Optimism; Beliefs about consequences; Intentions; Goals; Innovation; Socio-political context; Organization; Patient; Innovation strategy; Social influences; Positive emotions; Negative emotions; Behavioral regulation; Nature of the behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5568] "Dimensions: Stimulus-related anxiety; Social anxieties and cognitions about bullying; Health and somatoform anxieties; Cognitions about insufficiency; Job-related worrying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5569] "Scales: The use of a plastic surgeon as a way to correct imperfection ranks; High standards of appearance and fixation of attention on it; Inclination to unfavorable social comparisons and rumination the topic of appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5570] "Factors: Imaginative Capability; Problem Solving Self-Efficacy; Emotional Stress Vulnerability; Negative Attitude toward Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5571] "Factors: Human touch; Prestige; Good value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5572] "Subscales: Community Integration; Community Dissemination; Workforce Development; Teacher Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5573] "Factors: Pet-specific constraint; Pet-related structural constraint; Pet-related interpersonal constraint (Pet-related tourism constraints); Perceived benefit; Pet attachment; Learned helplessness; Willingness to negotiate; Intention to travel with pet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5574] "Factors: Acceptance; Negative Conflict; Distinctiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5575] "Constructs: MTI- Country Environment; MTI- Tourism Destination; MTI- Medical Tourism Costs; MTI- Facility and Services Medical Staff Quality; Supporting Services Quality; Tourism Involvement; Destination Distinction; Perceived value; Word-of-Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5576] "Factors: Efficacy concern; Safety concern; Cost concern; Time concern; Access concern; Autonomy concern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5577] "Factors: The need for self-change; The ability for conscious self-change; Belief in the possibility of self-change; The possibility of self-change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5578] "Factors: Social interaction ties (SIT); Trust (TR); Perceived similarity (PS); Intention to seek information (SIN); Intention to share comments (SHC); Perceived Integration by using WeChat (PEI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5579] "Subscales: Personal Freedom (8 items); Equal Rights (4 items); Women Empowerment Related Fears (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5580] "Factors: Cognitive; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5581] "Subscales: Favorable towards neonatal ELDs with explicit intention to hasten the end of life; Favorable towards neonatal ELDs taking into account the possibility that it could hasten the end of life; Favorable towards late termination of pregnancy when the fetus is viable; Favorable towards late termination of pregnancy for maternal reasons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5582] "Factors: Family Emotional Loneliness; Non-family Emotional Loneliness; Loneliness scale in Romantic Relationships; Romantic Emotional Loneliness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5583] "Factors: App interface usability; Continued intention to use; Perceived intrusiveness; Perceived security; Irritation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5584] "Factors: Behavioral manifestations; Feelings/Cognitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5585] "Subscales: Personal Activities of Daily Living (PADLs); Play/Leisure; Social Participation; Instrumental Activities of Daily Living (IADLs); Education/Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5586] "Factors: Fluid reasoning; Crystalized knowledge; Short-term memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5587] "Constructs: Social Communication Style; Task Communication Style; Community Commitment Velocity; Community Commitment Level; Member Gratitude Behavior; Member Entitlement Behavior; Attachment Anxiety; Attachment Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5588] "Subscales: Quality of feedback (QUAL); Use of feedback (USE); Quantity and timing of feedback (QUAN); Examination and learning (EXAM); Usefulness of feedback (USEF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5589] "Factors: BMQ-Concern; BMQ-Necessity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5590] "Scales: Emotional Experiences & Daily Activities; Family Relationships; Interactions With Friends and Others; Interactions With Healthcare Team; Social and Emotional Experiences; Financial Considerations; Sources of Support; Handling Diabetes Well; Parent–Young Adult Relationships; Emotional Experiences; Diabetes Management & Health Concerns; Relationship Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5591] "Subscales: Emotional Experiences; Self-Management Experiences; Support from Family & Others; Family Conflict; Emotional Experiences & Daily Activities; Peer Relationships; Family Relationships; Handling Diabetes Well."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5592] "Subscales: Personal Growth through OLE; Self-regulated and Reflective Learning; Knowledge and Self-Awareness; Respecting Pluralistic Views and Cultures; Communication Skills; Critical Thinking and Creativity; Relationship with Teachers and Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5593] "Subscales: Internal; External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5594] "Factors: Norm tractability; Norm agreement; Anticipated punishment; Norm explicitness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5595] "Subscales: Emotional response to interconnectedness (ERI); Appreciation of interconnectedness on self-development (AIS); Interconnectedness in social relations (ISR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5596] "Subscales: Life focused (LF); Death focused (DF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5597] "Subscales: Emotional; Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5598] "Factors: Nature of use (BI&A USE); Absorptive capacity; Innovation ambidexterity; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5599] "Factors: Unconditional acceptance of the rules; Primacy of self-reference; Reasoned acceptance of the rules; Collective management of the rules."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5600] "Factors: Rational style; Intuitive style; Dependent style; Avoidant style; Spontaneous style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5601] "Subscales: Strangers; Conservatives/Religious; Work; Identity Concealment; Social Withdrawal; Scanning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5602] "Factors: Collaboration in the EOL context; Role clarity in the EOL context; Work-related interruptions of communication with families; Emotional support; Stress by involvement in EOL care and communication with families; Stress by work overload; Initiating EOL decision making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5603] "Subscales: Collaboration in the EOL context; Role clarity in the EOL context; Work-related interruptions of communication with families; Emotional support; Stress by involvement in EOL decision making and communication with families; Stress by work overload; Taking initiative toward EOL decision making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5604] "Factors: Rational persuasion; Pressure; Legitimacy; Coalition; Collaboration; Consultation; Apprising; Inspirational appeal; Perceived usefulness; Perceived ease of use; Resistance; Unfaithful use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5605] "Factors: Autonomy Need Satisfaction; Competence Need Satisfaction; Relatedness Need Satisfaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5606] "Factors: Conformity; Positive effects; Calm/coping; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5607] "Subscales: Conformity; Positive effects; Calm/coping; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5608] "Factors: External; Structural; Disaster & Crisis; Perceived Crisis Management; Attitude - trust; Negativity bias; Post-crisis intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5609] "Factors: Urge Severity; Urge Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5610] "Subscales: Perceived cost benefit value; Perceived variety value; Perceived environmental benefit value; Perceived physical condition risk; Perceived style preference risk; Perceived shopping opportunities risk; Perceived return sacrifice risk; Perceived return liability risk; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5611] "Subscales: Attitudes towards green hotels (ATT); Subjective norms (SN); Perceived control (PC); Environmentally friendly activities (EFA); Overall image (OI); Visit intention (VI); Willingness to pay more (WP); Satisfaction (S); Loyalty (L)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5612] "Factors: Academic Competence; Practice; Design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5613] "Factors: Performance time and well-being; Legibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5614] "Subscales: Legibility; Performance time; Physical and emotional well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5615] "Factors: Emotional; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5616] "Subscales: Emotional; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5617] "Factors: cleaned; fresh; uncluttered; perceived service quality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5618] "Factors: Guilt; Shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5619] "Factors: Planned Use of Pain Medication; Relationship With Care Provider and Supportive Birth Environment; Beliefs About Labor; Labor Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5620] "Factors: Helping society; Reporting violations; Providing for family; Immediate danger; Other's aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5621] "Subscales: Coping; Reward Enhancement; Social; Conformity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5622] "Factors: Quality of Life; Provider Social Support; Psychosocial Needs; Nonprovider Social Support; Health Information and Decision-Making Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5623] "Factors: Social; Recreatment; Relationship; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5624] "Factors: Emotional uncertainty; Cognitive uncertainty; Desire for change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5625] "Factors: Sexual self-esteem (SSE); Sexual self-efficacy (SSF); Assertive sexual behaviour (ASB); Assertive sexual communication (ASC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5626] "Part A Factors: expression/performance management; self-regulation; organization--body, essentials, social; activities of daily living (ADL). Part B Factor: general daily function compared to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5627] "Factors: Strategic; Differentiated; Technologically savvy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5628] "Factors: Quality indicator (QI); General factor (GF); Residual factor (RF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5629] "Factors: Engage and motivate; Support and monitor; Generalization; Overall FFP competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5630] "Subscales: Human resources development (DEV); Technological support (TECH); Knowledge sharing (SHA); Mentoring practices (MENT); Team reflexivity (REFL); Organizational memory (MEM); Organizational communication (OCOM); Human resources training (TRAI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5631] "Subscales: Amotivation; External Regulation; Introjected Regulation; Identified Regulation; Intrinsic Motivation (IM) – to Know; IM – Accomplishment; IM – Stimulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5632] "Subscales: Trauma; Witnessing; Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5633] "Subscales: Economic control; Economic exploitation; Employment sabotage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5634] "Subscales: Views about value of clinical documentation; Burden of documentation; Hospital leadership and documentation; Time taken to complete documentation; Documentation issues and solutions; Intervention evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5635] "Subscales: Achievement-oriented (ACH); Competition-oriented (KIL); Socialization-oriented (SOC); Exploration-oriented (EXP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5636] "Factors: Entrepreneurial Orientation Innovativeness (EO-I); Entrepreneurial Orientation Proactiveness (EO-P); Entrepreneurial Orientation Risk-taking (EO-R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5637] "Subscales: Multiple Food Test (Choice) (MFT-C); Multiple Food Test (Knowledge) (MFT-K)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5638] "Factors: Emotional Apathy; Passivity; Delay in Task Completion and Presenteeism; Deterioration in Communication Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5639] "Subscales: Avoidance and Maladaptive Patterns Insights (AMP); Goals and Adaptive Patterns Insights (GAP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5640] "Subscale: Performance expectancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5641] "Subscales: Assertiveness; Conversation; Self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5642] "Factors: Productive Interactions (PI); New Relational Model (NRM); Patient Self-Management (PSM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5643] "Factors: Attention for the patient; Attention for the caregiver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5644] "Factors: Attention for the patient; Attention for the caregiver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5645] "Subscales: Content representation and delivery; Expression of understanding; Activity and student engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5646] "Subscales: Empathic inclusive communication; Trust and gratitude for confident HCPs; Reciprocity; Tailored communication; Trustful communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5647] "Factors: Organization (Safety commitment; Safety supervision; Safety reward and punishment); Environment (Safety environment; Safety compliance); Training (Safety training; Risk management); Psychology (Safety rules; Safety knowledge; Safety perception; Safety attitude); Behavior (Safety communication; Safety behavior; Safety involvement)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5648] "Factors: Positive attitude toward old people; Negative attitude toward old people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5649] "Subscales: Health Care Service Needs; Psychological and Emotional Needs; Work and Social Needs; Information Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5650] "Constructs: Self-Efficacy for Identifying and Confronting Prejudicial Behaviors; Collective Efficacy for Creating More Racially/Ethnically Inclusive Departments; Feelings of Autonomy Regarding the Simulations and the Journal Club; Interest in the Simulations and the Journal Club; Beliefs about the Usefulness of the Simulations and Journal Club; Feelings of Immersion/Presence in the Simulations; Perceived Competence in the Simulations; Feelings of Pressure/Tension in the Simulations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5651] "Factors: Nonrestrictive mediation; Restrictive mediation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5652] "Factors: Benevolence; Avoidance; Revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5653] "Subscales: Shame; Insight; Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5654] "Subscales: Authentic pride; Hubristic pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5655] "Factors: Experienced Supervisor Incivility; Emotional Exhaustion; Intrinsic Motivation; Job Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5656] "Subscales: Concern for others; Responsibility; Courage; Self-acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5657] "Factors: Irreversibility; Lack of control and Freezing; Narcissist wounds; Emotional flooding; Emptiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5658] "Domains: Recent events; Lifetime events; Appraised events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5659] "Factors: onset delay; delay during goal striving (i.e., sustained procrastination); timeliness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5660] "Subscales: Enacted; Orientation Concealment; Anticipated; Internalized."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5661] "Scales: Cognitive restraint; Emotional eating; Uncontrolled eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5662] "Measurement Constructs: Perceived Informativeness; Perceived Persuasiveness; Attitude Toward Post; Response Action; Purchase Intention; Impulsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5663] "Factors: Cognitive restraint; Uncontrolled eating; Emotional eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5664] "Factors: Perceived media richness (MR); Perceived price fairness (PF); Perceived convenience (CO); Perceived host interaction (HI); Trust (TR); Purchase intention (INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5665] "Constructs: Customer Orientation; Excellence; Responsibility; Teamwork. Subconstructs: External perspective; Internal perspective; Continuous improvement; Innovation; Accountability; Commitment; Formal structures: Informal structures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5666] "Factors (Subscales): Cyberbullying; Differential association (Differential behavior; Differential norms); Definitions (Positive definitions; Neutralizing definitions); Imitation (Imitation of primary group; Imitation of secondary group); Differential reinforcement (Personal gain; Peers' reinforcement)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5667] "Factors: Clutter; Discarding; Acquisition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5668] "Subscales: Angry child; Enraged child; Undisciplined child; Dependent child; Abandoned/abused child; Lonely child; Demanding parent; Punitive parent; Compliant surrender; Avoidant protector; Detached protector; Detached self-soother; Attention and approval seeker; Self-aggrandizer; Perfectionistic overcontroller; Suspicious overcontroller; Bully and attack; Healthy adult; Happy Child. Factors: Externalization; Compulsivity; Internalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5669] "Subscales: Generalized avoidance; Intimate relationships avoidance; Social isolation; Interpersonal passivity; Depressivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5670] "Factors: Effects on Social Contacts dimension (ECS); Effects on Social Reputation (ERS); Effects on the Occupational Situation and Quality of Life (ESOQV); Health Effects (ES); Effects of Self Expression (EAE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5671] "Factors: Acceptance of Challenges/Risks and Flexibility/Openness to Changes; Effort/Achievement; Optimism; Proactivity/Initiative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5672] "Subscales: Somatic/panic (SO/PA); Social phobia (SP); Generalized anxiety (GA); Separation anxiety (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5673] "Subscales: Reactive Aggression (RA); Proactive Aggression (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5674] "Subscales: Managing the Psychosocial Aspects of Diabetes; Assessing Dissatisfaction and Readiness to Change; Setting and Achieving Diabetes Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5675] "Subscales: Hedonic motivation (HM); Habit (HB); Price value (PV); Effort expectancy (EE); Social influence (SI); Flow (FL); eSports gameplay intention (GI); eSports gameplay behavior (GB; fequency); Team identification (TI); Player identification (PI); Media consumption intention of eSports events (MC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5676] "Factors: Financial impact; Psychological impact; Social impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5677] "Factors: Avoidance; Acceptance; Harnessing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5678] "Subscales: Hazing/Peer Pressure; Sabotage; Belittlement; Broken Trust; Online; Stereotyping; Social Exclusion; Physical; Verbal Aggression; Sexual Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5679] "Subscales: NOTICE; EMERGENCY; RESPONSIBILITY; KNOW."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5680] "Subscales: Honor, Face, Dignity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5681] "Subscales: Intention to comply with ISSP (INT); Work impediment (IMP); Perceived responsibility (PR); Autonomy (AUT); Self-efficacy (SEF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5682] "Subscales: Certainty; Simplicity; Source; Justification; Development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5683] "Subscales: Frequency; Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5684] "Factors: Benefit beliefs; Effort beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5685] "Subfactors: Callous aggression; Substance abuse. Subscales: Relational aggression; Physical aggression; Destructive aggression; Empathy; Blame externalization; Alienation; Fraud; Honesty; Dependability; Planful control; Impatient urgency; Rebelliousness; Boredom proneness; Excitement seeking; Alcohol problems; Alcohol use; Marijuana problems; Marijuana use; Drug problems; Drug use; Theft; Irresponsibility; Problematic impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5686] "Constructs: Positive direct contact; Negative direct contact; Positive extended contact; Negative extended contact; Positive vicarious contact; Negative vicarious contact; Positive focus; Negative focus; Threat; Sense of Chinese National community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5687] "Clusters: Pharmaceutical Public Health; Pharmaceutical care; Organization and Management; Professional/Personal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5688] "Factors: Well-Being; Self-Control; Emotionality; Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5689] "Factors: Negative emotional appeal; Positive emotional appeal; Perceived threat; Expected outcomes; Self-efficacy; Cues to action; Safety behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5690] "Factors: Uncertainty leads to the inability to act; Uncertainty is stressful and upsetting; Unexpected events are negative and should be avoided; Being uncertain about the future is unfair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5691] "Factors: Identity; Separation-Individuation from Caregivers; Affect Regulation; Capacity to Invest; Quality of Interpersonal Functioning with Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5692] "Scales: Performance; Transformational and Transactional leadership; Compensation and benefits. Factors: Contingent rewards; Management by exceptions (active); Management by exceptions (passive); Financial performance; Non-financial performance; Sustainable performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5693] "Subscales: Emotional engagement-Low emotional attunement (EE-A); Emotional engagement-Low emotional control (EE-C); Emotional engagement-Detrimental attitude to emotions (EE-D); Emotional interference-Reduced attentional capacity (EI-A); Emotional interference-Reduced behavioural control (EI-B); Emotional response style-Avoidant (ER-A); Emotional response style-Externalizing (ER-E); Emotional response style-Internalizing (ER-I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5694] "Factors: Pro-trait protection; Con-trait protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5695] "Factors: Physical involvement; Matching degree; Immersion perception; Learning satisfaction; Learning effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5696] "Subscales: Elaboration; Positive evaluation; Negative evaluation; Autonomy support and control; Engagement; Disaffection; Memory performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5697] "Subscales: Pathway; Agency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5698] "Constructs: Internet Self-efficacy on Verification (ISV); Trust Propensity (TP); Physician Credibility (PC); Perceived Informativeness (PI); Perceived Usability (PU); Platform Reputation (PR); Structural Assurance (SA); Economy-based Trust (ET); Information-based Trust (IT); Adoption Intention (AI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5699] "Factors: White Fragility; Emotional Defensiveness; Accommodation of Comfort; Exceptionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5700] "Factors: Climate; Content; Practice; Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5701] "Subscales: Physical appearance; Life stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5702] "Subscales: Organization performance; Competitive advantage; Innovation capability; Social capital; Human capital; Political ties; Business ties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5703] "Subscales: Hardcore biker; Feisty biker; Fortuitous biker."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5704] "Subscales: Social and Consider; Intrapersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5705] "Factors: Affection and Attachment (AA); Early Learning (EL); Rules and Respect (RR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5706] "Subscales: Defusion; Common Humanity; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5707] "Indicators: Mental State and Level of Consciousness; Oxygenation; Vital Signs; Nutrition and Hydration; Motility; Locomotion; Body Care; Eliminations; Therapy; Health Education; Behavior; Communication; Cutaneous-Mucosal Integrity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5708] "Factors: Smoking functional beliefs; Risk generalization beliefs; Social acceptability beliefs; Safe smoking beliefs; Self-exempting beliefs; Quitting is harmful beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5709] "Subscales: Clinical care; Relational care; Humanistic care; Comforting care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5710] "Subscales: Symptoms; Daily Activities; Treatment Concerns: Treatment Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5711] "Factors (Sub-factors): Reintegration (Finding Meaning; Understanding the System; Social Relationships); Managing the Loss (Tangible Support; Family Relationships; Personal Health Care)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5712] "Factors: Impediments; School Experiences; Family Experiences; Experiences with Peer; Community Experiences; Coping; Skills; Sense of Purpose; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5713] "Subscales: Intrinsic cognitive load (IL); Extraneous cognitive load (EL); Germane cognitive load (GL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5714] "Subscales: Intrinsic cognitive load; Extraneous cognitive load; Germane cognitive load."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5715] "Subscales: Inclusion Principles; Inclusion Practices. Factors: Policies & Environment; Individualized Supports; Administrative Commitment to Inclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5716] "Subscales: Separation Anxiety Disorder (SAD); Generalized Anxiety Disorder (GAD); Panic Disorder (PD); Social Phobia (SP); Major Depressive Disorder (MDD); Obsessive Compulsive Disorder (OCD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5717] "Subscales: Physical; Emotional; Social; Cognitive; Meaning/Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5718] "Subscales: Goals; Ability; Autonomy; Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5719] "Subscales: Safety and Justice; Moving Forward; Image Validation; Emotional Support; Relieve Burden; Relationship Management; Encouraged/Forced Disclosing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5720] "Factors: Anxiety; Effects; Clarity; Treatment; Control; Symptom Variability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5721] "Subscales: Physical assault; Burglary; Cocaine trafficking; Physical injury; Psychological harm; Privacy; Financial costs; Loss of dignity; Reputation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5722] "Subscales: Beliefs; Attitude; Injunctive social norms; Descriptive social norms; Intention; Opportunity; Ability; Galamsey behavior change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5723] "Factors: Critical appraisal of media sources; Critical appraisal of evidence-based nutrition sources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5724] "Factors: Selective Peer Restriction; Nonselective Peer Restriction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5725] "Subscales: Pro-hedonic; Contra-hedonic; Performance; Pro-social; Impression management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5726] "Subscales: Attitudes towards Black Lives Matter; Police-Military Equivalency; Attitudes toward the Policed; Conservative Crime Ideology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5727] "Subscales: Impairment; Symptom Severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5728] "Factors: Symptom severity; Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5729] "Subscales: Occupational Disruption; Habits and Routines; Social Environment; Family Disapprobation; Residual Strengths; Self-Medicating Behaviors; Physical Environment; Readiness for Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5730] "Subscales: Knowledge management; Human sustainability; Human capital; Relational capital; Structural Capital; Innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5731] "Constructs: Attitudes; Subjective Norm; Perceived Behavioural Control; Intention; Self-reported speeding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5732] "Subscales: Sleep quality index; Sleepiness index; Fatigue index; Impaired waking index; Suspected sleep apnea index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5733] "Subscales: Everyday activities; Sedentary activities; Pain/lifting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5734] "Subscales: Participation; Education; Health; Leisure; Security; Facilitators; Barriers; Knowledge; Skills; Resources and support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5735] "Subscales: Behavioral intention; Subjective norm; Negative attitude; Perceived behavioral control; Self-report behavior; Positive attitude; Health motivation; MPUR habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5736] "Constructs: Attitude; Subjective norm; Perceived behavioral control; Intention; Visibility; Habit; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5737] "Subscales: Attitude; Subjective norm; Perceived behavioral control; Intention; Habit; Visibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5738] "Subscales: Health Information; Emotional Support; Instrumental Support; Professional Support; Community Support Network; Involvement with Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5739] "Subscales: Financial success; Image; Popularity; Self-acceptance; Affiliation; Community feeling; Physical health; Spirituality; Conformity; Hedonism; Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5740] "Subscales: Intrinsic; Extrinsic; Spirituality (Self-transcendent)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5741] "Subscales: Place Identity; Place Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5742] "Factors: Social distance at professional pharmacy service; Attitudes towards patients diagnosed with schizophrenia; Self-disclosure; Social distance in personal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5743] "Factors: Interpersonal relations; Civilian policies; Diplomatic coordination; Cultural and security coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5744] "Subscales: Respiration; Phonation; Resonance; Articulation; Prosody."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5745] "Balanced Subscales: Cohesion; Flexibility; Unbalanced Subscales: Disengaged; Enmeshed Cohesion; Rigid; Chaotic Flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5746] "Subscales: Enmeshed; Disengaged; Balanced Cohesion; Chaotic; Balanced Flexibility; Rigid."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5747] "Factors: Coping; Enhancement; Social motive; Conformity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5748] "Subscales: AM – Amotivation; ER – External regulation; INR – Introjected regulation; IDR – Identified regulation; IMTK – Intrinsic motivation to know; IMTA – Intrinsic motivation toward accomplishment; IMTE – Intrinsic motivation to experience stimulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5749] "Subscales: Depression; Anxiety; Rule-breaking; Substance use; Isolation at school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5750] "Subscales: Variability-repertoire; Variability-ability to select; Fluency; Symmetry; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5751] "Subscales: Self-injurious behaviors (SIB); Stereotyped behavior; Aggressive/destructive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5752] "Factors: (1) Concreteness and Imagery (Con/Im); (2) Reflection and Reorganization (Ref/Reor); (3) Specificity (Spe); (4) Vividness of the Session Memories (Mem)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5753] "Subscales: SE-manage; SE-function; SE-cope."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5754] "Factors: Fear of old people (Factor I); Psychological concerns (Factor II); Physical appearance (Factor III); Fear of losses (Factor IV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5755] "Factors: Personal internalized aging anxiety; Collective affinity for older people; Relational aging anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5756] "Subscales: Values and Preferences; Involvement; Information/Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5757] "Factors: Paternalistic Attitude (MSQ-PATER); Deliberate Attitude (MSQ-DELIB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5758] "Subscales: Adjustment of work; Time control; Goal setting and behaviors consistent with personal values; Adjustment of life rhythms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5759] "Factors: Excellent Practice in Dementia Care; Understanding the Essence of Dementia Care; Caring for Oneself as well as for the Person with Dementia; Having Peers with Shared Support Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5760] "Subscales: Social enhancement (SE); Affect regulation (AR); Negative health consequences (NHC); Positive smoking experience (PSME); Negative social consequences (NSC); Addiction concern (AC); Negative sensory experience (NSE); Positive sensory experience (PSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5761] "Subscales: Psychological health-promoting leadership; Preventive medicine health-promoting leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5762] "Subscales: Basic needs; Psychological needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5763] "Factors: No Reference Group; Reference Group Nondependent Diversity; Reference Group Nondependent Similarity; Reference Group Dependent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5764] "Subscales: Feeling Angry; Verbal Anger Impulse; Physical Anger Impulse; Angry Reaction; Anger Expression-In; Anger Expression-Out; Anger Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5765] "Factors: Functional eHealth Literacy; Communicative eHealth Literacy; Critical eHealth Literacy; Translational eHealth Literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5766] "Domains: Counterproductive Work Behavior target; Counterproductive Work Behavior severity; Counterproductive Work Behavior visibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5767] "Subscales: Moral and ethical perceptions of ECT; ECT as a last resort treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5768] "Subscales: Perception; Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5769] "Dimensions: Interpersonal-Organizational; Task Relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5770] "Factors: Optimism; Pessimism; Hope."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5771] "Factors: Laxness; Overreactivity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5772] "Subscales: Long Term Development Focus; Holistic Quality Preparation; Support Network; Communication; Alignment of Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5773] "Factors: Responsibility climate generated by classmates; Responsibility climate generated by the teacher."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5774] "Subscales: Governance, policies, and procedures; Staff training and service delivery; Addressing stigma and discrimination; Accessibility of services; Community relationships; Quality, monitoring, and evaluation; Human resource development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5775] "Factors: Emotional safety; Cognitive safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5776] "Factors: Work-related bullying; Person-related bullying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5777] "Subscales: Knowledge contribution (KC); Social interaction ties (SIT); Reciprocity (RE); Shared vision (SV); Face (FA); User stickiness (US)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5778] "Subscales: Expected reciprocity (RCP); Self-efficacy (EFF); Subjective norms (NORM); Knowledge transfer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5779] "Subscales: Professional film media; Popular media; Social media; Social influence; External reward; Presenting oneself; Perceived enjoyment; Intention to watch a movie in the cinema."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5780] "Factors: Temper control; Social assertiveness; Anxiety control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5781] "Factors: Positive pain metacognitions (PMQ-P); Negative pain metacognitions (PMQ-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5782] "Factors: Agentic Norms; Communal Norms. Subscales (with Codes in parentheses): Pushy (A); Competitive (B); Combative (C); Rude (D); Guarded (E); Evasive (F); Hesitant (G); Timid (H); Cautious (I); Yielding (J); Modest (K); Respectful (L); Open (M); Engaged (N); Confident (O); Courageous (P). The octant space can be divided into the following octants: PA, agentic; BC, agentic + uncommunal; DE, uncommunal; FG, unagentic + uncommunal; HI, unagentic; JK, unagentic + communal; LM, communal; and NO, agentic + communal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5783] "Circumplex Factors: Agentic Norms; Communal Norms. Subscales (with Codes in parentheses): Pushy (A); Competitive (B); Combative (C); Rude (D); Guarded (E); Evasive (F); Hesitant (G); Timid (H); Cautious (I); Yielding (J); Modest (K); Respectful (L); Open (M); Engaged (N); Confident (O); Courageous (P). The octant space can be divided into the following octants: PA, agentic; BC, agentic + uncommunal; DE, uncommunal; FG, unagentic + uncommunal; HI, unagentic; JK, unagentic + communal; LM, communal; and NO, agentic + communal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5784] "Factors: Teacher-student interaction; Student interaction in work groups; Intra-group emotional support; Online collaborative tools; Collaborative learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5785] "Factors: Interest-type epistemic curiosity; Deprivation-type epistemic curiosity; Cognitive fatigue; Perceived learning value of gameplay."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5786] "Subscales: psychodynamic; process-experiential; person-centered; cognitive; behavioral; cognitive-behavioral; dialectical-behavioral; common factors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5787] "Subscales: Behavioral Therapy (BT); Cognitive Therapy (CT); Dialectical-Behavior Therapy (DBT); Interpersonal Therapy (IPT); Person Centered (PC); Psychodynamic (PD); Process-Experiential (PE); Common Factors (CF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5788] "Factors: Each of the CyberVictimization and CyberAggression scales had the same factors: Visual, Falsification, and Exclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5789] "Subscales: Know yourself; Value yourself; Plan; Act; Experience outcomes and learn."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5790] "Factors: Daily-life disturbance; Positive anticipation; Withdrawal; Cyber-space oriented relationship; Overuse; Tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5791] "Subscales: Life Productivity; Psychological Health; Life Outlook; Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5792] "Subscales: Mindful-attentive awareness; Inattention/distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5793] "Factors: Recent pedestrian incidents; Walking habits, challenges, and perceptions; Walking limitation and walking aids; Crossing behaviors; Demographics characteristics; Role in the mobility system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5794] "Subscales: Organizational encouragement; Supervisory encouragement; Work group supports; Sufficient resources; Challenging work; Freedom; Organizational impediments; Workload pressure; Creativity; Productivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5795] "Subscales: Awareness; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5796] "Factors: Impermanence Awareness; Impermanence Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5797] "Factors: Social safety; Education quality; Entry obstacles; Environment; Recommendations; Knowledge of HC; Work and immigration; Meeting new cultures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5798] "Factors: Socioemotionality; Emotion control. Facets: Adaptability; Peer relations; Self-esteem; Emotion expression; Affective disposition; Emotion perception; Low impulsivity; Emotion regulation; Self-motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5799] "Subscales: Functional Health Literacy; Communicative Health Literacy; Health Numeracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5800] "Subscales: Classroom efficiency; Classroom interaction; Classroom environment; Teacher's professional skill; Task orientation; Overall evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5801] "Factors: Commitment (Comm); Closeness (Clos); Complementarity (Comp)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5802] "Subscales: Teamwork; Goal setting; Social skills; Problem solving; Emotional skills; Leadership; Time management; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5803] "Subscales: Rational Choice; Confirmatory; Fast and frugal; Heuristic-based; Go with gut."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5804] "Subscales: Intrinsic Motivation; Extrinsic Motivation; Time Management; Study Dedication; Learning Assessment; General Self-Esteem; Self-Efficacy; Reaction to Failures; Emotional Control; Family Relationships; Fellow Students Relationships; Teachers Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5805] "Factors: Depression sensitivity physical and cognitive concerns (DSPCC); Depression sensitivity social concerns (DSSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5806] "Factors: Dissatisfaction; Symptoms; Demoralization; Dependency; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5807] "Factors: Reputation of HRM system; Consistency; Organisational citizenship behavior; Intention to remain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5808] "Factors: Children identity; View of condition (Basic knowledge cognition; Disease characteristics cognition); Management mindset; Parental mutuality; Parenting philosophy; Management approach (Daily life management; Treatment compliance management; Symptom recognition and processing ability; Ability of the family environment control); Family focus; Future expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5809] "Subscales: Identification with the movement; Identification as an environmentalist; Perceived effectiveness of demonstrations; Self-focused anger; Moral motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5810] "Subscales: Self-awareness; Self-management; Social Awareness; Relationship skills; Responsible decision-making; Academic competence (in Teacher Form only)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5811] "Subscales: Self-Awareness; Self-Management; Social-Awareness; Relationship skills; Responsible decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5812] "Factors: Performance; Trust; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5813] "Subscales: Emotional symptoms; Conduct symptoms; Hyperactivity/inattention; Peer relationship problems; Prosocial behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5814] "Factors: Operational Internet skills; Formal Internet skills; Information Internet skills; Strategic Internet skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5815] "Constructs: Operational Internet skills; Formal Internet skills; Informational Internet skills; Communication Internet skills; Strategic Internet skills; Support sources employed when experiencing Internet skill insufficiencies; Beneficial outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5816] "Subscales: Specific Digital Difficulties (SDD); General Digital Difficulties (GDD); Worries about Future Digital Difficulties (WFDD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5817] "Subscales: Reflective Listening (RL); Responding to Resistance (RR); Summarizing (S); Eliciting Change Talk (ECT); Developing Discrepancy (DD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5818] "Subscales: Effort; Reward; Overcommitment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5819] "Subscales: Effort; Reward; Overcommitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5820] "Factors: Familiarity with high-tech digital tools (Modern); Familiarity with classical digital tools (Traditional); Perceived barriers (Barrier); Computer anxiety (Anxiety); Perceived usefulness (Usefulness); Perceived Ease of Use; Behavioral Intention to Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5821] "Factors: Seeking friends; Seeking convenience; Seeking social support; Seeking information; Seeking entertainment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5822] "Factors: Cognitive motivation; Emotional motivation; Leisure motivation; Herding motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5823] "Factors: Relative (SCOrelative); Opinion (SCOopinion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5824] "Subscales: Working excessively (WE); Working compulsively (WC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5825] "Subscales: General information; Symptoms/diagnosis; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5826] "Subscales: ADHD Background Knowledge; Diagnosis and Symptom Knowledge; Knowledge of Guidelines for Evidence-Based Diagnosis; Knowledge of ADHD-Specific Assessment; Knowledge of Psychosocial Evidence-Based Interventions; Knowledge of School/Academic-Based Evidence-Based Interventions; Knowledge of Medications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5827] "Factors: Intention; Attitudes; Subjective Norms; Perceived Behaviour Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5828] "Subscales: Emotional Expressiveness; Trustworthy; Likeable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5829] "Subscales: Decision-making; Clinical vignettes; Information seeking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5830] "Subscales: Intention to practice; Attitude; Indirect attitude; Subjective norm; Indirect norm; Perceived control; Indirect control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5831] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5832] "Subscales: Executive; Initiation; Emotional (Social Emotional; Individual Emotional)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5833] "Subscales: Global Service Climate; Customer Feedback; Customer Orientation; Managerial Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5834] "Subscales: Travel intentions (TI); Processing fluency (PF); Self-congruity (SC); Gender identity congruity (GIC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5835] "Factors: Mood volatility/excitement; Social vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5836] "Factors: Global Service Climate; Customer Feedback; Customer Orientation; Managerial Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5837] "Factors: Aesthetics; Durability; Ease of use; Features; Performance; Reliability; Serviceability; Materials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5838] "Factors: Negative thoughts about children; Evaluation of divorce; Negative thoughts about the self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5839] "Factors: Preservation; Utilisation. Scales: Enjoyment of nature; Support for interventionist conservation policies; Environmental movement activism; Conservation motivated by anthropocentric concern; Confidence in science and technology; Environmental fragility; Altering nature; Personal conservation behaviour; Human dominance over nature; Human utilization of nature; Ecocentric concern; Support for population growth policies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5840] "Subscales: Nurse Participation in Hospital Affairs; Nursing Foundations for Quality of Care; Nurse Manager Ability, Leadership, and Support of Nurses; Staffing and Resource Adequacy; Collegial Nurse-Physician Relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5841] "Subscales: Positive Rumination; Negative Rumination. Factors: Enjoy Happiness; Positive Coping; Suppress Happiness; Self Deny; Negative Attribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5842] "Subscales: Affective; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5843] "Subscales: Intrinsic motivation; Self-efficacy; Self‐determination; Grade motivation; Career motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5844] "Subscales: Uniqueness; Expensiveness; Symbolic meaning; Arbitrary desire; Belonging to an exclusive minority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5845] "Subscales: Youth; Elders; Sense of community; Language and culture; Communication; Leadership (Native language tribe only); Women (English language tribe only)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5846] "Subscales: Emotional; Biophysiological; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5847] "Factors: Confirmation; Perceived usefulness; Satisfaction; Referent network size; Perceived complementarity; Flow; Continuance intention; Word of mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5848] "Factors: Challenge-focused encouragement (C); Potential-focused encouragement (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5849] "Factors: Uses aggression; Contributing factors; Seriousness; Frequency of aggression; Fear of retaliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5850] "Factors: General adjustment; Interaction adjustment; Work adjustment, Regulatory focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5851] "Subscales: Symptom (MFN-S); Impairment (MFN-I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5852] "Factors: Neglect and assault (N&A); Discrimination and exploitation (D&E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5853] "Subscales: General Time Consuming Media; Attention to AMV-Related Media; Time Consuming AMV-Related Media; Anxious Emotions; Other Negative Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5854] "Model Constructs: Exposure to ads; Dreams of ads; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5855] "Subscales: Good affection (GA); Family role norms (FRN); Balance of interests (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5856] "Factors: Preference; Tolerance; Aversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5857] "Subscales: Patient Care; Safety; Professional Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5858] "Subscales: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5859] "Subscales: Prisoner relationships; Staff-prisoner relationships; Procedural justice; Safety; Satisfaction with visits; Satisfaction with frequency of contact; Sleep quality; Quality of care; Shop quality; Settlement of complaints; Satisfaction with activities; Availability of meaningful activities; Reintegration; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5860] "Factors: Developmental Support; Task Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5861] "Subscales: Absolute centrality of work; Relative centrality of work and work valence; Purposes of work; General expectations regarding working life; Obligations and duties of employers and society to workers; Obligations and duties of workers to employers and society; Representations of decent work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5862] "Subscales: Pedagogical atmosphere on the ward; Leadership style of the ward manager; Premises of nursing on the ward; Supervisory relationship; Role of the nurse teacher."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5863] "Subscales: Emergency help; Monetary/emotional help; Social responsibility; Common help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5864] "Factors: Congruity; Utilitarian; Music appeal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5865] "Domains: Conventional crime; Caregiver victimization; Peer and sibling victimization; Sexual victimization; Witnessing and indirect victimization; Electronic victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5866] "Constructs: Optimism; Innovativeness; Discomfort; Insecurity; Adoption; Usefulness; Ease of Use; Attitude; Continuance intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5867] "Factors: System trust; Socio-cultural influence; Perceived risk; Hedonic benefits/perceived enjoyment; Perceived ease of use; Perceived usefulness of mobile payments; Attitude toward mobile payment; Mobile payment behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5868] "Subscales: Ventral; Superior temporal sulcus; Dorsal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5869] "Subscales: Social well-being; Psychological well-being; Emotional well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5870] "Factors: Personalized Need for Power; Socialized Need for Power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5871] "Subscales: Economic; Cultural; Political."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5872] "Subscales: Coping by self (CI-ALS-2 [self]); Coping with others CI-ALS–9 (others)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5873] "Subscales: Social isolation; Risk of COVID-19 infection; Financial difficulties; Relationship difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5874] "Subscales: Derealization; Depersonalization; Amnesia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5875] "Factors: Death of a child-spouse; Death of a loved one; Conflict with a family member or loved one."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5876] "Factors: Knowledge; Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5877] "Factors: Reliability Trust; Honesty Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5878] "Subscales: Stereotype awareness; Stereotype agreement; Stereotype self-concurrence/Application; Harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5879] "Subscales: Emotional Support; Family and Personal Support; Instrumental Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5880] "Constructs: Training needs analysis; Training realization and application; Training evaluation; Training transfer; Learning culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5881] "Factors: Internal psychological career mobility; External psychological career mobility; Self-directed career management; Person-job fit; Career satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5882] "Factors: Performance expectancy; Effort expectancy; Social influence; Facilitating conditions; Hedonic motivation; Price value; Behavioral intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5883] "Factors: Throwing; Running; Catching; Hopping; Kicking; Leaping; Bouncing; Jumping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5884] "Subscales: Hopelessness; Interpersonal Needs; Anxiety Sensitivity; Posttraumatic Stress Disorder; Alcohol Use Disorder; Insomnia Severity; Drug Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5885] "Subscales: Academic satisfaction (AS); Perceived performance weight-research (PPW-R); Perceived performance weight-teaching (PPW-T); Perceived performance weight-service (PPW-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5886] "Components: Tolerance of cheating behavior; Belief in cheating; Status of the cheating culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5887] "Subscales: Phonology; Semantics; Morphosyntax."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5888] "Subscales: Quality; Value; Innovativeness; Popularity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5889] "Factors: Contribution to Self; Contribution to Family; Contribution to Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5890] "Subscales: Event image; Spectator satisfaction; Behavioral intentions to the event; Behavioral intentions to event sponsors' product."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5891] "Subscales: CKM: knowledge from customers; CKM: knowledge about customer; CKM: knowledge for customer; Perceived service quality: physical environment; Perceived service quality: interaction quality; Perceived service quality: outcome quality; Psychological involvement: pleasure; Psychological involvement: centrality; Psychological involvement: sign; Cognitive loyalty; Affective loyalty; Conative loyalty; Action loyalty (behavioral)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5892] "Subscales: Prescription Opioid Misuse; Risky Non-Injection Use; Injection Drug Use; Concurrent Opioid and Benzodiazepine Use; Concurrent Opioid and Alcohol Use; Multiple-Drug Polysubstance Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5893] "Subscales: Delay discounting scale; Probability discounting scale; Effort discounting scale; 4. Social discounting scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5894] "Subscales: Delay Discounting; Probabilistic Discounting; Effort Discounting; Social Discounting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5895] "Subscales: (a) sensitivity; (b) encouragement of exploration; (c) compulsive caregiving; and (d) avoidance of uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5896] "Subscales: Cognitions about the self; Cognitions about the world; Blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5897] "Factors: The measurement questions included three dimensions: Pressure responses (Stress susceptibility (SS); Stress adjustment (SA)); Risk cognition (Cognition of danger (CD); Cognition of illness (CI)); Stress reactions (Emotional responses (ER); Somatic responses (SR))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5898] "Factors: Behavioral aspects of LOC-eating; Cognitive/dissociative aspects of LOC-eating; Positive/Euphoric aspects of LOC-eating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5899] "Factors: Human capital; Structural capital; Relational capital; Innovation speed; Innovation quality; Operational performance; Financial performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5900] "Factors: Perceived employer promises; Perceived employee promises; Acquisition of organizational information; Institutionalization of socialization tactics; Supervisors’ relational behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5901] "Factors: Organizational deviance; Interpersonal deviance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5902] "Factors: Natural; Normal; Necessary; Nice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5903] "Factors: Exhaustion (EXHAUST); Detachment (DETACH); Powerlessness (POW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5904] "Components: Social distancing; Personal hygiene; Leaving/food; Leaving/exercise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5905] "Factors: Perceiving emotions in faces; Perceiving emotions in pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5906] "Factors: Experience seeking; Boredom susceptibility; Thrill and adventure seeking; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5907] "Subscales: Innate; Social; Interactive; Reflective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5908] "Subscales: Attitudes; Subjective norms; Self-efficacy; Controllability; Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5909] "Subscales: Self-criticizing; Catastrophizing; Demandingness; Frustration Intolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5910] "Factors: Eating for Physical Rather Than Emotional Reasons (EPR); Unconditional Permission to Eat (UPE); Reliance on Hunger and Satiety Cues (RHSC); Body-Food Choice Congruence (BFCC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5911] "Subscales: Low-Achieving/Undesirable Culture; Sexualization; Invisibility; Environmental Invalidations; Criminality; Foreigner/Not Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5912] "Subscales: Presence; Searching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5913] "Factors: Family (FA); Friends (FR); Significant Other (SO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5914] "Factors: Family Empowerment; Community Empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5915] "Factors: Preoccupation with smartphone (Preoc); Daily-life disturbance (DDis); Positive anticipation (PosA); Cyberspace-oriented relationship (CyRel); Overuse (OverU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5916] "Subscales: Human-related contamination; Animal-related contamination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5917] "Subscales: Positive emotions (P); Engagement (E); Relationships (R); Meaning (M); Accomplishment (A)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5918] "Factors: Negative cognition; Negative affect/avoidance; Negative affect/aggression"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5919] "Constructs: Web Page Order; Web Page Order; Visual Appeal; Engagement; Intention to Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5920] "Factors: Simplicity and certainty of social media-based knowledge (SCK); Source of knowledge (SK); Justification for knowing (JK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5921] "Factors: Knowledge (Nutrition; Healthy meal preparation; Healthy food options); Attitude (Attitude towards cooking and healthy food; Attitude towards healthy snacks; Outcome expectations for healthy meal preparation); Practice (Practices of healthy meal preparation; Practices of added sugar consumption); Self-efficacy (Healthy meal preparation and food choice; Healthy meal preparation (vegetable related))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5922] "Constructs: Individual Market Orientation; Selling Orientation; Customer Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5923] "Subscales: Frequency of thoughts; Belief in these thoughts; Anxiety associated with negative thoughts and beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5924] "Subscales: How frequently you have these thoughts; How much you believe these thoughts; How anxious these thoughts make you feel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5925] "Subscales: General market orientation; Intelligence generation; Dissemination and responsiveness; Marketing informant; Nonmarketing informant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5926] "Subscales: Low literacy; Inactive use; Low responsiveness; Lack of consideration; Low group activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5927] "Subscales: Impact of fatigue; Signs and direct consequences of fatigue; Mental fatigue; Physical fatigue; Coping with fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5928] "Constructs: Emotional Labor: Positive Display Requirements; Psychological Power: Perceived Customer Power; Sexual Harassment: Sexual Hostility and Unwanted Sexual Attention; Psychological Power: Sense of Power; Psychological Power: Associations with Power; Sexual Harassment: Unwanted Sexual Attention; Employee Attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5929] "Dimensions: Computer Science Concepts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5930] "Subscales: Ecological knowledge; Hope; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5931] "Component: Anxiety; Confidence about physics terminology and physics course."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5932] "Factors: Attitude (general); Cognition (bifactor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5933] "Subscales: Multicultural Ability (MAb); Multicultural Knowledge (MK); Multicultural Awareness (MAw)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5934] "Factors: Intention to continue use; Attitude; Satisfaction; Ease of use; Usefulness; Confirmation; Playfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5935] "Subscales: Emotional; Physical; Neglect; Non-violent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5936] "Subscales: Emotional; Physical; Neglect; Non-violent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5937] "Subscales: Emotional violence; Physical violence; Nonviolent discipline methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5938] "Subscales: Emotional violence; Physical violence; Nonviolent discipline methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5939] "Factors: Knowledge of hardware; Knowledge of general software; Knowledge of Mathematical software; Knowledge of online tools."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5940] "Subscales: Religiosity; Group centrism; Intergroup forgiveness; Reconciliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5941] "Factors: Lack of tolerance toward others; Desire to have control over others; Dependent self-worth; Religious intolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5942] "Factors: Uncontrollability; Harm; Social consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5943] "Subscales: Fear; Anger; Sadness; Loneliness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5944] "Factors: Intergroup Dependence; Mutual rippling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5945] "Subscales: Direct Extreme Experiences (dEX²); Indirect Extreme Experiences (iEX²)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5946] "Subscales: Instrumentality (INS); Anxiety (ANX); Comfort (COM); and Digital literacy (DIG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5947] "Subscales: Fear of Death; Death Avoidance; Neutral Acceptance; Escape Acceptance; Approach Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5948] "Subscales: Humanity; Optimism; Leadership; Creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5949] "Subscales: Technical competence; Visibility awareness competence; Knowledge competence; Impact assessment competence; Social media communication competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5950] "Subscales: Attribution-independent (AI) emotions; External-attribution-dependent (EAD) emotions; Internal-attribution-dependent (IAD) emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5951] "Subscales: Technical competence; Visibility awareness competence; Knowledge competence; Impact assessment competence; Social media communication competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5952] "Factors: Unsettled state of mind; Regulation difficulties; Smartphone incentives; Need for approval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5953] "Subscales: Character Strength; Ethical Awareness; Moral Judgment Skills; Willingness to Do Good."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5954] "Factors: Navigating Multiple Heritages Socialization; Multiracial Identity Socialization; Preparation for Monoracism Socialization; Negative Socialization; Race-Conscious Socialization; Colorblind Socialization; Diversity Appreciation Socialization; Silent Socialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5955] "Subscales; Death of self; Dying of self; Death of others; Dying of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5956] "Subscales: Sunscreen Toxicity; Seasonal Effects; Health Benefits of Tanning; Tanning Through the Winter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5957] "Factors: Environmental; Ethical; Legal; Social/Philanthropic; Financial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5958] "Factors: Human resource factors; Customer delight; Surprise; Customer loyalty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5959] "Subscales: Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5960] "Factors: Customer satisfaction; Hospitality performance; Preservational values; Recreational values; Relational values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5961] "Factors: Consumer hope; Consumer goal attainment; Consumer repurchase intentions; Online information disclosure; Product knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5962] "Factors: Attitude; Subjective norms; Perceived behavioral control; Social image; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5963] "Subscales: SRT-fluency-self-anger; SRT-fluency-other-anger; SRT-fluency-fear; SRT-flexibility-self-anger; SRT-flexibility-other-anger; SRT-flexibility-fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5964] "Factors: Sexual body-esteem; Sexual entitlement-self; Sexual entitlement-partner; Sexual self-efficacy; Sexual self-reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5965] "Subscales: Major depressive disorder (MDD); Generalized anxiety disorder (GAD); Social anxiety disorder (SAD); Panic disorder; Post-traumatic stress disorder (PTSD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5966] "Factors: Foreign Admiration; Domestic Rejection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5967] "Subscales: Physical; Affective; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5968] "Factors: Leader humility; Customer knowledge; Adaptive self-efficacy; Customer-oriented harmonious passion; Salespeople's adaptive selling; Sales managers’ adaptive selling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5969] "Subscales: Knowledge and Theory; Communication and Cooperation; Value and Ethics; Planning and Assessment; Case Work Skills; Group Work Skills; Community Work Skills; Research and Development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5970] "Subscales: Anticipated regret; Attitude; Descriptive norm; Donation anxiety; Intentions; Moral norm; Religious norm; Pro-social behavior; Self-efficacy; Self-identity; Subjective norm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5971] "Subscales: Joy in Practice; Personal Growth; Leadership and Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5972] "Factors: Inner passion of the teacher, efforts to develop the pupil overall; Social aspects of teaching; Relationship to authority; Existence and rules keeping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5973] "Subscales: Teacher Level Barrier; School Level Barrier; Curriculum Level Barrier; Student Level Barrier."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5974] "Subscales: Self-Regulation; Fantasy; Task Engagement; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5975] "Subscales: use of official and commercial sources; use of personal sources; use of electronic media sources; trust in commercial sources; trust in electronic media sources; trust in personal sources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5976] "Factors: Performative Reputation; Moral Reputation; Legal-Procedural Reputation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5977] "Subscales: Social/community inclusion; Family attachment and supports; Spirituality; National and cultural identity; Personal competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5978] "Subscales: Parental Monitoring; Parent-Child Social Connectedness; Best Friend Relationship; Religiosity; Neighborhood and Community Relations; Self-esteem; Family Rituals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5979] "Subscales: Financial Stress; Depression; Substance Use; Legal Trouble; Parental Separation or Divorce; Interparental Conflict; Physical Abuse; Emotional Abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5980] "Factors: Innovativeness; Face consciousness; Need for uniqueness; Ambiguity intolerance; Hedonic value; Utilitarian value; Continuance intention to use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5981] "Subscales: Utilitarian motives; Retributive motives; Restorative motives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5982] "Factors: Visual attraction; Usability; Understanding; Perceived usefulness; Behavioral changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5983] "Subscales: Sexual Abuse; Physical Abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5984] "Factors: Sensorial; Emotional; Behavioral; Intellectual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5985] "Subscales: Firm-created social media content; User-generated social media content; Brand attitude; Event attitude; Intention to participate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5986] "Subscales: Neighborhood care; Neighborhood attachment; Place identity; Social norms; Support for measures; Residential satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5987] "Factors: Abstract Actions; Concrete Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5988] "Subscales: Detailed pandemic information; Positive risk communication; Rumor refutation; Supplies; Perceived efficacy; Positive emotions; Risk perception; Preventive; Avoidant; Management of illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5989] "Subscales: Motivation-as-Valuing; Behavioral Norms of Forgiveness; Proclamation; Promise; Behavioral Gestures of Good Will; Establishment of Social Structures; Educational Initiatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5990] "Subscales: Support and Impact; Lifestyle; Emotional Health and Wellbeing; Self-care; Financial Wellbeing; Jobs and careers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5991] "Subscales: Research oriented; Work role; Diagnostic functions; Managing situations; Patient education; Mentoring functions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5992] "Factors: Spirituality; Spiritual care; Religiosity; Personalized care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5993] "Factors: Assessment and implementation of spiritual care; Professionalization and improving the quality of spiritual care; Personal support and patient counselling; Referral to professionals; Attitude towards patient's spirituality; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5994] "Factors: Comprehension; Application; Numeracy; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5995] "Effort Factors: Workload; Social responsibility; Emotional demands; Student-related emotional demands. Reward Factors: Emotional reward; Material reward."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5996] "Factors: Behavior factor; Mind factor; Social Presentation factor. Social Information Processing; Social Presentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5997] "Subscales: Ease-of-Use (EoU); Functionality (F); Aesthetics (A); Symbolism (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5998] "Factors: Vivid Visual Imagery; Soothing Visual Imagery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5999] "Subscales: Flow; Movement; Force; Interior; Wandering"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6000] "Subscales: Understanding selling intent; Understanding persuasive intent; Understanding persuasive tactics; Advertising skepticism; Advertising disliking; Motivation to use coping strategies; Ability to use coping strategies; Use of coping strategies; Advertised product desire; Advertised product choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6001] "Factors: Honesty-Humility (H); Emotionality (E); eXtraversion (X); Agreeableness (A); Conscientiousness (C); Openness-to-Experience (O)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6002] "Subscales: Severity; Valence; Arousal; Dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6003] "Subscales: Emotional control effort in profession; Patient-focused emotional suppression; Emotional pretence by norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6004] "Subscales: Simple reaction time (SRT) task; Go/No-Go (GNG) task; Four-position reaction time (4PRT) task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6005] "Subscales: Vulnerable Child; Angry Child; Enraged Child; Impulsive Child; Undisciplined Child; Happy Child; Compliant Surrender; Detached Protector; Detached Self-Soother; Self-Aggrandizer; Bully and Attack; Punitive Parent; Demanding Parent; Healthy Adult."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6006] "Subscales: Deflated; Somatic; Religion; Crying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6007] "Factors: Integrating; Dominating; Avoiding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6008] "Factors: Motivation to Foster New Social Connections (New); Motivation to Foster Existing Social Connections (Existing)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6009] "Factors: Individualizing Moral Foundations; Blame Attributions; Anger; Boycott Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6010] "Subscales: Behavioral Intention; Performance Expectancy; Effort Expectancy; Social Influence; Facilitating Conditions; Perceived Risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6011] "Factors: Negative integration (NI); Positive integration (PI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6012] "Subscales: Gender sensitivity (GS); Gender-role ideology towards patients (GRI-patient); Gender-role ideology towards doctors (GRI-doctor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6013] "Subscales: Gender sensitivity; Gender-role ideologies towards patients; Gender-role ideologies towards doctors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6014] "Subscales: Perspective Taking; Compassionate Care; Standing in the Patient’s Shoes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6015] "Factors: Youth aggression; Youth emotional distress; Youths’ exposure to verbal conflict between the mother and her intimate partner; Neighborhood violence; Youth attachment with teachers/school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6016] "Factors: Hostile sexism; Benevolent sexism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6017] "Subscales: Hostility toward Men; Benevolence toward Men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6018] "Subscales: Knowledge of action possibilities; Confidence in one's own influence; Willingness to act."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6019] "Factors: Self-efficacy for interactions; Self-efficacy for information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6020] "Indicators: Emphasizing success; De-emphasizing success; Emphasizing failure; De-emphasizing failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6021] "Indicators: Failure-oriented responses; Success-oriented responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6022] "Scales: Self-improvement goals; Self-worth goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6023] "Factors: Informal supports; Avoidance; Self-help; Professional help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6024] "Subscales: Traditional Beliefs about Gender (TBG); Traditional Beliefs about Gender Identity (TBI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6025] "Subscales: Social support (SUP); Social skills (SKL); Planning and prioritizing behavior (PLN); Goal efficacy (GE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6026] "Subscales: Dependence; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6027] "Factors: Behaviors in clinical situation; Knowledge and skills; Emotional response; Responsibility of healthcare professionals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6028] "Scales: Inter-firm market orientation (IFMO) (IFMO: Intelligence Generation; IFMO: Intelligence Dissemination; IFMO: Responsiveness); Brand orientation (BO); Business performance (Financial performance; Marketing performance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6029] "Subscales: Parental verbal abuse (PVA); Parental non-verbal emotional abuse (PNEVA); Parental physical maltreatment (PPA); Emotional neglect (EN); Physical neglect (PN); Witnessing interpersonal violence to parents (WITP); Witnessing violence to siblings (WITS); Peer verbal/emotional abuse (PEERE); Peer physical bullying (PEERP); Sexual abuse (familial and extra-familial (SEXA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6030] "Subscales: Likelihood of Illness; Awfulness of Illness; Difficulty Coping with Illness; Medical Services Inadequacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6031] "Subscales: Likelihood of illness (CHCQ-L,); Awfulness of illness (CHCQ-A); Difficulty coping with illness (CHCQ-C); Medical services inadequacy (CHCQ-M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6032] "Factors: Vulgar/Immoral; Embracing Metal Culture/Fun; Human Experience; History/Myths/Nature; Science and Science Fiction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6033] "Factors: Facebook Intensity; Online Connection Strategies; Relationship Maintenance Behaviors; Maintaining Connection Strategies; Offline Connection Strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6034] "Factors: Current life/culture; Close relationships; Goals and plans."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6035] "Subscales: Anger/Frustration (Frustration); Behavioral Inhibition (Inhibition); Attentional Persistence (Attention)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6036] "Factors: Bridging social capital; Bonding social capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6037] "Factors: Monotheism; Atheism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6038] "Subscales: Value of Intelligence in Men's/Women's Lives; Value of Attractiveness in Men's/Women's Lives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6039] "Subscales: Emotional Eating (DEBQ Em); External Eating (DEBQ Ex); Restrained Eating (DEBQ Re)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6040] "Factors: Concern over Mistakes (CM); Doubts about Actions (DAA); Parental Expectations (PE); Parental Criticism (PC); Personal Standards (PS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6041] "Factors: Well-being; Self-control; Emotionality; Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6042] "Factors: Problem-focused regret coping (PF); Maladaptive regret coping (Emotion-focused regret coping A; EFA); Adaptive regret coping (Emotion-focused regret coping B; EFB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6043] "Factors: Positive Parenting; Ineffective Parenting; Poor Monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6044] "Subscales: Norms Against Youth Substance Use-Normal to Use; Norms Against Youth Substance Use-Wrong to Use; Community Support for Prevention; Openness to Change; Cohesion; Conflict Resolution; Effective Leadership; Shared Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6045] "Subscales: Evoking behaviour(s); Care taking procedures; Reading and managing emotional cues; Reading and managing bodily cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6046] "Subscales: Self-attributed supportive dyadic coping; Partner-attributed supportive dyadic coping; Self-attributed delegated dyadic coping; Partner-attributed delegated dyadic coping; Self-attributed negative dyadic coping; Partner-attributed negative dyadic coping; Problem-solving common dyadic coping; Emotionally-supporting common dyadic coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6047] "Factors: Negative; Stress Communication; Taken over; Supportive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6048] "Subscales: Positive emotions; Engagement; Relationship; Meaning; Accomplishment; Overall wellbeing; Negative emotions; Physical health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6049] "Factors: Personal awareness; Contextual awareness; Professional awareness; Conscientious awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6050] "Subscales: Authors & audiences; Messages & meaning; Representation & reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6051] "Factors: Negative Metacognitions about Uncontrollability of Online Gaming (N-MOGU); Negative Metacognitions about Dangers of Online Gaming (N-MOGD); Positive Metacognitions about Online Gaming (PMOG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6052] "Subscales: Objective Caregiver Strain (OCGS); Internalized Subjective Caregiver Strain (ISCGS); Externalized Subjective Caregiver Strain (ESCGS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6053] "Factors: Exchanging information; Relationship with the nurse; Making decisions; Attention to emotions; Enabling patient self-management; Dealing with uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6054] "Subscales: Striving for perfection during competitions; Negative reactions to imperfection during competitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6055] "Factors: Organizational culture and awareness of policy and procedures; Confidence to act; Attitudes to prevention and agency of children/young people; Situational prevention knowledge and education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6056] "Factors: Cardiorespiratory; Musculoskeletal; Psychological; Gastrointestinal; General; Body balance; Globus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6057] "Domains: Autonomy; Occupational Functioning; Cognitive functioning; Financial Issues; Interpersonal relationships: Leisure Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6058] "Factors: Caring for parents; Familial entirety; Familial aspiration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6059] "Factors: C-Participation in school; G-Advocacy activities; A-Life at home; B-Community and neighborhood; D-School learning; E-Health and safety; F-Social skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6060] "Subscales: Sport team; Environment; Socialization; Personal identity; Group identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6061] "Subscales: Perceived overqualification; Organizational identification; Job crafting (JC) towards strengths; Job crafting towards interests; Vitality; Task performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6062] "Factors: Balance (Involvement; Effectiveness; Affective); Global Balance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6063] "Subscales: Place identity; Place dependence; Feeling welcomed; Emotional closeness; Sympathetic understanding; Affinity; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6064] "Subscales: Extensions of Self (ES); Self-Confidence (SC); Individuality (I); Connections to Others (CO); Responsibility to Others (RO); Sharing with Others (SO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6065] "Subscales: Inattention/Memory Problems; Hyperactivity/Restlessness; Impulsivity/Emotional Lability; Problems with Self‐Concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6066] "Subscales: Comfort; Social Life; Usability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6067] "Factors: Performance Creativity (Perform); Mechanical/Scientific Creativity (Science); Artistic Creativity (Art); Self-Everyday Creativity (Every); Scholarly Creativity (Scholar)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6068] "Factors: Perception of competent subordinates; Feeling insecure about competent subordinates; Feeling ostracized by the managers; Negative gossip about the managers; Commitment toward the managers; Self-rated empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6069] "Subscales: Perceiving; Facilitating; Understanding; Managing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6070] "Dimensions: Work friendships; Nonwork friendships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6071] "Factors: Compatibility (Co); Trialability (Tr); Observability (Ob); Perceived Work-related threats (WRT); Perceived Usefulness (PU); Perceived Ease of Use (PEOU); Behavioural Intention to Use (BITU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6072] "Factors: Remote injunctive social norms; Online descriptive social norms; Remote descriptive social norms; Online injunctive social norms; Co-present injunctive social norms – blame; Co-present injunctive social norms – advice; Co-present descriptive social norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6073] "Subscales: Efficacy; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6074] "Factors: Relational Norms (RN) (Second-order factor); Flexibility Norms (FN); Information Exchange Norms (IEN); Solidarity Norms (SN); Calculative Commitment (CC); Affective Commitment (AC); Opportunistic Behavior (OB); Collaborative Innovation (CI); Substitutability (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6075] "Factors: Belongingness (Overarching Factor); Companionships; Affiliations; Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6076] "Constructs: Shadow IT usage; Social presence; Individual performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6077] "Subscales: Safety Knowledge; Safety Compliance; Safety Motivation; Safety Participation; Safety Training; Job Stress; Self Esteem; Social Support; Fatigue; Personal Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6078] "Factors: Persecutory ideation (PI); Bizarre experiences (BEs); Perceptual abnormalities (PAs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6079] "Subscales: Relabel symptoms; Awareness of illness; Need for treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6080] "Subscales: Happiness; Sadness; Anger; Disgust; Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6081] "Factors: Interaction engagement; Respect for cultural difference; Interaction confidence; Interaction enjoyment; Interaction attentiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6082] "Factors: Threat and fear; Understanding and support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6083] "Factors: Denial of Prejudice; Affirmation of Differences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6084] "Subscales: Incidental contacts; Social/financial contacts; Dual-relationship contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6085] "Subscales: Voice Dominance; Voice Intrusiveness; Hearer Dependence; Hearer Distance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6086] "Subscales: Effective nonviolent; Physically aggressive; Relationally aggressive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6087] "Scales: Perceived benefit; Perceived barrier; Perceived self-efficacy; Competence in communication regarding Condom Use; Intimacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6088] "Factors: Caregiver-related risk factors; Child-related risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6089] "Subscales: Self-efficacy; Organization-based self-esteem; Satisfaction with life; Physical engagement; Emotional engagement; Cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6090] "Subscales: Perceptual abnormalities; Bizarre experiences; Persecutory ideation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6091] "Factors: COVID Danger and contamination; COVID Socioeconomic consequences; COVID Xenophobia; COVID Traumatic stress symptoms; COVID Compulsive checking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6092] "Factors: Positive symptoms; Negative symptoms; Depressive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6093] "Subscales: Customer orientation; Competitor orientation; Interfunctional coordination; Knowledge exchange; Knowledge combination; Environmental management system implementation; Corporate environmental performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6094] "Factors: Cognitive-Perceptual Deficits; Interpersonal Deficits; Disorganized/Oddness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6095] "Subscales: Continuous improvement and renewal (CI); Openness and action orientation (OAO); Management quality (MQ); Employee quality (EQ); Long-term orientation (LTO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6096] "Subscales: Perceptions of uncivil/harmful comments; Willingness to engage in corrective action; Paying attention toward potentially uncivil discussions; Construing the situation as an emergency; Feeling responsible; Feeling able to intervene; Costs and benefits of intervening; Collective social identity; Group efficacy; Collective benefits; Knowledge of the rules and formal structure of #ibh."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6097] "Factors: Social harm; Conspiracy; Physical threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6098] "Factors: Drinking behaviors (DB); Parental intervention (PI); Low self-control (LSC); Accessibility of drinking (OPP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6099] "Factors: Evaluation of self; Regression; Enhancement of kinship; Social interaction; Destination pull factors; Cultural pull factors; Escape for travel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6100] "Factors: Abusive supervision; Power distance orientation; Job satisfaction; Mental health problems; Physical health problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6101] "Dimensions: Workplace Spirituality; Organizational Commitment; Competitive Advantage. Constructs: Meaningfulness; Solidarity; Compliance to values of organization; Affective commitment; Continuance commitment; Occupational commitment; Unique merits; Stability; Maintainability; Opportunism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6102] "Factors: Knowledge self-efficacy; Extrinsic rewards; Intrinsic rewards; Product innovation; Process innovation; Management innovation; Knowledge sharing behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6103] "Factors: Social media use for vertical communication (SMUVC); Social media use for horizontal communication (SMUHC); Leader-member exchange (LMX); Team-member exchange (TMX); Task complexity (TC); Employee performance (EP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6104] "Constructs: Communication Functions; Collaboration Functions; Ganqing; Xinren; Project Commitment; Explicit Knowledge Sharing; Tacit Knowledge Sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6105] "Factors: Medical Tasks; Instrumental Daily Tasks; Retrieval-Based Tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6106] "Factors: Satisfaction with outcomes (SOs); Satisfaction with processes (SPs); Social self-regulated learning (SSRL); Lead userness (LU); Learning goal orientation (LGO); Social influence (SI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6107] "Constructs: Dialogue support; Primary task support; Perceived Credibility; Social support; Perceived Competence; Continuance Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6108] "Subscales: Support/Guidance; Inspiration/Modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6109] "Subscales: Transition; Action; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6110] "Subscales: Active engagement; Perceptual abilities; Musical training; Singing abilities; Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6111] "Subscales: Knowledge Related to COVID-19; Attitude towards COVID-19; Risk perception related to COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6112] "Factors: Perceived security; Security risk; Intention; Attitude; Perceived knowledge; Perceived usefulness; Trust; Subjective norm; Perceived behavioral control; Perceived ease of use; Government credibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6113] "Factors: [Knowledge and Attitudes domain] Knowledge; Personal Attitudes; Attitudes towards patient-healthcare provider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6114] "Subscales: Vigor; Absorption; Dedication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6115] "Factors: Performance expectancy (PE); Effort expectancy (EE); Social influence (SI); Facilitating condition (FC); Price value (PV); Hedonic motivation (HM); Perceived vulnerability (VUL); Perceived severity (PS); Behavioural intention (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6116] "Factors: Avoid femininity and be straight; Be self-reliant and persevere; Be tough and dominant; Sex is important; Be self-reliant through mechanical skills; Rigid expectations; Restrict emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6117] "Factors: Perceived landscape (PB); Restorative experience (RES); Health perception (HP); Dispositional optimism (OPT). Variables: Physical landscape; Social landscape; Symbolic landscape; Current health perception; Health outlook; Specific physical health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6118] "Subscales: Counseling; Research; Supervision and Training; Teaching and Training; Administration; Consultation; Writing and Editing; Professional Development (this subscale was added later, not included in original CPTI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6119] "Factors: Access to information; Reading; Understanding; Appraisal; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6120] "Subscales: Smoking susceptibility; Attitude toward smoking; Media messages about smoking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6121] "Factors: Intention; Attitude; Subjective norm; Perceived behavioral control to identify; Intervene to address drug-related problems; Perceived moral obligation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6122] "Factors: Clan Culture; Adhocracy Culture; Hierarchy Culture; Market Culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6123] "Factors: Alert/Cognition; Mood; Sleepiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6124] "Subscales [Factors]: Social Support [Parental support; Peer support]; Physical Environment [Accessibility of public recreation facilities; Accessibility of private sport providers; Convenience; Safety]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6125] "Factors: PREPS-Preparedness; PREPS-Infection; PREPS-Positive Appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6126] "Subscales: Skills; Knowledge; Self-Efficacy; Expectation beliefs; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6127] "Domains: Foundations of gender-affirming care; Health disparities and the specific needs of transgender patients; Hormone treatments for transgender patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6128] "Subscales: Treatment; Communication; End-of-Life Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6129] "Factors: Withdrawal symptoms; Mood modification; Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6130] "Factors: Socializing; Belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6131] "Subscales: Nutrition; Physical activity; Self-monitoring of blood glucose; Foot care; Smoking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6132] "Subscales: Male Body Shape Scale; Female Body Shape Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6133] "Factors/Subscales: Isolation from Community (IC); Work from Home (WH); Family Contact (FC); and Protective Behaviors (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6134] "Scales: Personal and environmental affecting dietary fat intake behavior (Motivation (Outcome Expectancies); Positive Social Support; Negative Social Support); Personal factors affecting physical activity (Motivation (Outcome Expectancies); Benefits (Outcome Expectancies); Emotional Coping Response; Negative Mood Self-efficacy; Situational Self-efficacy); Environmental factors affecting physical activity (Accessibility (Physical Environment); Positive Social Support; Barriers (Situations)); Physical factors affecting stress management (Motivation (Outcome Expectancies); Benefits (Outcome Expectancies); Positive Emotional Coping; Negative Emotional Coping; Self-efficacy); Environmental factors affecting stress management (Accessibility (Physical Environment); Social Support; Barriers (Situation))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6135] "Factors: Perceived product attributes (PA); Perceived risk (PR); Risk averseness (RA); Price quality inference (PQ); Awareness of societal consequences (ASC); Subjective norms (SN); Affordability-related perceptions (AF); Availability-related perceptions (AV); Accessibility-related perceptions (AC); Behavioral intention (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6136] "Domains: Nutrition; Social Support; Health Responsibility; Life Appreciation; Exercise; Stress Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6137] "Factors: Lifetime Perpetrator Physical & Psychological Violence (not partner or work); Childhood Target Physical & Psychological Peer/Team Violence; Lifetime Perpetrator Sexual Violence; Adult Target Psychological Violence Work, Messaging, Stalking; Childhood Target Sexual Violence; Adult Target and Perpetrator Violence related to Nature of Work or Civil/Political Unrest; Lifetime Target Physical and Psychological Dating/Partner Violence; Lifetime Target Family Physical Violence; Lifetime Perpetrator Stalking and Messaging; Adult Perpetrator Psychological Workplace Violence; Lifetime Perpetrator Physical Dating/Partner Violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6138] "Constructs: Body functions; Activities; Participation; Environmental factors; Personal factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6139] "Subscales: Sending sexts to a boyfriend/girlfriend (SF); Sending sexts to someone known in person (SK); Sending sexts to someone known only on the internet (SI); Posting or live-streaming pictographic content (PS); Asking for sexts from a boyfriend/girlfriend (AF); Asking for sexts from someone known in person (AK); Asking for sexts from someone known only on the internet (AI); Receiving sexts (R); Refusing to send a requested sext (RS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6140] "Factors: Self-efficacy of Community Network; Self-efficacy of Neighborhood Watch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6141] "Factors: The cognition of factitious factors of haze formation; The cognition of natural factors of haze formation; The cognition of haze harmful effects on the human body; The cognition of haze health protection measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6142] "Factors: Mood management; Behavioral preoccupation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6143] "The scale is unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6144] "Factors: Physical power; Social power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6145] "Factors: Visual Discomfort (VD); Head Discomfort (HD); Musculoskeletal Discomfort: Limb Pain (LP); Musculoskeletal Discomfort: NSB Pain (NSBP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6146] "Subscales: Materialism; Proactive financial coping; Green buying; Reduced consumption; Financial satisfaction; Life satisfaction; Psychological distress; Financial strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6147] "Factors: Positive Attitudes; Negative Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6148] "Factors: Biomedical (BM); Biopsychosocial (BPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6149] "Factors: Avoidance; Problem-Solving; Emotional Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6150] "Subscales: Household; Family; Friends; Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6151] "Subscales: Support from Partner/Family Live With; Support from Family Outside the Home; Support from Friends; Support from Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6152] "Domains (Factors): Shopping-specific (Shopping atmosphere; Store service orientation; Merchandise); Destination-specific (Affordability; K-pop culture/media; Safety; Accessibility; Government promotion; Attraction)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6153] "Subscales: Cocreation; Emotions; Experiential value; Flexibility; Knowledge gain/learning; Memory; Personalized; Recommend."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6154] "Subscales: Positive relational schema (PRS); Negative relational schema (NRS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6155] "Factors: Satisfaction with an emotion-focused relationship (Factor 1); Satisfaction with a behavior-focused relationship (Factor 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6156] "Factors: Diffusion of intimate images through mobile devices; Diffusion of intimate images through social networks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6157] "Subscales: Attention; Verbal learning and memory; Executive functions/language; Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6158] "Subscales: Network Diversity; Upper Reachability; Tie Strength."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6159] "Factors: Problem Focused Coping; Avoidance; Emotion Focused Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6160] "Factors: Psychomotor agitation; Mixity without psychomotor agitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6161] "Subscales: Seeking Distraction; Withdrawal; Actively Approaching; Seeking Social Support; Ignoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6162] "Factors: Perceived susceptibility to HIV (PSu); Perceived severity of HIV (PSe)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6163] "Subscales: Reflectivity; Negative Expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6164] "Factors: General-Controllability; Negative-Usefulness; Positive-Usefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6165] "Factors: Specific-Necessity; Specific-Concerns; General-Overuse; General-Harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6166] "Factors: Temptation; Foodie; Overthinking; Impulsivity; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6167] "Subscales: Past Negative (PN); Past Positive (PP); Present Hedonistic (PH); Present-Fatalistic (PF); Future (FU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6168] "Factors: Cognitive and affective aspects; Cognitive and behavioral aspects; Affective and behavioral aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6169] "Factors: Internalization-Pressure; Internalization-Information Seeking; Internalization-Athlete; Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6170] "Subscales: Speech movement self-consciousness; Public consciousness of speech content; Speech manner; Speech movement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6171] "Subscales: Affective Instability; Emotional Reactivity; Interpersonal Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6172] "Subscales: Emotional support; Division of responsibility and housework; Child-rearing; Decision making and financial management; Cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6173] "Factors: Communicative health literacy (Factor 1); Critical health literacy-trust and efficacy (Factor 2); Critical health literacy information-seeking (Factor 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6174] "Factors: Antagonism; Agency; Planfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6175] "Factors: Group self-value (Factor 1); Self-categorization (Factor 2); Group self-evaluation (Factor 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6176] "Subscales: Disorders of initiating and maintaining sleep; Sleep breathing disorders; Disorders of arousal/nightmares; Sleep wake transition disorders; Disorders of excessive somnolence; Sleep hyperhidrosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6177] "Factors: Cognitive Problems; Oppositional; Hyperactivity-Impulsivity; Anxious/Shy; Perfectionism; Social Problems; Psychosomatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6178] "Subscales: Defiance (KG); Cognitive Problems-Inattention (BP-D); Hyperactivity (H:); Anxiety-Shyness (K-U); Perfectionism (M); Social Problems (SP); Psychosomatic (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6179] "Subscales: Thinking and planning for the future; Positive future design/optimism; Being innovative; Managing the future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6180] "Subscales: Anxious Uncertainty; Dysregulated Anger; Despondence; Self-Disturbance; Behavior Dysregulation; Affective Dysregulation; Fragility; Dissociative Tendencies; Distrustfulness; Manipulativeness; Oppositional; Rashness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6181] "Subscales: Anxious uncertainty; Dysregulated anger; Despondence; Self-disturbance; Behavioral dysregulation; Affective dysregulation; Fragility; Dissociative tendencies distrust; Manipulativeness; Ooppositionality; Rashness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6182] "Factors: Incomplete experiences [Gerçekleştirilememiş yaşantılar]; Unresolved conflicts [Çözümlenmemiş çatışmalar]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6183] "Subscales: Self-Kindness; Self-Criticism; Common Humanity; Self-Isolation; Mindfulness; Over-Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6184] "Subscales: Bullying; Victimization; Witnessing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6185] "Subscales: Empowerment; Servitude; Accountability; Courage; Authenticity; Humility; Stewardship; Corporate social responsibility to employees; Firm innovativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6186] "Subscales: Exposure to trauma; Reexperiencing the trauma; Avoidance of trauma-related stimuli; Negative thoughts or feelings; Trauma-related arousal and reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6187] "Subscales: Beliefs regarding Technoference; Technoference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6188] "Subscales: Trait anger; Anger expression; Anger in; Anger control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6189] "Factors: Intemperate behavior; Narcissistic behavior; Self-promoting behavior; Humiliating behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6190] "Factors: Anger Expression; Anger Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6191] "Subscales: Apathy; Social disconnectedness; Disruptive behavior; Picking up the slack; Work quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6192] "Subscales: Emotional difficulties; Behavioral difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6193] "Factors: Unconditional positivity; Anticipated annoyance; Contingent willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6194] "Factors: Long-term orientation (LZO); Short-term orientation (KZO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6195] "Subscales: Choosing virtual life; Impairment in functionality; Virtual pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6196] "Factors: Interpersonal (F1); Self (F2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6197] "Subscales: Participative; Attuning; Guiding; Clarifying; Demanding; Domineering; Abandoning; Awaiting; Relatedness support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6198] "Subscales: Rejection; Beliefs; Stigma; Familiarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6199] "Subscales: Customer and competitor information; Company (internal) capabilities and resources information; Social and political information; Economic information; Competitor Information; Customer Information; Supplier Information; Company (Internal) Information; Technology Information; Social, Political, and Economic Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6200] "Factors: General factor of vaccine readiness; Complacency; Calculation; Collective responsibility; Compliance; Conspiracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6201] "Subscales: Diminish/Avoid; Approach/Encourage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6202] "Factors: Core Determinism; Category Determinism; Polygenism; Genetic Essentialism (general factor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6203] "Factors: Scope of scanning - Operating Environment (Customer and competitor information, Supplier information, Company [internal] information; General Environment (Social and political information, Economic information). Frequency of scanning - Competitor Information (5 variables); Customer Information (3 variables); Supplier Information (3 variables); Company (Internal) Information (6 variables); Technology Information (2 variables); Social, Political, and Economic Information (8 variables)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6204] "Scales: Controlled Motivation; Autonomous Motivation. Subscales: External Motivation; Introjected Motivation; Identified Motivation; Integrated Motivation; Intrinsic Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6205] "Subscales: Statements on tonal approach; Statements on positional approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6206] "Factors: College attendance; College persistence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6207] "Factors: Attendance; Persistence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6208] "Subscales: Self-Promotion (SP); Resume/CV preparation (CV); Securing a Recommendation (LOR); Standardized Test Preparation (STP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6209] "Factors: Ability and achievement discrepancy; Standard discrepancy; Effort discrepancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6210] "Subscales: Perceived Parental Expectation (PPE); Perceived Self-Performance (PSP); Living up to Parental Expectation (LPE). Factors: Personal Maturity; Academic Achievement; Dating Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6211] "Subscales: Memory support strategies that promote constructive learning behavior; Memory support strategies that do not promote constructive learning behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6212] "Factors: Turnover Intention; Passion; Career Commitment; Job Self-Efficacy; Social Support; Self-Centered Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6213] "Factors: Individual-Oriented Reasons; Family/Achievement-Oriented Reasons; Adult-Imposed Reasons; Social-Oriented Reasons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6214] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6215] "Factors: Behavior and Character Change; Guilt and Loss of Function; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6216] "Factors: Disclosure; Self-censorship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6217] "Subscales: Refusal to avoid stimuli provoking negative affectivity; Refusal to avoid aversive social or assessment situations; Refusal to call parents' attention; Refusal to obtain tangible positive rewards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6218] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6219] "Factors: Individual use; Guilt; Impact on others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6220] "Subscales: Effort over the preceding week; Well-being over the last week; Cognitive engagement; Behavioral engagement; Social motivations; Academic motivations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6221] "Subscales: Accessibility and walking facilities (AW); Traffic safety (TS); Pedestrian infrastructure and safety (PI); Safety from crime (CR); Aesthetics (AE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6222] "Factors: Safety climate; Risk avoidance; Theory of Planned Behavior (TPB) constructs (Safety attitudes; Safety intentions; Safety control; Safety norm)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6223] "Subscales: Terminal value; Instrumental value; Green attitude; Green behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6224] "Factors: Environmental concern; Environmental knowledge; Peer influence; Green purchase intention; Perceived value; Green attitude; Government and NGOs initiatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6225] "Subscales: Person-vocation (P–V) fit (value congruence); Person-organization (P–O) fit (needs–supplies); P–O fit (value congruence); Person-group (P–G) fit (value congruence); Person-job (P–J) fit (demands–abilities); P–J fit (needs–supplies); Bridge employment intention; Full Retirement Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6226] "Factors: Physical Neglect (Factor 1); Physical and Psychological Abuse (Factor 2); Psychological Neglect (Factor 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6227] "Subscales: Patient competencies; Nursing competencies; Organization competencies; Scholarship competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6228] "Subscales: Behavioral awareness (BA); Valued action (VA); Openness to experience (OE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6229] "Subscales: Socio-Emotional Support; Student-Focused Attention and Responsiveness to Student Needs; Classroom Management; Instructional Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6230] "Subscales: Well-being-5; Social potency-5; Achievement-5; Social closeness-5; Stress reaction-5; Alienation-5; Aggression-5; Control-5; Harm avoidance-5; Traditionalism-5; Absorption-5; Positive Emotionality (PEM-20); Negative Emotionality (NEM-15); Constraint (CON-15)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6231] "Factors: Autonomous motivation (AUT); Introjected regulation (IJ); External regulation (EXT); Amotivation (AM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6232] "Dimensions: Demythicizing homosexuality; Acceptance of homosexuality; Familiarity with homosexuality. Subdimensions: Acceptance of intimate relationships; Acceptance of social relationships; Acceptance of interpersonal relationships; Understanding of categories; Understanding of definitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6233] "Subscales: History continuity; Culture continuity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6234] "Factors: Culture; History."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6235] "Subscales: Public collective action; Private collective action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6236] "Domains: Cognition; Mobility; Self-care; Getting along; Life activities; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6237] "Factors: Sadism; Psychopathy; Narcissism; Machiavellianism. Subscales: Crafty; Special; Wild; Mean."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6238] "Constructs: Machiavellianism; Narcissism; Psychopathy; Sadism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6239] "Factors: Interpersonal orientation; Professional knowledge; Moral conflict; Moral meaning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6240] "Subscales: Interpersonal awareness (IA); Interpersonal skills (IS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6241] "Subscales: Safety; Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6242] "Factors: Pay; Status; Hours; Temporary work; Field; Poverty wage employment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6243] "Subscales: Ethics in research; Encountered research misconduct during the course of one's academic studies; Inclination to fabricate data; Inclination to select or omit data; Knowledge of research misconduct in the workplace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6244] "Factors: Fluent disorganization; Speech emptiness; Speech peculiarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6245] "Factors: Emotional engagement; Cognitive engagement; School compliance; Behavioral engagement (Participation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6246] "Factors: Friends' pressure; Social costs; Communication; Shared commitment to safe driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6247] "Factors: Friend pressure; Social costs; Communication; Shared commitment to safe driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6248] "Factors: Boldness; Disinhibition; Meanness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6249] "Subscales: Coherent structure of knowledge (SK_1); Hierarchical structure of knowledge (SK_2); Justification of knowledge and knowing (JK); Changeability of knowledge (CK); Quick learning (QL); Source of knowledge (Source)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6250] "Subscales: Vigor (VI); Dedication (DE); Absorption (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6251] "Subscales: Active engagement in education research; Reasons for using education research; Culture of using research; Barriers to using education research; Facets of the dismissal of research."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6252] "Subscales: Meanness; Boldness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6253] "Factors: Moral justification; Euphemistic language; Advantageous comparison; Dissemination of the responsibility; Displacement of the responsibility; Distortion of consequences; Dehumanization; Attribution of blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6254] "Factors: Grandiose-Manipulative (Subscales: Dishonest charm, Grandiosity, Lying, Manipulation); Callous-Unemotional (Subscales: Callousness, Unemotionality, Remorselessness); Impulsive-Irresponsible (Subscales: Impulsiveness, Thrill-seeking, Irresponsibility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6255] "Dimensions: Grandiose-manipulative (interpersonal); Callous-unemotional (affective); Impulsive-irresponsible (behavioral)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6256] "Subscales: Blame attribution; Prognostic optimism; Need for continuing care; Social distance; Attribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6257] "Dimensions: Availability to oneself and the environment; Letting go; Relative passivity towards the world; Acceptance of change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6258] "Subscales: Deontology-Virtue; Egoism; Utilitarianism; Self-Abnegation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6259] "Subscales: Affective; Interpersonal; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6260] "Factors: Anger perception; Exploring the cause of anger; Self-preparation; Communication skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6261] "Subtests: Communication and trust (CaT); Collaboration in care (CiC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6262] "Subscales: Body Dissatisfaction; Binge Eating; Cognitive Restraint; Excessive Exercise; Restricting; Purging; Muscle Building; Negative Attitudes Toward Obesity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6263] "Subscales: General POLST knowledge; Resuscitation; Medical Interventions; Artificial Nutrition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6264] "Factors: General 9/11 conspiracist beliefs; Governmental cover-up of a 9/11 conspiracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6265] "Factors: Coping; Catastrophizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6266] "Subscales: Catastrophizing (CAT); Coping (COP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6267] "Factors: Perceived barriers; Perceived benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6268] "Factor structure: Unidimensional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6269] "Subscales: Beauty; Bravery; Creativity; Curiosity; Fairness; Forgiveness; Gratitude; Honesty; Hope; Humility; Humor; Judgment; Kindness; Leadership; Love; Love of learning; Perseverance; Perspective; Prudence; Self-regulation; Social intelligence; Spirituality; Teamwork; Zest. Factors: Cognitive; Interpersonal; Vigor; Transcendence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6270] "Factors: Innovativeness; Risk-taking; Proactiveness; Competitiveness; Achievement orientation; Learning orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6271] "Subscales: Feelings about the father; Mother's support for relationship with the father; Father involvement perception; Physical relationship with the father; Father-mother relationship; Conceptions of God as father; Conceptions of father's influence; Mother's relationship with her father; Father's relationship with his father. Factors: Relationship with the father; Beliefs about the father; Intergenerational family influences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6272] "Subscales: Relationship; Patient focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6273] "Factors: Internal Shame (IS); External Shame (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6274] "Subscales: Positive metacognitive beliefs; Negative metacognitive beliefs; Confidence; Control; Conscience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6275] "Factors: Pros; Cons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6276] "Factors: General Conspiracist Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6277] "Factors: General 9/11 conspiracist beliefs; Governmental cover-up of a 9/11 conspiracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6278] "Factors: Public-sphere PEB; Resource/waste PEB; Purchasing/food PEB."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6279] "Factors: Fears before death - Fear of the dying process; Fear of premature death; Fear of the dead; Fear for significant others; Fear of conscious death; Fears after death - Fear of being destroyed; Fear of the unknown; Fear of the body after death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6280] "Factors: Maleficence; Lack of Planning; Risk-Taking; Distractibility; Impulsive Decision-Making; Law-Breaking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6281] "Subscales: adaptive Emotion Regulation Strategies (aERS); maladaptive Emotion Regulation Strategies (mERS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6282] "Subscales: Extraversion; Agreeableness; Conscientiousness; Neuroticism; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6283] "Factors: Proactive Overt Aggression (POA); Proactive Relational Aggression (PRA); Reactive Overt Aggression (ROA); Reactive Relational Aggression (RAR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6284] "Factors: Spontaneous instability; Vulnerable responsiveness; Disruptive emotion/behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6285] "Subscales: Social concerns; Cognitive interference; Physiological hyperarousal; Task irrelevant behaviors; Worry; Facilitating anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6286] "Subscales: Applying Decision Rules (ADR); Consistency in Risk Perceptions (CRP); Resistance to Framing (RF); Under/Overconfidence (UOC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6287] "Factors: Benefit; Damage; Inefficacy Exposure; Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6288] "Subscales: Visual; Auditory; Audio-Visual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6289] "Factors: Relationship Satisfaction (RS); Social Support (SS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6290] "Factors: Cost control engagement; Organizational cost culture; Managerial cost incentives; Profit orientation; Sales force cost mirroring; Cost-related sales performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6291] "Factors: Tolerance; Protection; Proximity; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6292] "Categories: Physical functioning; Social-emotional aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6293] "Subscales: Mood; Cognition; Behavior; Somatic complaints; Ideas or acts of suicidality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6294] "Subscales: Interpersonal Relationship (BWSQ-IR); Sexual Dysfunction (BWSQ-SD); Body Image (BWSQ-BI); Post-Traumatic Stress Checklist (BWSQ-PTSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6295] "Subscales: Sharing information; Seeking information; Revising the plan; Enacting the plan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6296] "Domains: Multidisciplinary nature of pain; Pain Assessment and measurement; Management of pain; Clinical conditions; Regulatory considerations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6297] "Factors: Social Networking (SN); Commercial Transactional (CT); Hedonic Value (HV); Utilitarian Value (UV); Customer Loyalty (CL); Word-of-Mouth (WOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6298] "Factors: Attitude toward consumer marketing programs; Attitude toward supplier salesperson; Attitude toward salesperson reward program; Brand extra role behaviors; Brand identification; Customer orientation; Subjective Norms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6299] "Factors: Positive ethnic–racial identity (ERI) affect; Negative ethnic–racial identity (ERI) affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6300] "Factors: Positive belief factors; Negative belief factors; Attitudes toward fashion Advertising (ATFA); Behavior toward advertising (BEH); Fashion Consciousness (FC). Subscales: Product Information; Social role; Entertainment; Good for Fashion Ind.; Materialism; Value Corruption; Falsity; Intrapersonal subscale (religious commitment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6301] "Factors: Arousal and Hyper-Reactivity (ARH); Fearful Attachment (FA); Intrusion and Re-Experiencing (I); Avoidance and Negative Cognition and Mood (AVN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6302] "Subscales: Resistance to framing; Under/overconfidence; Applying decision rules; Consistency in risk perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6303] "Factors: Birth-related symptoms (BRS); General symptoms (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6304] "Subscales: Fine shape discrimination; Shape ratio discrimination; Dot lattices; Radial Frequency Patterns; Global motion detection; Kinetic object segmentation; Biological motion; Dot counting; Figure-ground segmentation; Embedded figure detection; Recognition of missing part; Object recognition in a scene."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6305] "Subscales: Self-awareness; Self-management; Social awareness; Relationship management; Responsible decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6306] "Subscales: Social contact; Social criticism; Performance; Physical appearance; Physical ability; Global self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6307] "Subscales: Social contact; Social criticism; Performance; Physical appearance; Physical ability; Global self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6308] "Factors: Inpatient treatment planning; Outpatient treatment planning; Group programming; Milieu."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6309] "Subscales: Affections; Worries; States; Health concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6310] "Components: Family history of substance abuse; Personal history of substance abuse; Psychiatric Disorders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6311] "Scales (Factors): Trust (Trust in Autonomous Vehicle Performance; Trust in Regulations and Standards; Trust in Manufacturers and Developers); Perceived Risk (Performance Risk; Privacy and Security Risk); Intention to Ride in an Autonomous Vehicle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6312] "Factors: interactivity; presence; flow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6313] "Factors: Personal justification; Justification by multiple sources; Justification by authority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6314] "Subscales: Gameful Experience-accomplishment; Gameful Experience-challenge; Gameful Experience-playfulness; Collaboration-group cohesiveness; Collaboration-group efficacy; Collaboration-group effectiveness; Collaboration-social experience; Motivation-immersion; Motivation-intrinsic motivation; Motivation-extrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6315] "Subscales: Affect during wear; Affect when unable to wear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6316] "Subscales: Traffic Violations (F1); Riding Errors (F2); Positive Behaviors (F3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6317] "Subscales: Traffic Violations (F1); Riding Errors (F2); Positive Behaviors (F3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6318] "Subscales: Enacted Stigma; Internalized Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6319] "Factors: Seguridad física (Seg); Normas (Nor); Relación alumnado-profesorado (Alpro); Relación entre iguales (Igu); Cohesión de grupo (Coh); Aspectos ambientales-estructurales (Amb); Capacidad motivación del profesorado (Moti); Evaluación (Eva); Percepción expectativas del profesorado (Exp); Recursos metodológicos (Rec)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6320] "Subscales: Distorted Form Quality (FQ–); Weighted sum of the six cognitive Special Scores (WSum6); Critical Contents; Distorted Human Movement responses (M–); Good-to-Poor Human Representational variable (HRV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6321] "Factors: Desire for Control (DFC); Driver Locus of Control (DLOC); Attitude toward AV (ATD); Intention to Use AV (INT); Power Distance (POD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6322] "Constructs: Personal innovativeness; Subjective norm; Environmental consciousness; Price consciousness; Perceived usefulness; Perceived ease of use; Perceived safety risk; Perceived privacy security; Perceived value; Word-of-mouth; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6323] "Factors: Work; Beliefs related to Work; Physical activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6324] "Factors: Nonpharmacological treatment/care; Monitor and manage common problems; Causes of OA and pharmacological treatment; Medical staff support and surgery-related concerns; Help patients adapt and get along."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6325] "Factors: Rationale for participation; Perception of learning experience; Approach to develop; Competency development; Personality attribute. Subfactors: Self-directed; Externally Driven; Involuntary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6326] "Subscales: Catheter function and concern; Lifestyle impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6327] "Subscales: Diminished visual perception; Altered visual perception; Ocular discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6328] "Subscales: Family; Friends; Significant Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6329] "Subscales: Attraction to the Group (ATG)-Social; ATG-Task; Group Integration (GI)-Social; GI-Task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6330] "Subscales: Calling orientation; Critical insight; Continuous learning; Collaboration; Cohesiveness; Challenge drive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6331] "Subscales: Limitations; Hassles/Burdens; Psychological Impact (Positive); Psychological Impact (Negative)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6332] "Factors: Denial of negative emotions; Resistance to change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6333] "Factors: Denial of negative emotions; Resistance to change; Conscious avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6334] "Factors: Play as a Game; Play as Goofing Around"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6335] "Factors: Hygiene Concern; Social Relationships; Hygiene Help-Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6336] "Subscales: Cognitive associations; Behavioral associations; Life legacy; Life momentum; Defining past; Clear goals; Value engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6337] "Sections: Knowledge; Attitude; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6338] "Factors: Self-confidence; Attitude towards Predict-Observe-Explain (POE); Critical attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6339] "Factors: Credible content delivery; Co-creation; Responsiveness; Brand advocacy; Purchase intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6340] "Factors: Yi (righteousness); Zhi (wisdom); Zhong Xin (loyalty and trustworthiness); Ren (benevolence); Xiao (filial piety); Li (propriety); Qian (humility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6341] "Scales: Digital Competence; Digital Informal Learning; Academic Performance. Factors: Technical skills (TS); Cognitive skills (CS); Ethical knowledge (EK); Cognitive learning (CL); Metacognitive learning (MCL); Social and motivational learning (SML)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6342] "Scales: Classroom Practices; School Atmosphere. Factors: Rules; Student Support; Student Involvement; Positive Teaching; Encouragement; Class Management; Student Relations; Student–Teacher Relations; Educational Climate; Sense of Belonging; Interpersonal Justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6343] "Factors: Affirmed Gender; Dysphoria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6344] "Factors: Challenge-focused encouragement (CFE); Potential-focused encouragement (PFE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6345] "Factors (Subscales): Giftedness (Intellectual Ability; Academic Ability; Creativity; Artistic Talent; Leadership Ability); Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6346] "Factors: Perseverance of effort; Consistency of interests; Adaptability to situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6347] "Subscales: Physical; Psychological; Social relationships; Environment; Spiritual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6348] "Subscales: Reliability; Emotional; Honesty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6349] "Subscales: Past Positive; Past Negative; Present Positive; Present Negative; Future Positive; Future Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6350] "Subscales: Past Positive; Past Negative; Present Positive; Present Negative; Future Positive; Future Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6351] "Subscales: Contamination; Personal economic consequences; Societal functioning; Personal health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6352] "Subscales: Family honor; Social honor; Masculine honor; Feminine honor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6353] "Factors: Commitment; Control; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6354] "Factors: Family honor concerns; Integrity concerns; Masculine honor concerns; Feminine honor concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6355] "Categories: Site information; Telehealth, general; Telehealth, skills group; Telehealth, individual treatment; Telehealth, solutions; Telehealth, patient acceptability; Telehealth, opinions; Telehealth, future plans; Demographic and professional discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6356] "Factors: Black Sensitivity and Willingness to Report Pain; Asian Sensitivity and Willingness to Report Pain; White Sensitivity and Willingness to Report Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6357] "Factors: Vaginal dryness; Blood loss; Fatigue; Devaluation; Avoidance; Sexual self-image; Sexual drive; Partner conflict; Dependence; Embarrassment; Social isolation; Quality of work"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6358] "Factors: Health Knowledge Learning Intention (HKLI); Perceived Severity (PSV); Perceptual Susceptibility (PSC); Self-efficacy (SE); Perceived Benefits (PB); Health Anxiety (HA); e-Health Literacy (EHL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6359] "Subscales: Verbal aggression; Aggression against property; Autoaggression; Physical aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6360] "Factors: Intensified Affection (IA); Withheld Affection (WA); No Deceptive Affection (NDA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6361] "Factors: Core grief; Culturally specific symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6362] "Sections: Awareness (knowledge); Attitude; Anxiety; Perceived mental health care needs during the pandemic of the novel coronavirus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6363] "Factors: General factor; Positive; Negative; Disorganization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6364] "Factors: Cultural membership; Cultural integration; Scientific learning; Artistic learning; Adaptive learning; Participative learning; Academic progress; Research Progress. Subscales: Sense of belonging; Learning strategies; Perception of progress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6365] "Factors: Work factor; Personal factor; Role factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6366] "Subscales: Recruitment and Selection; Training and Development; Employment Security; Performance Management; Participation in Decision Making; Job Design; Employee Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6367] "Factors: Perceived Courtesy Stigma (CS); Affiliate Stigma (AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6368] "Factors: Mastery Motivational Climate; Performance Motivational Climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6369] "Subscales: Performance orientation; Performance motivational climate; Mastery orientation; Mastery motivational climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6370] "Subscales: Flexible Thinking; Openness-Ideas; Openness-Values; Absolutism; Dogmatism; Categorical Thinking; Superstitious Thinking; Counterfactual Thinking; Outcome Bias; Social Desirability Response Bias. Factor: Composite Actively Open-Minded Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6371] "Subscales: Performance; Gender roles; Recruitment and retention; Career; Emotionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6372] "Factors: Using the Nursing Process; Applying evidence to improve practice; Connecting with community; Leveraging the school and family team."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6373] "Factors: Student engagement; Instructional strategies; Classroom management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6374] "Factors: Sources of potential social support recognized by nurses; Information from nurses regarding CHD/PCI rehabilitation; Recommendation from nurses on illness management; Advice from nurses on stress management; Encouragement from nurses to take more control of one's own health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6375] "Subscales: Barriers (BAR); Susceptibility and Severity (SUS/SEV); Self-efficacy (SE); Benefits (BEN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6376] "Factors: Self-efficacy for infant care; Self-efficacy for parental role."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6377] "Factors: Blood Cancer and Sports; Bone Tumors and Sports; Cerebral Tumors and Sports; General Information on Cancer and Sports; Mass Media Information on Oncology and Sports; General Information about Sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6378] "Factors: Perceived safety and support; Internal and environmental motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6379] "Factors: Yoga; Benefits of yoga; Inclusive sport; Teacher training; Sport."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6380] "Factors: Psychological assault; Physical attack; Sexual coercion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6381] "Scales: Entrepreneurial performance; Cognitive trust; Affective trust; Entrepreneurial orientation. Subfactors: Innovation; Risk-taking; Proactive-ness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6382] "Factors: Sexual Pleasure; Sexual Curiosity; Fantasy; Boredom Avoidance; Lack of Sexual Satisfaction; Emotional Distraction or Suppression; Stress Reduction; Self-Exploration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6383] "Subscales: Neutral Praise; Person Praise; Process Praise; Mindset-Implicit theory of intelligence (ITI); Mindset-Implicit theory of giftedness (ITG); Academic motivation-Trying; Academic motivation-Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6384] "Factors: Monitoring Behaviors; Controlling Behaviors; Demeaning Behaviors; Threatening and Aggressive Behaviors; Jealous and Possessive Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6385] "Subscales: Physical aggression against mother; Physical aggression against father; Psychological aggression against mother; Psychological aggression against father; Economic aggression against mother; Economic aggression against father."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6386] "Factors: Verbal/social aggression; Physical aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6387] "Factors: Favorable beliefs about learning; Favorable beliefs about transversal skills; Unfavorable beliefs about digital technologies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6388] "Factors: Agency; Pathways."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6389] "Subscales: Self-discipline; Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6390] "Factors: Child Version: Emotional parentification towards parents; Instrumental parentification towards parents; Sense of injustice; Satisfaction with the role. Adolescents with Siblings Version: Emotional parentification towards parents; Instrumental parentification towards parents; Sense of injustice; Satisfaction with the role; Emotional parentification towards siblings; Instrumental parentification towards siblings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6391] "Factors: Game access; Active engagement with the activities; Social speech generated from playing the game"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6392] "Factors:Social acceptability; Usefulness; Usability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6393] "Subscales: Accepting the Past (ACPAST); Reminiscing about the Past (REM)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6394] "Factors: Challenge/Control (CH/CO); Curiosity (CU); Career Outlook (CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6395] "Subscales: Detached; Uncommitted; Unempathic; Uncaring; Lack Persistence; Unreliable; Reckless; Restless; Disruptive; Aggressive; Suspicious; Lacks Concentration; Intolerant; Inflexible; Lacks pain; Antagonistic; Domineering; Deceitful; Manipulate; Insincere; Garrulous; Lacks anxiety; Lacks pleasure; Lacks emotional depth; Lacks emotional stability; Lacks remorse; Self-centered; Self-aggrandizing; Uniqueness; Entitlement; Invulnerable; Self-justifying; Self-concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6396] "Factors: Laziness, problems and self-control skills; Assertiveness and ability to say \"no\"; Problem-solving skills; Decision-making skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6397] "Subscales: Space and Furnishings; Health and Safety; Activities; Interactions; Program Structure; Staff Development; Special Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6398] "Subscales: Empathic concern; Internal distress; Fantasy; Perspective taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6399] "Subscales: Rowland Universal Dementia Assessment Scale (RUDAS); Recall of Pictures Test (RPT)-immediate learning; RPT-delayed recall; RPT-recognition; Enhanced Cued Recall (ECR); Picture naming; Animal verbal fluency (VF); Supermarket fluency (SF); Color Trails Test (CTT); Five Digit Test (FDT 1; FDT 2; FDT 3; FDT 4); Serial threes; Copying of simple figures; Semicomplex figure copy; Clock Drawing Test (CDT); Clock Reading Test (CRT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6400] "Factors: Language Comprehension; Language Production."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6401] "Subscales: Achievement Thoughts (AT): Achievement Behaviours (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6402] "Subscales: Behavior management (BM); Instructional management (BM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6403] "Subscales: Diffusion; Foreclosure; Moratorium; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6404] "Subscales: Generalized anxiety disorder (GAD); Social phobia (SP); Separation anxiety disorder (SAD); Major depressive disorder/dysthymia (MDD/dysthymia); Attention-deficit hyperactivity disorder of the inattentive type (ADHD-I); Attention-deficit hyperactivity disorder of the hyperactivity-impulsive type (ADHD-HI); Oppositional defiant disorder (ODD); Conduct disorder (CD); Functional impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6405] "Subscales: General fear of intimacy (GFoI); Past relationships fear of intimacy (PRFoI). Factors: General fear of intimacy (GFoI); General fear of intimacy Reversed Items (GFoIR); Past relationships fear of intimacy (PRFoI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6406] "Factors: Antihierarchical aggression; Anticonventionalism; Top-Down Censorship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6407] "Dimensions: Understanding; Validation; Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6408] "Factors: Activities that require physical effort; Activities that require little or no physical effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6409] "Dimensions: Home culture orientations; Host culture orientations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6410] "Factors: Factor 1 - Inevitability scale items; Factors 2 & 3 - Distractors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6411] "Factors: Weight as a barrier to living; Food as Control; Weight-stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6412] "Scales: Control-Centered Cyberabuse; Damage-Centered Cyberabuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6413] "Factors: Severity of ADA symptoms; ADA frequency and coping behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6414] "Factors: Psychological cognitive; Physical; External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6415] "Factors: Health; COVID-19 Job Search Constraints; Job Search Hope; Reflective Metacognitive Activities; COVID-19 Invulnerability; Job Search Distress; Job Search Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6416] "Factors: Recreation; Social interaction; Competition; Violent reward; Cognitive development; Customization; Coping; Fantasy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6417] "Domains: Attention-deficit=hyperactivity disorder–inattentive type (ADHD-I); ADHD–hyperactive=impulsive type (ADHD-H); Oppositional defiant disorder (ODD); Conduct disorder (CD); Generalized anxiety disorder (GAD); Separation anxiety disorder (SAD); Social phobia (SP); Major depressive episode (MDE); Functional impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6418] "Factors: Negative Impact; Emotional Coping; Uncontrolled Behavior; Post-Sex Regret; Increased Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6419] "Factors: Others-Awareness; Self-Awareness; Courage; Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6420] "Subscales [Factors]: Exposure [COVID-19 experiences; Access to essentials; Disruptions to living conditions; Loss of income; Family caregiving and activities; Designation as an essential worker]; Impact [Personal well-being; Family interactions; Distress]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6421] "Subscales: Implementing ICT-Integrated Science Instruction (implementing); Ethics in ICT-Integrated Science Instruction (ethics); Proficiency in ICT-Integrated Science Instruction (proficiency); Designing Materials for ICT-Integrated Science Instruction (designing); Planning ICT-Integrated Science Instruction (planning)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6422] "Factors: Intrinsic motivation; Self-efficacy; Self-regulation; Perseverance; Conscientiousness; Behavioral engagement; Cognitive engagement; Cooperation; Resilience; Attention; Extrinsic motivation; Proactive behaviour/drive; Critical thinking; Creativity/openness; Emotional engagement; Well-being; Self-esteem; Outcome expectations; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6423] "Factors: Abusive Leadership; Supportive Leadership; Interpersonal Justice; Athletic Commitment; Athletic Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6424] "Subscales: Symbolic; Economic; Historical; Aesthetic; Spiritual; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6425] "Factors: Digital literacy; Security and risk; Mediation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6426] "Subscales: Neighborhood subscale; Caregiver capacity subscale; Caregiver functioning subscale; Caregiver commitment subscale; Child maltreatment subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6427] "Subscales: Sensitivity; Endurance; Willingness. Factors: Participants' sensitivity and willingness to report pain; Participants' and woman's pain endurance; Men's pain endurance and woman's sensitivity and willingness to report pain; Men's sensitivity and willingness to report pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6428] "Factors: Young Adult Sensitivity and Willingness to Report Pain; Older Adult Sensitivity and Willingness to Report Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6429] "Subscales: School Problems (Attitude to School; Attitude to Teacher; Sensation-Seeking); Internalizing Problems (Atypicality; Locus of Control; Social Stress; Anxiety; Depression; Sense of Inadequacy; Somatization); Attention Deficit Hyperactivity Disorder (ADHD: Inattention; Hyperactivity); Personal Adjustment (Relations With Parents; Interpersonal Relations; Self-Esteem; Self-Reliance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6430] "Subscales: Self-interest; Other-interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6431] "Subscales: Cheerfulness; Seriousness; Bad mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6432] "Second-order Factors: Appearance; Moral Virtue; Cognitive Experience; Conscious Emotionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6433] "Factors: Family interaction; Interaction with others; Individual skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6434] "Factors: Model Adherence Component; Model Adherence Strategy; Collaboration Indicator; Judicial Decision Making; Lack of Treatment; Lack of Information Sharing and Evaluation; Lack of Operational Support; Lack of Community and Political Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6435] "Factors: Healthcare provider relationship/communication (F1); Knowledge and information about multiple sclerosis (F2); Treatment adherence/barriers (F3); Maintaining health behavior (F4); Social/family support (F5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6436] "Factors: Information and medical care; Life perspective; Relationship; Comprehensive support; Quality of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6437] "Factors: Situation modification; Attentional deployment; Cognitive reappraisal; Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6438] "Subscales: Knowledge (K); Attitude (A); Practice (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6439] "Subscales: Train the subordinate; Punish the subordinate; Monitor the subordinate; Counsel the subordinate about work standards; Provide support and sympathy to the subordinate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6440] "Factors: Cognitive fatigue; Physical fatigue; Emotional fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6441] "Factors: Physical fatigue; Emotional fatigue; Cognitive fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6442] "Scales: Antisocial Behavior (AA); Prosocial Behavior (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6443] "Subscales: Distractors (D); Social Desirability (S); Moral-Sharing (M-S); Moral-Consoling (M-C); Moral-Helping (M-H)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6444] "Subscales: General Verbal Learning; Intrusions; Interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6445] "Subscales: Common Experience; Effortful Construction; Mysterious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6446] "Factors: Extraversion; Agreeableness; Conscientiousness; Stability; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6447] "Factors: Peer reviewers fake identity; Expert reviewers fake identity; Attribution of service failure; Consumer deception; Consumer dissatisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6448] "Subscales: Faith Community & Reference Group Approval of Family Planning (FP) Use; Perceptions of Prevalence of FP Use in Congregation; Role in Chores; Role in Child Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6449] "Subscales: Perceived Authority; Perceived Closeness; Peer Referent; Moral Obligation; Like Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6450] "Subscales: Family and children; Work and education; General future optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6451] "Subscales: Role Conflict; Role Overload; Social Interaction Anxiety; Disappointment; Lurking Intention; Privacy Concern; SNS Self-efficacy; Social Interaction Need; Self-expression Need; Fantasizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6452] "Subscales: Dog–Owner Interaction (DOI); Perceived Emotional Closeness (EC); Perceived Costs (PC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6453] "Subscales: IT integration capability; Knowledge absorptive capacity (Knowledge acquisition; Knowledge assimilation; Knowledge transformation; Knowledge exploitation); Knowledge desorptive capacity (Knowledge identification; Knowledge transfer); Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6454] "Factors: Extraversion; Agreeableness; Conscientiousness; Stability; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6455] "Factors: Discomfort in Social Interaction; Vulnerability; Coping; [Admiration and Rewarding Interaction]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6456] "Factors: Helplessness; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6457] "Subscales: Faith Community & Reference Group Approval of Family Planning (FP) Use; Perceptions of Prevalence of FP Use in Congregation; Role in Chores; Role in Child Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6458] "Factors: Focus on opportunities (FTO); Focus on limitations (FTL)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6459] "Constructs: Interactional justice; Distributive justice; Likability; Satisfaction with service recovery; Desire to reconcile; Repurchase intention; Positive word of mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6460] "Subscales: Social relationships; Employment conditions; Working conditions; Work content."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6461] "Factors: Valuation of peer-feedback as instructional method (VIM); Confidence in quality of received peer-feedback (CR); Confidence in own peer-feedback quality (CO); Valuation of peer-feedback as an important skill (VPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6462] "First Order Factors: Intimacy; Passion; Commitment. General Factor: Love."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6463] "Subscales: Social Self-efficacy and Outcome Expectation; Reading Emotional Expression; Social Affiliation; Arousal; Power/Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6464] "Subscales: Resourceful; Ungrateful. Factors: Coddled; Disrespectful; Rookie; Radically progressive; Ambitious; Smart; Hip; Techie."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6465] "Subscales: Showing Interpersonal Sensitivity (SIS); Providing General Information (PGI); Communicating Specific Information (CSI); Treating People Respectfully (TPR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6466] "Factors: Cognitive Empathy: Affective Empathy; Compassionate Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6467] "Subscales: Speech function; Psychosocial function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6468] "Factors: Cognitive empathy (CE); Emotional reactivity (ER); Social skills (SS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6469] "Factors: Representing reasons for not attending systemic sclerosis support groups personal reasons; Practical reasons; Beliefs about support groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6470] "Factors: Mental Anxiety; Somatic Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6471] "Subscales: Attitude; Intention; Perceived behavior control; Subjective norm future; Subjective norm present."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6472] "Factors: Pedagogical affordance; Social affordance; Technical affordance; Extrinsic motivation; Intrinsic motivation; Shallow cognitive enhancement; Deep cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6473] "Subscales: Technology Readiness (TR); Learner Control (LC); Online Communication Self-efficacy (OCS); Self-directed Learning (SDL); Motivation for Learning (MFL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6474] "Subscales: Motivation for change; Understanding of change models; Acting radically; Building support for change; Maintaining relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6475] "Factors: Intrinsic value; Utility value; Attainment value; Perceived relative cost; Autonomous motivation to transfer; Controlled motivation to transfer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6476] "Factors: Internalizing (IF); Externalizing (EF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6477] "Subscales: Belongingness motives; Political participation motives; Instrumental motives; Host culture adoption orientations; Heritage culture maintenance orientations; Immigration policy attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6478] "Factors: Enacted stigma (Interpersonal interactions; Major life areas; Community, social and civic life)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6479] "Factors: Factor 1 = Cultural Openness and Desire to Learn; Factor 2 =Awareness of Contemporary Racism; Factor 3 = Empathy; Factor 4 = Resentment and Cultural Dominance; Factor 5 = Anxiety and Lack of Multicultural Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6480] "Subscales: Alphabet knowledge; Phonological awareness; Vocabulary and oral language; Listening comprehension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6481] "Factors: Behavioral Support; Differentiation; Classroom Management; Instructional Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6482] "Subscales: Disgust; Fear; Embarrassment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6483] "Factors: Meaning in caregiving; Caregiving mastery; Positive emotion on caregiving; Support from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6484] "Factors: Gustatory and olfactory imagery; Kinaesthetics; Organic modality; Visual imagery; Auditory imagery; Cutaneous imagery; Unnamed, heterogeneous; Unnamed, visual image distinguished from others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6485] "Factors: Imagery; Somatic perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6486] "Factors: Cognitive impulsivity; Behavioral impulsivity; Impatience/restlessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6487] "Factors: Primary sexual dysfunction; Secondary sexual dysfunction; Tertiary sexual dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6488] "Subscales: Anglo-centric/Assimilationist attitudes; Inclusive/Pluralistic attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6489] "Factors: techEnthusiasm; techAnxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6490] "Factors: Technical quality; Information quality; Feedback; Ease of use; Benefits; Cross-organizational collaboration; Internal collaboration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6491] "Subscales: Agency; Self-expression; Realism; Social learning; Social comparison; Filter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6492] "Factors: Control; Salience; Relapse; Dissatisfaction; Negative consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6493] "Factors: Burden and Loss; Quality of Life; Perceived Social and Cognitive Loss."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6494] "Factors: Readiness to exchange views on religious topics; Readiness to seek mutual understanding; Internal barriers for the symmetry of a dialogue; Readiness to communicate with representatives of other religions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6495] "Subscales: Responsibility; Purpose; Flexibility; Perspective; Reasoning; Sustainability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6496] "Scales: Inconsistency; Atypicality; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6497] "Subscales: Caregiver Life Interference (CLI); Injection signs reported by caregiver (CS); Ease of Injection Schedule (EoIS); Family Life Interference (FLI); Life Interference (LI); Pen Ease of Use (PEoU); Injection Signs and Symptoms (SS); Satisfaction and Willingness to Continue (WtC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6498] "Subscales: Communication climate (Openness; Participation); Organizational identification; Affective commitment to change; Behavioral support for change (Cooperation; Championing)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6499] "Subscales: Exploration; Collaboration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6500] "Subscales: Security; Trust; Privacy concerns; E-satisfaction; Ease of use; Repurchase intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6501] "Coding Categories: Rectifying access inequality; Addressing economic inequality; Ensuring equal representation; Avoiding biased decisions; Ensuring access to learning; Avoiding conflict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6502] "Factors: Ethics of anaesthesia care; Patient's risk care; Patient engagement with technology; Collaboration within patient care (items 16‐20), anaesthesia patient care with medication; Peri‐anaesthesia nursing intervention; Knowledge of anaesthesia patient care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6503] "Subscales: Euro-MCD I (before the first MCD); Euro-MCD II (after multiple MCDs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6504] "Subscales: Supervision-Related Disclosure; Counseling-Related Disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6505] "Constructs: Resilience to digital distractions; ICT self-efficacy; Motivation; Systematic work approach; Time spent on individual studies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6506] "Subscales: Career aspirations; Escaping routines; Social contribution; Coincidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6507] "Factors: Consummatory pleasure without motivation driving; Consummatory pleasure with motivation driving; Anticipatory pleasure without motivation driving; anticipatory pleasure with motivation driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6508] "Factors: Recycling and use of environmentally friendly products; Environmentally friendly purchases and energy saving; Educating oneself and voluntarism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6509] "Subscales: Interest/hobby; Food and drink; Social activities; Sensory experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6510] "Subscales: Defusion; Common Humanity; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6511] "Factors: Prosocial Behavior; Honesty; Self-Development; Self-Control; Respect at School; Respect at Home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6512] "Factors: Site attachment (Social bond; Dependence; Identity); Perceived service quality; Perceived website security and privacy issues; Perceived entertainment; Intentions to repeat the purchase."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6513] "Subscales: Educating oneself; Recycling; Purchasing environmentally-friendly products."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6514] "Subscales: Reliving; Vividness; Visual imagery; Scene; Narrative coherence; Life-story relevance; Rehearsal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6515] "Subscales: FOI Communication; FOI Interaction; FOI Knowledge; FOI Caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6516] "Factors: Integrity; Compliance. Subscales: Controlling; Sanctioning; Rule clarity; Rule defectiveness; Rule viability; Accountability; Leader's role modeling; Pressure to compromise; Obedience; Ill-conceived goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6517] "Subscales: Quiet; Noise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6518] "Subscales: Personal-level risk perceptions; Societal-level risk perceptions; Self-efficacy for MERS; MERS-related stress; Trust in government; Trust in news media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6519] "Factors: Debt for material aspects (F1); Self-sufficiency and discomfort in receiving help (F2); Moral self-demand in the reception of help (F3); Debt in the receipt of gifts (F4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6520] "Subscales: Comprehension; Mental State Reasoning; Spontaneous Mental State Inference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6521] "Domains (Sub-scales): Social-emotional development (Building trust; Confidence, and independence; Social and emotional wellbeing); Cognitive development (Supporting and extending language and communication; Supporting learning and critical thinking; Assessing learning and language)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6522] "Subscales: Perceived usefulness (PU); Perceived ease-of-use (PEU); Perceived enjoyment (PEJ); Perceived convenience (PCO); Attitude (ATT); Behavioral Intention (INT); Actual usage (ACU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6523] "First-Order Factors: Cultural Knowledge; Cultural Skills; Cultural Metacognition. Second-Order Factors: Cultural Intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6524] "Subscales: Connectedness; Expansion of self; Adult status and social identity; Family heritage; Development of self; Family maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6525] "Domains: Global cognitive function; Memory; Language; Executive functions; Visuospatial functions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6526] "Subscales: Communication; Satisfaction; Involvement; Limit Setting; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6527] "Subscales: Visual recognition; Auditory recognition; Finger tapping; Speed accuracy right; Speed accuracy left; 1 choice visual processing; 4 choice visual processing; Visuospatial memory; Shape memory; Numerical memory; Base stealing; Baseball catch; Spaceship race; Meteor dodge; Sit stand tap."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6528] "Factors: Developmental Strain; Subjective Invulnerability; Normative Expectancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6529] "Subscales: Muscular Fitness (MF); Cardiorespiratory Fitness (CRF); Flexibility (FL); Body Composition (BC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6530] "Factors: Satisfaction with Parenting; Involvement with Parenting; Communication; Limit Setting; Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6531] "Subscales: Sensitivity; Susceptibility; Response efficacy; Self-efficacy. Factors: Endocrine disruptor; Goods; Cosmetics; Dust; Fat; Prevention efficacy; Protection efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6532] "Subscales: Individual protective; Social protective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6533] "Subscales: Site improvement; Agency; Resilience; Selection; Planning; Leading; External; Commitment; Involvement; Capabilities; Teams; Funding; Staffing; Time; Implementation data; Outcomes data; Adaptability; Processes; Relationships; Site renewal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6534] "Subscales [Factors]: Personal EHB-FA [Chemical reduction; Electromagnetic reduction; Food selection; Cosmetic selection; Dust and gas reduction]; Community EHB-FA [Reduction; Reuse; Recycle; Response]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6535] "Domains: Knowledge; Confidence; Use of Solution-Focused Coaching Techniques; Client Orientation; Process Orientation; Goal Orientation; Ecological Orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6536] "Subscales: Direct attitude; Indirect attitude; Direct subjective norm; Indirect subjective norm; Direct perceived behavioral control; Indirect perceived behavioral control; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6537] "Subscales (Factors): Self-Knowledge (Appearance self; Social self; Morality appraisement); Self-Experience (Learning self; Sense of satisfaction; Sense of anxiety); Self-Control (Initiative-taking; Self-restraint; Self-monitoring)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6538] "Factors: Concerns about occasional encounters; Avoidance of personal contact; Responsibility and blame; Liberalism; Non-discrimination; Confidentiality of seropositive status; Criminalization of HIV transmission."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6539] "Subscales: Situational success expectancies; Situational task values-Values; Situational task values-Costs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6540] "Constructs: Use habit; Use intensity; Psychological enhancement; Playfulness; Social enhancement; Social influence; Social support; Social identity; Perceived control; Mobile SNS addiction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6541] "Factors: Fear/concerns about being infected (F1); Fear personal contact (F2); Prejudicial views toward groups at high risk (F3); Liberalism (F4); Social support (F5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6542] "Hypothesized Factors: Psychological flexibility (PF); Teaching resiliency (tRES); Sense of purpose (SOP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6543] "Subscales: Standing Posture; Sitting Posture; Using backpacks; Mobilizing heavy weights; Lying Posture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6544] "Subscales: Perception; Access; Differentiation; Correction; Arrangement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6545] "Subscales: Attitudes toward clouded leopards index scores (AIS); Attitudes toward clouded leopard competitors and prey index scores (AISCP); Knowledge index scores (KIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6546] "Subscales: Ability; Opinion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6547] "Subtypes [Subscales]: Frenetic [Ambition; Overload; Involvement]; Underchallenged [Indifference; Lack of Development; Boredom]; Worn-out [Lack of Acknowledgement; Neglect; Lack of Control]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6548] "Subscales: Minor; Moderate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6549] "Subscales: Marketing exploitation; Marketing exploration; Marketing metrics use; Financial metrics use; Metric-based training orientation; Metric-based compensation orientation; Market orientation; Long-term orientation; Firm size; Defender strategic orientation; Market turbulence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6550] "Factors: Receiving instrumental support (RIS); Receiving emotional support (RES); Giving instrumental support (GIS); Giving emotional support (GES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6551] "Factors: Perceptions of Team-based learning (TBL); Perceptions of teamwork."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6552] "Subscales: Supply Chain Network Risk Drivers; Supply Chain Exploration Practices; Supply Chain Exploitation Practices; Supply Chain Risk Management Practices; Firm Financial Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6553] "Constructs: Entrepreneurial creativity; Opportunity recognition; Resource availability; Career achievement; Social reputation; Entrepreneurial happiness; Capability enhancement; Financial satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6554] "Constructs: Human Resource Management System (Empowerment; Selection; Training; Performance appraisals; Compensation); Strategic Human Resource Management; Competence exploration; Radical innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6555] "Factors: Business ties; Political ties; Exploratory innovation; Exploitative innovation; Competitive intensity; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6556] "Subscales: Organizational commitment (OC); Procedural memory (PM); Peripheral vision (PV); Continuous Learning (CL); Organizational Performance (OP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6557] "Factors: Calculative commitment; Sustainable competitive advantage; Long-term orientation; Technological turbulence; Affective commitment; Service innovation; Adoption intention; Actual adoption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6558] "Subscales: Identity diffusion; Reality testing; Use of primitive defenses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6559] "Factors: Generic; Shift-Persist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6560] "Subscales: Effects on daily living activities and psychology; Effects on social activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6561] "Factors: Physical well-being; Social/family well-being; Emotional well-being; Functional well-being; Additional concerns/palliative care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6562] "Factors: Material self-projection; Materialistic evaluation of others; Emotional self-assurance; Self-deservingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6563] "Factors: Negative Actions; Positive Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6564] "Subscales: Life changes; Concerns about infection; Concerns about school; Concerns about home confinement; Concerns about basic needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6565] "Factors: Social Isolation; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6566] "Factors: Familiarity (FAM); Trust (TR); Attitude (ATT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6567] "Factors: Socially Rewarding Self-Presentation; Trendiness; Escapist Addiction; Novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6568] "Constructs: Purchase intention; Attitude toward the reviewed product; Attitude toward the reviewed seller; Review impression; Perceived diagnosticity of negative reviews; Response relevance; Response rate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6569] "Subscales: Understanding in programming (UP); Support for programming (SP); Expectation of programming (EP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6570] "Subscales: Breast Cancer Known risk factors; Breast Cancer Risk lay beliefs; Breast Cancer Symptoms; Cervical Cancer Known risk factors; Cervical Cancer Risk lay beliefs; Cervical Cancer Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6571] "Subscales: Informational support (IS); Emotional support (ES); Trust in peers (TR); Norm of reciprocity (NR); Intention to offer support (INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6572] "Factors: Information sharing; Cool and new trend; Relaxing entertainment; Companionship; Boredom/habitual pass time; Information seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6573] "Factors: In-person rejection from White men; White supremacy in intimate contexts; Online rejection from White men; Stress from race/ethnicity-based rejection; Abuse and denigration based on race/ethnicity; Intimacy-related hopelessness; Rejection from Men of Color; Race/ethnicity-based fetishization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6574] "Factors: Perceived Ephemerality; Perceived Usefulness; Perceived Intrusion; Perceived Controllability; Perceived Severity; Self-Disclosure Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6575] "Factors: Peer situations; Physical challenge; Separation/preschool; Performance situations; Unfamiliar adults; General novel situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6576] "Subscales: Sociolinguistic markers; Ethnic markers; Socioeconomic markers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6577] "Factors: Emotional stability; Extraversion; Openness to experience; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6578] "Hypothesized Subscales: Skills; Knowledge; Attitude. Shared Skills and Knowledge Factors: Typical Clients; Special Clients; Conservative Clients; Ethically Complicated Clients. Attitude Factors: General Sexual Attitudes; Valuing Sexual Health Training; Open to Providing Sexual Help; Conservatism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6579] "Factors: Perceived agency; Perceived experience; Customer satisfaction; Robot service failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6580] "Subscales: Mania; Envy; Manic reparation; True reparation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6581] "Subscales: Expectation Beliefs (EB); Attainment value (AV); Intrinsic value (IV); Utility value (UV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6582] "Subscales: Co-brooding; Co-reflection. Factors: Consequences of the problem; Negative feelings; Causes of the problem; Non-understood parts of the problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6583] "Dimensions: Compliance (General; Sanitation); Helping; Safety; Voice; Initiative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6584] "Model Factors: Occupational Calling; Prosocial Motivation; Daily Depletion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6585] "Subscales: Transformational; Transactional; Neutral; Laissez-faire; Toxic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6586] "Factors: Consuming outside school (CON); Communicating outside school (COM); Creating outside school (CRE); Sharing (SHA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6587] "Factors: Exposure to Severe Medical Trauma; Unusual Operations; Exposure to Self; Victims Known; Cases Involving Children; Trauma to Self; Known Suicide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6588] "Subscales: Perceived wait time; Reappraisal; Suppression; Anger; Worry; Future loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6589] "Subscales: Teaching Styles (ST); Innovative Teaching Practices (IN); Classroom Climate (CL); Asking Questions (QU); Overcoming Barriers (BR); Confidence (CO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6590] "Subscales: Compassion for others; Compassion from others; Compassion for self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6591] "Factors: Anxiety about the Self-concept; Reflections on the Self-concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6592] "Subscales: Perceived behavioral control; Optimism; Attitude; Outcome expectancy; Reinforcement; Intentions; Goals/priority; Innovation characteristics; Innovation strategies; Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6593] "Factors: Trauma to Self; Victims Known to Fire-Emergency Worker; Multiple Casualties; Incidents Involving Children; Unusual or Problematic Tactical Operations; Exposure to Severe Medical Trauma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6594] "Scales: Climate behaviors; Climate concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6595] "Scales: Climate behaviors; Climate concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6596] "Subscales: Technique-Specific Shared Trauma; Personal Trauma; Professional Posttraumatic Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6597] "Subscales: Task-Technology Fit (TTF); Too Little; Too Much."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6598] "Subscales: Autonomy; Variety; Significance; Identity; Feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6599] "Subscales: Institutional support; Technology self-efficacy (TSE); Teacher beliefs (TBFC); Teaching strategies (TS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6600] "Factors: Consuming inside school (InCON); Creating inside school (inCRE); Sharing inside school (InSHA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6601] "Subscales: Physical activity; Predisposing (Am I able; Is it worth it); Enabling (Access to infrastructure; Opportunity to take part in PA); Reinforcing (Parents; Coaches); Physical self-concept (Perceived sport competence; Perceived cardiovascular endurance; perceived Strength)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6602] "Factors: Customer centricity; Marketing innovativeness; Demand uncertainty; Industry competition; Technological turbulence; Financial performance; Access to affordable financial resources via formal financial intermediaries; Growth mindset."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6603] "Factors: Social media marketing activities; Self-brand connections; Brand engagement in self-concept; Brand attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6604] "Factors: Regulatory oversight (RO); Fulfilling tourism contracts (FTC); Travel feedback processing (TFP); Tourism contract compliance (TCC); Truth in advertising (TIA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6605] "Subscales: Mission Analysis; Goal Specification; Strategy Formulation and Planning; Monitoring Progress toward Goals; Systems Monitoring; Team Monitoring and Backup; Coordination; Conflict Management; Motivating and Confidence Building; Affect Management. Factors: Transition Processes; Action Processes; Interpersonal Processes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6606] "Factors: Self-improvement and Self-Reflections; People and Principles Orientation; Resilience; Social Competence; Problem-Solving; Mentorship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6607] "Factors: Intent to hire; Attitudes-productivity; Attitudes-challenges; Subjective norms; Behavioral control"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6608] "Domains: Social; Fine motor; Language; Gross motor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6609] "Subscales: Social relationships; Leisure habits; Risk-taking behaviors; Eating habits; Search for clean air; Sun protection; Physical activity; Water drinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6610] "Subscales: Reporting diagnoses; Recruiting and examination services; Individualized support plans; Barrier-free services; Assistance with activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6611] "Factors: Low-Risk; High-Risk; Formal Political."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6612] "Factors: Being in the Moment; Mindful discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6613] "Subscales: School performance; Peer relationships; Family relationships; Home duties/self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6614] "Factors: Choice within certain limits; Rationale for demands and limits; Acknowledgement of feelings; Threats to punish; Performance pressures; Guilt inducing criticisms; Autonomy supportive parenting; Controlling parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6615] "Factors: Negative cyberbullying attitudes (NCA); General cyberbullying characteristics (GCC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6616] "Subscales: Rivalry; Suppliers; Entry; Substitutes; Buyers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6617] "Factors: Perceived Competitive Threat; Fear of Failure (Fear of Shame & Embarrassment; Fear of Upsetting Important Others; Fear of Losing Social Influence); Moral Relativism; Moral Disengagement (Diffusion of responsibility; Displacement of responsibility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6618] "Subscales: Readiness to talk with your doctor; Readiness to talk with your family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6619] "Factors: Promoting patient participation; Maintaining dignity; Preparedness; Empathic understanding; Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6620] "Factors: Activities performed after a fall episode; Communication to health technicians of the institution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6621] "Factors: Hedonic motives; Eudaimonic motives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6622] "Domains: Physical; Psychological; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6623] "Subscales: Science continuing motivation (Science CM); Technology continuing motivation (Technology CM); Engineering continuing motivation (Engineering CM); Mathematics continuing motivation (Mathematics CM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6624] "Factors: In-session activity; Therapy-related processing; Therapist-oriented passivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6625] "Factors: Pre-perceived benefit; Initial perceived benefit; Initial self-disclosure; Continued self-disclosure; Initial use; Pre-privacy concern; Initial privacy concern; Continued use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6626] "Scales: Psychological Wellbeing; Psychological Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6627] "Subscales: Understanding Trauma; Safety; Trust; Peer Support; Collaboration; Empowerment; Cultural Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6628] "Subscales: Understanding Trauma; Safety; Trust; Peer Support; Collaboration; Empowerment; Cultural Sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6629] "Factors: General factor; Physical environment; Learning materials/enriched surroundings; Variety of experiences and family social engagement; Acceptance and responsivity; Regulatory activities: Risk taking; Regulatory activities: Rules and routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6630] "Scales: Psychological Wellbeing (PWS); Psychological Distress (PDS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6631] "Subscales: Autonomy Support (AS); Competence Support (CT); Relatedness Support (RS); Autonomy Thwarting (AT); Competence Thwarting (CT); Relatedness Thwarting (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6632] "Subscales: Autonomy Support (AS); Competence Support (CT); Relatedness Support (RS); Autonomy Thwarting (AT); Competence Thwarting (CT); Relatedness Thwarting (RT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6633] "Factors: Inability to Inhibit; Oversharing; Inappropriate Comments; Inappropriate Exposure; Overly Flirtatious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6634] "Subscales: Conventional Activism; High-Risk Activism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6635] "Factors: Coping skills; Depression; Suicidal ideation; Narcissism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6636] "Factors: Manage; Pull; Lenient; Effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6637] "Subscales: Learned helplessness (LH); Mastery Orientation (MO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6638] "Subscales: Reality; Causes; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6639] "Subscales: Sociopolitical; Personal Well-Being; Ease With Diversity; Environmental Attitude; Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6640] "Subscales: Motor tic severity; Vocal tic severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6641] "Factors: Technology Acceptance Model (Perceived ease of use; Perceived usefulness; Intention to use); User Experience (Pragmatic quality; Hedonic Quality – Stimulation); Cybersickness (Nausea; Oculomotor); Presence (Ability to act; Ability to examine; Interface quality; Self-assessment of performance; Realism); Personal innovativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6642] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6643] "Factors: Rehearsal (RE); Elaboration and organization (EO); Critical thinking (CT); Metacognitive self-regulation (ME); General strategy use (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6644] "Constructs: Gamification; Social interaction; Perceived usefulness; Perceived ease of use; Behavioral intention; Perceived enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6645] "Subscales: Targeted threat risk indicators; Weapons; Environmental risk factors; Mental health risk factors; Behavioral risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6646] "Subscales: App loyalty; External motivation to use health app; Engagement; Intrinsic motivation; Level of challenge; Need for autonomy; Need for competence; Need for social interaction; Need for relatedness; Perceived playfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6647] "Constructs: Pehchaan (Friendship component); Len-den (Reciprocity component); Bharosa (Trust component); Long-term orientation; Satisfaction; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6648] "Factors: Networking orientation; Relational learning; Social network relationships; Business relationships; Relational rents; Institutional support; Dysfunctional competition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6649] "Factors: Hopelessness; Hopefulness; Stress; Anger; Status quo acceptance; Upward adaptation; Opportunism; Relationalism; Commitment to mainstream supplier; Ethnic partner preference; Ethnic identification; Assimilation proneness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6650] "Subscales: Financial Attitude; Financial Self Efficacy (FSE); Financial Planning Activity; Financial Management Behavior (FMB); Gamifying Features (GF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6651] "Constructs: Sustainability-oriented innovation outcomes (Processes; Organizational; Products; Services; Marketing); Alliance proactiveness; Alliance portfolio coordination; Customer turbulence; Competitor turbulence; Tech turbulence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6652] "Factors: Control of Symptoms; Maintaining Functioning; Behaviour Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6653] "Factors: Controlling Symptoms (SE-SC); Maintain Functioning (SE-MF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6654] "Factors: Community attractiveness; Community receptiveness; Community cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6655] "Factors: Teaching Presence; Social Presence; Cognitive Presence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6656] "Scales (Subscales): Motivation (Self-Efficacy for Learning & Performance; Test Anxiety: Task Value; Extrinsic Goal Orientation; Negative Control of Learning Beliefs): Learning Strategies (Meta-cognitive Self-regulation; Effort Regulation; Time Management; Organization; Peer Learning; Elaboration; Rehearsal; Critical Thinking; Study Environment Management)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6657] "Factors: Cognitive impulsiveness; Planning impulsiveness; Motor impulsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6658] "Subscales: Public-life restrictions; Restricted social contacts; Staying at home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6659] "Subscales: Perseverative thinking; Emotional reactivity; Perseverative behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6660] "Subscales: Time Perspective (TP); Agency Beliefs (AB); Openness to Alternatives (OA); Systems Perception (SP); Concern for Others (CO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6661] "Factors: Trust in the scientific method; Science as a source of hope; Scientists as the only experts; Science as a tool of practical influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6662] "Subscales: Defiance of CDC guidelines; Fear of the COVID-19 virus; Certainty; Severity; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6663] "Subscales: Burden by COVID-19 restrictions; Burden due to worries; Changes in psychopathology; Helpfulness of coping strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6664] "Factors: Physical and Emotional; Cognitive; Vestibular-ocular."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6665] "Subscales: Privacy concern (PCO); Social value (SOV); Hedonic value (HEV); Self-censorship (SCE); Continuance Intention (CON)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6666] "Factors: Transportation into stories; Trust; Personal connection; Advocacy tendency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6667] "Factors: Leisure literacy; Recreationist-environment fit; Cohesion; Self-image congruity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6668] "Factors: Salience; Neglect of duty; Loss of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6669] "Constructs: Trust (TR); Crisis management (CM); Healthcare system (HCS); Solidarity (SOL); Willingness to support a destination (WSD); Travel intention (TI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6670] "Factors: Pro-environmental behaviour; Sustainable intelligence; Biospheric value; Economic responsibility; Socio-cultural responsibility; Environmental responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6671] "Factors: Entertainment motive; Pass time motive; Information motive; Relaxation motive; Parasocial interaction; Perceived well-being; Travel intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6672] "Factors: Exhaustion in one’s parental role; Feelings of being fed up with parenting; Emotional distancing from one’s child(ren)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6673] "Subscales: Emotional exhaustion in one’s parental role; Contrast with previous parental self; Feelings of being fed up with one’s parental role; Emotional distancing from one’s children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6674] "Factors: Role Conflict (RC); Role Ambiguity (RA); Proactive Personality(PP); Employee Creativity (EC); External Representation (ER); Internal Influence (II); Service Delivery (SD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6675] "Factors: COVID-19 Event Strength (CES); Psychological Safety (PS); Supervisor support safety (SSS); Fear of External Threat (FET); Avoidance coping behaviors (ACB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6676] "Factors: Society awareness and media impacts; Interpersonal characteristics and exposure to sexual harassment; Personal activities and religiosity; Sense of self and reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6677] "Subscales: Satisfaction; Cognitive validity; Cognitive accessibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6678] "Factors: Environmental risk perception; National park goal identification; Environmental corporate social responsibility (CSR) perception; Attitude toward environmental CSR; Public employee pro-environmental behavior; Private employee pro-environmental behavior (Energy saving)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6679] "Factors: National characteristics; National capacity; Environmental conditions; National relationships; National identity; Symbolic patriotism; Constructive patriotism; Uncritical patriotism; Psychological ownership; Civilized tourism behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6680] "Subscales: Internalization: Muscular; Internalization: Thin/Low Body Fat; Internalization: Ideal Appearance; Pressures: Family/Peers/Significant Others; Pressures: Media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6681] "Subscales: Internalization: Muscular; Internalization: Thin/Low Body Fat; Internalization: Ideal Appearance; Pressures: Peers/Significant Others; Pressures: Media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6682] "Factors: Negative items; Risk factor; Positive items; General factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6683] "Subscales: Bullying; Mental disorder; Prejudice; Trauma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6684] "Subscales: Challenges associated with caregiving; Support service preferences for caregivers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6685] "Factors: Incidental Involvements; Social/Financial Involvements; Dual Professional Roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6686] "Factors: Physical and Sexual Development; Emotional Responsivity and Communication; Academic and Life Skills; Discipline and Behavior Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6687] "Subscales: Agency; Social Support; Living in the Present; Helping Others; Integration; Outlook."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6688] "Knowledge Factors: Knowledge of efficacy; Knowledge of appropriate usage; Knowledge of resistance. Belief Factors: Summary attitudes towards taking antibiotics; Negative attitudes towards antibiotics; Positive attitudes towards taking antibiotics; Subjective social norm; Descriptive social norm; Self-efficacy to ask for antibiotics; Anticipated regret concerning not receiving antibiotics; Anticipated regret concerning receiving antibiotics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6689] "Factors: Timeline chronic; Identity; Personal control; Illness coherence; Treatment control; Timeline cyclical; Emotional representation; Consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6690] "Subscales: Internal trust (IT); Food legalizing (FL); Food enjoyment (FE); Sensitivity to physiological signals of hunger (SH); Sensitivity to physiological signals of satiation (SS); Self-efficacy in using physiological signals of hunger (SEH); Self-efficacy in using physiological signals of satiation (SES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6691] "Subscales: ICE-HCP-IBQ-Asthma; ICE-HCP-IBQ-ADHD."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6692] "Factors: Fertility potential; Children's health risk and future life; Partner disclosure; Barriers to getting pregnant/having children; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6693] "Dimensions: Sleeping/Resting; Eating; Going to the Toilet When Necessary; Adjusting One’s Activities when Ill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6694] "Subscales: Compensation; Criticism; Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6695] "Factors: Postvention following a suicide; Nonjudgmental attitudes toward people affected by suicide; Talking with a suicidal person; Pastoral care with a suicidal person."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6696] "Factors: Ethical climate; Public service motivation; Psychological safety; Internal whistleblowing; External whistleblowing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6697] "Factors: Sense of unity (IU); Identity flexibility (IF); Dialogue (ID)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6698] "Factors: Personal Health Concerns; Privacy Concerns; Trust; Intention to share personal health data; Intention to create; Perceived benefits; Perceived risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6699] "Dimensions: Complementarity of Knowledge; Complementarity of Capabilities; Joint Innovative Capabilities; Service Innovation; Competitive Intensity; Demand Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6700] "Factors: Standardization of Process and Content Interfaces; Structured Data Connectivity; Modular Interconnected Processes; Fluid Partnering; Information quality; Innovation speed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6701] "Domains: Affective; Cognitive; Behavioral; Functional-aesthetic body image."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6702] "Subscales: Motor; Verbal; Visual; Facial expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6703] "Factors: Psychological contract breaches; Trust; Commitment; Relational voice; Neglect; Relationship loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6704] "Factors: IT engagement (ITE); Strain (STR); IT-enabled productivity (PRO); Normative pressure on IT use (NOP); Information load (IL); Averting IT use dependence (AVD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6705] "Subscores: Motor; Verbal; Facial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6706] "Factors: Threat Severity; Threat Susceptibility; Privacy Concern; Self-efficacy; Assurance Mechanism Effectiveness; Protection Motivation; Privacy Customization; Self-disclosure Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6707] "Subscales: Shortest path isolation contact (SPI-C); Shortest path isolation distance (SPI-D)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6708] "Subscales: Trust in Institutions; Participation in Organizations; Collective Efficacy; Friendship Ties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6709] "Factors: Ethical considerations; Treasuring life; Naturalistic belief; Practical considerations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6710] "Factors: Awareness and Relational Resistance; Participation in Resistance Activities and Organizations; Interpersonal Confrontation; Leadership for Resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6711] "Factors: Authenticity (AUT); Employee Helpfulness (EH) (Service employees at the destination . . .); Customer Delight (CD); Place Identity (PI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6712] "Domains: Nutrition; Exercise; Blood glucose monitoring; Oral medications; Insulin."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6713] "Subscales: Positive Affect (AFM-PA); Negative Affect (AFM-NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6714] "Factors: ATQ-P-Model 9 [Individual’s daily functioning (ATQ-P-D); Self-evaluation (ATQ-P-S); Others’ evaluation of self (ATQ-P-O); Future expectations (ATQ-P-F).]; ATQ-P-Model 12 [Individual’s daily functioning (ATQ-P-D); Self-evaluation (ATQ-P-S); Others’ evaluation of self (ATQ-P-O); Future expectations (ATQ-P-F); Positive social functioning (ATQ-P-SF).]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6715] "Factors: Somatic (PHQ-9-S); Nonsomatic/affective (PHQ-9-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6716] "Subscales: Knowledge; Attitude toward normal delivery; Attitude toward caesarean section; Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6717] "Factors: Increasing structural job resources; Increasing social job resources; Increasing challenging job demands; Decreasing hindering job demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6718] "Dimensions: Structural job resources; Social job resources; Challenging job demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6719] "Subscales: Parental beliefs; Child engagement with music; Parent initiation of singing; Parent initiation of music-making; Parent initiation of musical behavior; Breadth of musical exposure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6720] "Factors: Perceived Ubiquity; Contextual Offering; Visual Attractiveness; App Incentives; Impulsiveness; Perceived Value; Repurchase Intention; Satisfying Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6721] "Subscales: Fantasies-Any Target; Desires-Any Target; Activities-Any Target; Fantasies-Child; Desires-Child; Activities-Child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6722] "Variables: Environmental Concern (EC); Environmental knowledge (EK); Emotional value (EV); Functional value (FV); Guest intention (GI); Social value (SV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6723] "Factors: Perceived structural stigma (PSS); Perceived other stigma (POS); Self stigma (SS); Personal stigma (PS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6724] "Subscales: Concrete thinking; Abstract thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6725] "Dimensions: Positive Aspects; Negative Aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6726] "Subscales: Service quality; Learning outcomes; Employability; Image; Value; Satisfaction; Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6727] "Subscales: Contamination anxiety; Countermeasure compliance; Mental health impact; Specific stressor impact; Institutional & political trust; Conspiracy beliefs; Social cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6728] "Categories: Perceived relational and internal security; Positive and predictable quality of life; Interpersonal support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6729] "Subscales: Goal of developing positive attitudes toward mathematics (Attitude Goal); Goal of developing efficiency in solving mathematical problems (Efficiency Goal); Goal of developing mathematical reasoning (Reasoning Goal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6730] "Subscales: Formal Instrumental support; Formal Informational support; Formal Psychological support; Informal Instrumental support; Informal Informational support; Informal Psychological support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6731] "Subscales: Age at release; Persistence of sexual offending; Sexual deviance; Relationship to victims; General criminality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6732] "Subscales: Fatigue-avoidance goal; Mood-management goal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6733] "Domains: Insomnia; Delayed sleep phase; Insufficient sleep syndrome; Obstructive sleep apnea."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6734] "Subscales: Boldness; Meanness; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6735] "Factors: Primitive Defenses/Identity Diffusion scale; Reality Testing scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6736] "Factors: Denial of Disability; Affirmation of Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6737] "Factors: Diagnosis/symptoms (D/S); Etiology (ET); Treatment (TR); Endorsement of stigma (ST)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6738] "Factors: Choosing the best; Alternative search."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6739] "Factors: Treatment quality; Diagnosis; Self management; Worries and concerns; Self efficacy; Decision to seek care; Psychosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6740] "Factors: Surface acting; Deep acting; Expression of Naturally felt emotions; Emotion termination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6741] "Factors: Brand appeal; Brand differentiation; Brand recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6742] "Dimensions: Personal Spirituality; Communal Spirituality; Environmental Spirituality; Transcendental Spirituality. Sections: Ideals for Spiritual Health; Lived Experience of Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6743] "Subscales: Positive; Negative; Neutral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6744] "Factors: Impulse control; Self-discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6745] "Subscales: Perceived susceptibility to health problems; Perceived consequences of health problems; Perceived benefits of participating in an online health program; Perceived barriers to participation in an online health program; Online health program self-efficacy; Social influence (online health program); Intention to participate in an online health program; Participation in an online health program; Organizational health behavior; Availability of task-related support from coworkers; Availability of family-related support from coworkers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6746] "Subscales: Organizational trust; Job strain; Social support; Reward; Job satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6747] "Factors: Innate predilection; Abstinence; Peer pressure; Fear of the relationship consequences: Family atmosphere; Risk taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6748] "Subscales: Self-Confidence; Self-Acceptance; Fulfilled Experience; Authenticity and Assertiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6749] "Subscales: Critical clinical reasoning; Evidence-informed practice activities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6750] "Subscales: Positive mood (CL-P); Negative mood (CL-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6751] "Factors: Well-being; Voluntary activities; Basic needs; Intermediate needs; Higher needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6752] "Factors: Behavioral Inhibition System-Anxiety (BIS-A); Behavioral Activation System-Fear (BIS-F); Behavioral Activation System-Reward Responsiveness (BAS-RR); Behavioral Activation System-Drive (BAS-D); Behavioral Activation System-Fun seeking (BAS-FF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6753] "Subscales: External/appearance qualities of beauty (BCBS-E); Internal qualities of beauty (BCBS-I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6754] "Factors: Role definition; Work content; Personal relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6755] "Factors: Self-Reflectivity (Self MON); Critical Distance (DIF / DEC); Understanding Others' Minds (UOM); Mastery (M). Subscales: Monitoring; Differentiation; Decentration; Integration; Mastery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6756] "Subscales: Understanding one's own mind (self-self reflexivity); Decentering-differentiation (critical distance); Mastery (expertise in using mental contents); Understanding other's mind (self-other monitoring and understanding)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6757] "Factors: Exploration; Strategic planning; Detailed planning; Prognosis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6758] "Subscales: Respect; Material success and achievements; Religion; Individualism; Family support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6759] "Factors: Threat; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6760] "Subscales: Frequency; Relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6761] "Factors: Positive Religious Attitudes (PRA); Negative Religious Attitudes (NRA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6762] "Factors: Psychosis; Eating, Sleep and Motor Activity; Mood; Disinhibition; Euphoria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6763] "Factors: Lifestyle of Obese (LSO); Qualities and Characteristics of Obese (QCO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6764] "Factors: Weight Control Myths (WCM); Negative Characterization Myths (NCM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6765] "Subscales: Sensory; Motor; Autonomic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6766] "Subscales: Sensory; Motor; Autonomic symptoms and functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6767] "Factors: Flexibility/rigidity (FR); Languid/vigorous (LV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6768] "Subscales: Insomnia Catastrophizing Scale–Nighttime(ICS-N); Insomnia Catastrophizing Scale–Daytime (ICS–D)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6769] "Factors: Successful adjustment to living with HIV and taking medications; Positive adjustment to living with HIV."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6770] "Subscales: Obligation to Present an Image of Strength; Obligation to Suppress Emotions; Resistance to Being Vulnerable; Intense Motivation to Succeed; Obligation to Help Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6771] "Scales: Protective factors; Risk factors. Subscales: Models protection; Controls protection; Support protection; Models risk; Opportunity risk-availability; Opportunity risk-gangs; Vulnerability risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6772] "Factors: Disclosure; Clarity; Accuracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6773] "Factors: Food Responsiveness; Enjoyment of Food; Slowness in Eating; Satiety Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6774] "Factors: Depression subscale; Mania subscale; Total score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6775] "Factors: SCS-reminder; SCS-social; SCS-positive; SCS-weak; SCS-suicide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6776] "Subscale: Negative attributions and inferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6777] "Subscales: Emotional processing; Emotional expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6778] "Subscales: Cognitive Concealment; Affective Concealment; Behavioral Concealment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6779] "Subscales: Driving frequency; Attitude towards formats of VMS; Attitude towards contents of VMS; Driver decision-making; Effectiveness of VMS message; Perceived quality of service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6780] "High Standards; Order; Discrepancy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6781] "Factors: Callous scale; Antisocial; Egocentric."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6782] "Factors: Machiavellian approach (App); Machiavellian avoidance (Av)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6783] "Factors: Reappraisal; Cognitive distraction; Aggressive suppression; Worry; Behavioral distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6784] "Factors: Reading; Interacting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6785] "Factors: Mental fatigue (ChCFS-Mental); Physical fatigue (ChCFS-Physical)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6786] "Subscales: International problem behavior (IPB); Interpersonal problem-solving inventory (IPSI) [Factors: positive problem-solving behavior (PPSB); negative problem-solving behavior (NPSB); rational problem-solving behavior (RPSB); impulsive behavior (IB); avoidance behavior (AB)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6787] "Factors: Fat Activism; Health Beliefs; Interpersonal Respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6788] "Factors: Human-oriented Fluency; Robot-oriented Fluency; Team-oriented Fluency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6789] "Factors: Identity; Self-direction; Empathy; Intimacy. Subscales: Self; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6790] "Factors: PREPS-Preparedness Stress (PS); PREPS-Prenatal Infection Stress (PIS); PREPS-Positive Appraisal (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6791] "Subscales: Rewarding; Able; Willing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6792] "Factors: Positive Couples Extrinsic Emotion Regulation (CEER+); Negative Couples Extrinsic Emotion (CEER-)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6793] "Subscales: Irrationality; Rationality. Factors: Irrational Demandingness; Irrational Catastrophizing; Irrational Frustration Intolerance; Irrational Self-Downing; Rational Preference; Rational Realistic Evaluation of Badness; Rational Frustration Tolerance; Rational Self-Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6794] "Factors: Bully; Assistant; Victim; Defender; Outsider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6795] "Subscales: Bully; Assistant; Victim; Defender; Outsider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6796] "Factors: Faux pas (FP); Non-faux pas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6797] "Factors: Facilitators (Obligation to tell the facts necessary to understand what happened; Obligation to make it clear that what happened was a mistake; Believing disclosure is right even if it comes at a significant cost; Believing disclosure is important because that is how I would want to be treated); Impediments (Negative patient/family reaction; Malpractice litigation; Professional discipline; Loss of reputation from colleagues; Blame from colleagues; Negative publicity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6798] "Factors: Non-cognitive beliefs; Subjective norms; Intention; Anticipated regret; Descriptive norms; Attitude; Perceived control; Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6799] "Factors: Affect and Communication; Autonomy Promotion; Behavioral Control; Psychological Control; Revelation; Humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6800] "Subscales: Psychological control (PC); Behavioral control (BC); Affection and communication (AC); Humor (H); Promotion of autonomy (PA); Self-disclosure (SD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6801] "Factors: Perceived competency and knowledge in dementia care; Attitudes towards Alzheimer Plan; Practices (cognitive evaluation); Attitudes towards dementia; Attitudes towards collaboration with nurses and other health care professionals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6802] "Factors: Unconditional Permission to Eat; Eating for Physical Rather than Emotional Reasons; Reliance on Hunger and Satiety Cues; Body-Food Choice Congruence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6803] "Subscales: Health; Environment; Animal rights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6804] "Factors: Vaccine knowledge; Perceived negative publicity; Information forwarding; Systematic processing; Risk perception; Protective behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6805] "Factors: Perceived stigma; No perceived stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6806] "Subscales: Aesthetic appreciation; Intense aesthetic experience; Creative behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6807] "Factors: Decisional procrastination; Implemental procrastination; Timeliness and promptness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6808] "Factors: Emotional contagion (EC); Attention to others' feelings (AOF); Prosocial actions (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6809] "Factors: Dysphoria; Psychic anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6810] "Subscales: Traffic violations; Ordinary violations; Distractions; Impulsive behaviors; Errors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6811] "Factors: Mutilation and Imperfectness; Legacy for Family; Altruism; Detachment; Eradication of Hope; Burden on Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6812] "Factors: Attitude toward waterpipe tobacco smoking (ATT); Subjective norms (SN); Perceived behavioral control (PCB); Behavioral intention (INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6813] "Subscales: Cheer; Calm; Pride; Anger; Fear; Remorse. Factors: Positive ITLEs; Negative ITLEs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6814] "Scales: Collaboration technology use; Perceived persistence of communication; Response expectations; Technology-assisted supplemental work (TASW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6815] "Subscales: Steering; Friendly; Understanding; Accommodating; Uncertain; Dissatisfied; Reprimanding; Enforcing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6816] "Factors: Enjoyment in Company; Self-efficacy versus boredom; Sense of humor; Imagination; Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6817] "Factors: Family influence; Peer influence; Social media influence; Covid-19 fear; Attitude toward giving up unhealthy foods; Health consciousness; Healthy nutrition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6818] "Factor: Task; Context."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6819] "Factors: Thought Suppression; Thought Substitution; Distraction; Avoidance of Threatening Stimuli; Transformation of Images into Thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6820] "Factors: Personal Resources (PR); Family Resources (SR-F); Peer Resources (SR-P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6821] "Subscales: Balance; Working Memory; Response Inhibition; Self-Regulation; Rhythm/Coordination; Attention; Motor Speed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6822] "Factors: Perceived Benefits (Weight loss); Perceived Barriers (Weight loss); Perceived Threat (Weight Loss); Self-efficacy (Weight loss); Weight Loss Intention; Performance Expectancy (APP); Risk Perception (APP); Behavioral Intention (APP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6823] "Subscales: Food responsiveness; Emotional over-eating; Enjoyment of food; Desire to drink; Satiety responsiveness; Slowness in eating; Emotional under-eating; Food fussiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6824] "Domains: Core foods; Non-core foods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6825] "Factors: Decision-making approach; Decision-making avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6826] "Factors: Digital mindset; Digital operations; Digital strategy; Professional self design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6827] "Factors: Relationship with staff; Emotional status; First moments with the new born; Feelings at 1 month postpartum."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6828] "Subscales: Emotions during childbirth; Interactions with healthcare professionals; First moments with the baby; Delayed emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6829] "Subscales: Arousal; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6830] "Factors: Autonomy Support; Coercive Control; Snack Structure; Healthy Structure; Modelling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6831] "Factors: Attitude (ATT); Subjective Norms (SN); Perceived Behavioral Control (PBC); Behavioral Intention (BI); Trust; Perceived Moral Norms (PMN); Domestic Country-of- Origin Attitude (COATT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6832] "Subscales: Negative Fat Talk; Negative Muscle Talk; Positive Body Talk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6833] "Factors: Tier 2 and 3 Related; Tier 2 Specific; Tier 3 Specific."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6834] "Subscales: Biological basis; Effort constructivism; Immutability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6835] "Subscales: Parents; Peers; Romantic partners; Media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6836] "Factors: Appearance-Negative; Appearance-Positive; Weight (Girls); Negative appearance; Positive appearance (Boys)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6837] "Scales: Appearance Satisfaction; Body Functionality Satisfaction; Personality Satisfaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6838] "Subscales: Appearance Schemas; Body Functionality Schemas; Personality Schemas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6839] "Subscales: Fundamental; Impulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6840] "Subscales: Fundamental; Impulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6841] "Factors: Verbal Affirmation; Experience Sharing; Empathic Voice; Emotional Reactivity; Empathic Touch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6842] "Subscales: COVID-related worries; Distress related to COVID-induced social restrictions/isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6843] "Subscales: Cognitive self-regulation; Emotional self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6844] "Factors: Use of deception; Gift giving; Interest in the victim’s environment; Sexualization; Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6845] "Factors: (1) basic physiological needs; (2) compliance with treatment (and/or ignoring symptoms)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6846] "Subscales: Victim Asked for It; Didn't Mean To; Didn’t Mean To (intoxication); It Wasn’t Really Rape; Victim Lied."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6847] "Subscales: Ability; Effort; Persistence; Preparation; Unity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6848] "Subscales: Challenges Implementing SEL During Distance Learning; SEL Implementation With Students; Educator Use of SE Strategies for Themselves; Guidance, Support, and Priority of SEL; Self-Judgment; Emotional Exhaustion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6849] "Factors: Negation of Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6850] "Subscales: Sad; Anger; Fear; Disgust; Happy; Surprise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6851] "Subscales: Affect & Emotion; Vocalizations; Moving; Daily Routines; Requests; Taking Turns; Creativity; Parent Musical Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6852] "Subscales: Attention & Emotion; Vocalizations; Moving; Daily Routines; Requests; Taking Turns; Creativity; Parent Music Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6853] "Factors: Reactive bystander interventions; Proactive bystander actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6854] "Constructs: Organizational affiliation; Importance to applicants; Potential actions by job seekers; Reported past application choices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6855] "Factors: Political identification; Political disidentification; Overall similarity; Organizational liking; Intentions to pursue employment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6856] "Subscales: Teamwork Climate; Safety Climate; Job Satisfaction; Stress Recognition; Perception of management; Work conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6857] "Subscales: Knowledge of sex workers and prostitution law; Attitudes towards prostitutes and prostitution; Attitudes towards sex workers with HIV and sexually transmitted diseases; Support for FSWs' human rights; Willingness to treat sex workers; Cultural competence assessment for caring for sex workers; Education needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6858] "Subscales: Behavioral perseverance; Cognitive/affective positivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6859] "Subscales: Cognitive/affective positivity; Behavioral perseverance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6860] "Factors: Introvertive Mysticism; Extrovertive Mysticism; Interpretive Mysticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6861] "Factors: Resentment toward the other ethnic groups; Uneasiness with the members of the other groups; Unequal rights; Stigmatization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6862] "Factors: Attachment anxiety (OAS-Anxiety); Attachment-avoidance anxiety (OAS-Avoidance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6863] "Subscales: Motives to join; Contributing factors in volunteering for child rights activities; Perceptions about child rights before and after joining this group; Mediums to engage youth effectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6864] "Subscales: General Trust; Prejudice; Threat; Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6865] "Factors: Job conditions; Job remuneration; Job security; Job flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6866] "Subscales: Disclosure; Clarity; Accuracy; Timeliness; Relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6867] "Subscales: Nomophobia (NP); Interpersonal Conflict (IC); Self-Isolation (SI); Problem Acknowledgment (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6868] "Subscales: Self-assessed action knowledge; Self-assessed reflection; Self-assessed occupational relevance; Perceived characteristics of action knowledge; Perceived characteristics of reflection; Perceived characteristics of occupational relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6869] "Subscales: Perceived Norms (PN); Feeling Ignored (FI); Interpersonal Conflict (IC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6870] "Subscales: Manipulate phonemes (PM); Segment phonemes (PS); Identify phonemes (PI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6871] "Subscales: Emotional Well-Being; Interpersonal Relationships; Self-Determination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6872] "Factors: Restorative Justice; Retributive Justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6873] "Factors: Student cohesiveness; Teacher support; Involvement; Cooperation; Equity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6874] "Subscales: Social implications; Adoption of scientific attitudes; Engagement; Self-efficacy; Self-regulation; Learning goal orientation; Task value; Science career aspirations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6875] "Subscales (28-item CDBS-R): Professionalism/Ethics; Communication; Control. Subscales (24-item CDBS-R): Ethics; Trust; Communication; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6876] "Subscales: Couple religiosity; Couple joint activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6877] "Factors: Mathematics anxiety towards explicit numerical situations; Mathematics anxiety towards general situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6878] "Subscales: Sending photos and/or videos; Sending text messages with erotic/sexual content."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6879] "Subscales: Family; Services; Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6880] "Factors: Routine; Automaticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6881] "Subscales: Emotional deprivation; Abandonment; Mistrust/Abused; Social isolation; Defectiveness; Failure; Dependence; Vulnerability; Enmeshment; Subjugation; Self-sacrifice; Emotional inhibition; Unrelenting standards; Entitlement; Insufficient self-control; Approval-seeking; Negativism; Self-punitiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6882] "Factors: Planning; Strategies; Monitoring/Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6883] "Subscales: Positive Emotions; Engagement; Resilience; Competence; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6884] "Factors: Insecurity; Prosociality; Agonism; Belongingness; Sexuality; Playfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6885] "Factors: Openness; Networking; Assurances of legitimacy; Physical engagement; Emotional engagement; Cognitive engagement; Engagement strategies; Employee engagement; Positive messaging; Negative messaging; Contextual performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6886] "Factors: Presenteeism; Self-concern; Coworker-orientation; Avoidance; Incivility; Workload; Task interdependence; Social desirability; Negative affect; Depletion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6887] "Factors: Awareness; Non-Judgmental; Refocusing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6888] "Subscales: Awareness; Non-judgementallity; Refocusing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6889] "Factors: Examiner's qualities; Working relationship; Examiner's capability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6890] "Factors: Method; Professional; Social; Self-competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6891] "Factors: Social media at work; Work ability index; Willingness to delay retirement; Emotional support; Information support; Work stress; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6892] "Factors: Self; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6893] "Subscales: Engagement; Research-related emotion management; Perceived competence; Applicability of social psychology; Identity as a scientist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6894] "Factors: Craving for Methamphetamine; Social Recognition; Attitude towards Methamphetamine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6895] "Subscales: Attitude (ATT); Subjective norm (NOR); Perceived behavioral control (CON); Behavioral intention (INT); Perceived quality (QUA); Perceived risk (RIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6896] "Subscales: Attentional impulsiveness; Motor impulsiveness; Non-planning impulsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6897] "Factors: Concern; Cooperation; Trust; Curiosity; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6898] "Subscales: Destructive; Protective; Offensive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6899] "Factors: Efficacy Related to the College Application Process; Efficacy Related to Systems Advocacy; Efficacy Related to Direct Services with Disadvantaged Populations; Efficacy Related to Coordination of College Access Events; Efficacy Related to Direct Service with Special Populations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6900] "Subscales: Pedagogical knowledge (PK.xs); Content knowledge (CK.xs); Technological knowledge (TK.xs); Pedagogical content knowledge (PCK.xs); Technological pedagogical knowledge (TPK.xs); Technological content knowledge (TCK.xs); Technological pedagogical content knowledge (TPCK.xs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6901] "Subscales: Positive affect; Negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6902] "Subscales: Social Resistance; Economic Resistance; Environmental Resistance; Pedagogical Resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6903] "Factors: Intention to adopt Firewise activities; Perceived effectiveness of Firewise activities; Perceived risk of wildfire; Trust in agency information; Trust in agency competence; Salient value similarity; Past experience with wildfire (Home attachment; Place identity; Affective attachment; Place dependence; Social bonding); Wildfire Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6904] "Subscales [Factors]: Positive outcome expectancy scale [Facilitation in HIV treatment and management; Psychological relief; Support gained from the partner; Prevention of HIV infection for the partner; Better arrangement for the whole family and self]; Negative outcome expectancy scale [Concern about HIV diagnosis information leakage; Concern about disclosure of sexual orientation; Emotional burden for the HIV-positive MSMW; Psychological burden for the partner; Long-term harm to the relationship with the female sex partner]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6905] "Factors: Positive mother–child interactions (PMCI); Negative mother–child interactions (NMCI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6906] "Subscales: Values‐Based Action (VBA); Pain Willingness (PW); Emotional Acceptance (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6907] "Hypothesized Factors: Brand image; Brand attitude; Consumer brand identity; Purchase intention; Purchase intention; CETSCALE."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6908] "Subscales: Analogy; Anomaly; Antinomy; Antithesis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6909] "Factors: Activation; Social Impairment; Rumination; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6910] "Factors: Malicious envy; Benign envy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6911] "Subscales: Contact/Deployment connection-service member report; Contact/Deployment connection-wife report; PTSD connection-service member report; PTSD connection-wife report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6912] "Factors: Appraisal of own emotions; Appraisal of other’ emotions; Regulation of own emotions; Regulation of others’ emotions; Utilization of emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6913] "factors: Literal level; Inferential level; Evaluative level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6914] "Subscales: Neuroticism (N); Extraversion (E); Psychoticism (P); Lie/Social Desirability (L)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6915] "Factors: Consensus; Satisfaction; Cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6916] "Factor: Ukuba Ngumuntu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6917] "Factors: C-M change beliefs; S-R generation beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6918] "Factors: Irreparability; Blame/unfairness attributions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6919] "Factors: Feelings of revenge; Rumination; Self-denial; Mental paralysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6920] "Subscales: Attitude toward social distance; Social norms to social distance; Behavioral control to social distance; Intention to physical distance; Actual social distancing behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6921] "Factors: Secrecy defense; Direct/Mediated defense; Avoidance defense."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6922] "Factors: Mediated invasion; Verbal invasion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6923] "Blocks: Educational process; Principal; Context; Outcomes. Factors: Educational process as perceived by the principal; Perceived usefulness by the principal; Principal’s perception of the teachers; Principal’s perception of the students; Quality perceived by the principal; Digital culture as perceived by the principal; School identity; Principal’s professional profile; Principal’s personal profile; Price as perceived by the principal; Results as perceived by the principal; Service as perceived by the principal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6924] "Subscales: Cohesion; Students' social control; Teachers' social control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6925] "Subscales: Responsibility; Unacceptable thoughts; Symmetry; Contamination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6926] "Factors: Myths on the effectiveness of psychotherapy; Myths on mental disorders/processes in psychotherapy; Myths concerning the functioning of memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6927] "Factors: Vigor; Dedication; Self-efficacy; Inefficacy; Exhaustion; Depersonalization; Destruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6928] "Factors: Threat to self-concept; Threat of group concept; Personal reputation (in-group); Personal reputation (out-group); Group reputation (in-group); Group reputation (out-group)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6929] "Factors: Artistic; Everyday; Performance; Scholarly; Science."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6930] "Factors: Task self-efficacy (TM-CardioSE); Outcome expectancies (TM-CardioOE); Intention (TMCardioIntent)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6931] "Factors: Career Opportunities; Life Balance; Academic Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6932] "Factors: Financial attitudes (Managing money; Managing risk; Planning ahead; Choosing products); Financial behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6933] "Factors: Fear of giving birth; Fear of bearing a physically or mentally handicapped child; Concern about one’s appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6934] "Factors: Feelings of emotional distress; Perceived inability to cope with stressors; Negative frame of mind regarding one’s plight in life and efficacy in handling its problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6935] "Factors: Knowledge/Skill; Team bonding; Application of learning; Risk management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6936] "Subscales: Behavioral Engagement [BE]; Confidence with Technology [TC]; English Confidence [EC]; Emotional Engagement [EE]; Attitude to learning English with Technology [ET]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6937] "Domains (Variables): Planning and Preparation (Demonstrating Knowledge of Content and Pedagogy; Demonstrating Knowledge of Students; Setting Instructional Outcomes; Demonstrating Knowledge of Resources; Designing Coherent Instruction); Student assessment (Using Assessment in Instruction); Professional responsibilities (Maintaining Accurate Records; Communicating with Parents; Participating in the Professional Community; Growing and Developing Professionally; Showing Professionalism)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6938] "Tasks: Visual-Motor; Visual-Verbal; Auditory-Motor; Auditory-Verbal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6939] "Factors: Unidimensional (Client Insight)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6940] "Factors: Utilitarian Attitude; Digital Virtual Consumption; Role in Decision Making; Network Expansion; Social Privatization; Knowledge Creation; Maven-Like Behavior; Psychological Attachment to Account; Opinion Leadership for Social Network."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6941] "Factors: Internal shame (IS); External shame (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6942] "Subscales: Internal shame; External shame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6943] "Scales: Family support; Family strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6944] "Scales: Friend support; Friend strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6945] "Scales: Spouse/partner support; Spouse/partner strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6946] "Factors: Agency; Social and civic participation (SCP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6947] "Factors: Alcohol use; Drug use; Smoking; Gambling; Binge eating; Hypersexuality/pornography; Excessive video game playing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6948] "Domains: Working Memory (WORK); Shifting (SHIFT); Inhibition (INH); Anger (ANG); Future Orientation (ORT); Problematic Substance Use (SUB); Coping (COP); Sexual Problems (SEX)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6949] "Subscales: Addiction barriers; External barriers; Internal barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6950] "Subscales: Risks; Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6951] "Subscales: Training and Instruction (TI,); Democratic Behavior (DB); Autocratic Behavior (AB); Social Support (SS); Positive Feedback (PF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6952] "Subscales: Training and instruction; Democratic behavior; Autocratic behavior; Social support; Positive feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6953] "Factors: Compulsive dependency (CD); Illusion of control (IC); Endurance of conflicts (EC); Withdrawal symptoms (WS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6954] "Factors: Work-Life Conflict; Work Perfectionism; Work Addiction; Unpleasantness; Withdrawal Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6955] "Factors: Psychology; Air pollution; Allergens (animals); Allergens (pollen); Physical Activity; Infection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6956] "Factors: Psychological; Allergens (animal); Allergens (pollen); Allergens (general); Physical activity; Air pollution/irritants; Infection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6957] "Subscales: Psychology; Climate/Temperature; Allergens; Physical activity; Infection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6958] "Subscales: Avoidance; Acceptance; Harnessing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6959] "Subscales: Everyday experiences; Major life events; Discrimination burden; Effect of skin color. Factors: Occurrence; Frequency; Attribution; Coping responses; Comparative frequency; Stressful life; Productive life; Life made hard; Treatment by Whites; Treatment by Blacks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6960] "Subscales: Voice; Neutrality/Impartiality; Distributive Justice/Bias; Respect; Legitimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6961] "Subscales: Economic strain; Psychosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6962] "Factors: Death anxiety; Fear of the future; Time passing; Thoughts of death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6963] "Subscales: Describing; Nonreactivity; Nonjudging; Act with Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6964] "Subscales: Instructional Strategies (IS); Behavior Management Strategies (BMS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6965] "Factors: Competence; Character; Connection; Caring; Confidence; Contribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6966] "Subscales: Attitude and support barriers; Services and assistance barriers; Physical and structural barriers; Policy barriers; Work and school barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6967] "Factors: Personal responsibility; Priorities of safety vs. effectiveness; Safety knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6968] "Subscales: Perceived Choice; Clear Goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6969] "Constructs: Telepresence; Challenge; Body Ownership; Control; Usefulness; Playfulness; Behavior Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6970] "Subscales: Warmth; Competence; Depressive Symptoms; Emotional regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6971] "Factors: Coping options; Professional support; Participation; Emotional experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6972] "Constructs: Food taste; Restaurant ambience; Forgiveness intention; Consumer empathy toward the firm; Mood; Perceived service failure severity; Sense of power; Perceived fairness; Self-importance; Perceived power against firms-before the service failure; Chronic sense of power; Perceived power against the online store-after recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6973] "Subscales: Individualizing-resolution; Binding-resolution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6974] "Factors: Perceived Brand Globalness; Perceived Brand Localness; Brand Competence; Brand Warmth; Perceived Functional Value; Perceived Emotional Value; Perceived Social Value; Purchase Intention; Brand familiarity; Brand ownership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6975] "Factors: Servant leadership; Team reflexivity; Coworker support climate; Creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6976] "Factors: Reactive Avoidance; Denial; Active Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6977] "Factors: Empathy (Empati Maddeleri); Alleviate Suffering (Acıyı Hafifletme Maddeleri)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6978] "Subscales: Positive subscale (POEE-2); Negative subscale (NOEE-2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6979] "Factors: Positive OEE (POEE); Negative OEE (NOEE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6980] "Subscales: Distress; Somatization; Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6981] "Factors: Schizo-paranoid groups; Anxious-dependent; Impulsivity and anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6982] "Factors: Divinely seeking; Religious faith; Coping attitude; Sense of possibility; Spiritual and social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6983] "Factors (Dimensions): Self‐Care Maintenance (Illness-related; Health‐promoting behaviour); Self‐Care Monitoring; Self‐Care Management scale (Autonomous behavior; Consulting behaviour)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6984] "Factors: Couchsurfing involvement; Destination familiarity; Overall destination image; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6985] "Factors: Education experience; Esthetic experience; Entertainment experience; Escapism experience; Agentic feeling; Quality perception; Tourist attitudinal loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6986] "Factors: Entrepreneurial inclination; Entrepreneurship promotion; Entrepreneurial content; Passion for learning; Knowledge application; Independent learning; Knowledge transfer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6987] "Factors: Healthy Orthorexia; Orthorexia Nervosa."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6988] "Factors: Customer engagement; Brand attachment; Customer trust; Brand loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6989] "Factors: Traffic Errors; Control Errors; Stunts; Speed Violations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6990] "Factors: Task drive; Indecisiveness; Social disinterest; Active mobilization; Creative efforts; Torpidity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6991] "Factors: Functionally motivated consumer innovativeness; Hedonically motivated consumer innovativeness; Cognitively motivated consumer innovativeness; Socially motivated consumer innovativeness; Overall image; Word-of-mouth intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6992] "Subscales: Physical and psychological well-being (PsPhW); Psychological load and daily life (PsBDL); Relations with the spouse (RS); Relations with the psychiatry team (RPT); Relations with the family (RFa); Relations with friends (RFr) and Material burden (MB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6993] "Supports Factors: Oppression; Equality; Wellbeing; Parental Capability; Personal Importance. Barriers Factors: Religion; Suggestibility; Appropriateness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6994] "Facets (Subscales): Professional competence (Conceptual thinking; Organizational/ process knowledge; Problem perception; Solution development); Methodological competence (Presentation; Scheduling; Reflectivity; EDP/technology handling; Concentration; Task assignment); Social competence (Positioning one’s point of view; Motivating others; Acceptance/acknowledgement; Initiation/maintenance of contacts; Considerateness); Personal competence (Participation; Assuming responsibility/initiative; Interest in change; Self management)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6995] "Scales: Requirements; Resources. Subscales: Technical problems; Time pressure; Pressure to perform; Constant availability; Stressful work environment; Physical strain; Physical dangers; Emotional burden; Emotion work; Contradictory terms of content; Work interruption; Threat; Pressure to change; Private burden; Underchallenge; Overchallenge. Supportive manager; Feedback; Financial security; Internal career development; Supportive colleagues; Job security; Participation; Transparency; Diversity; Meaningfulness; Role clarity; Learning opportunity; Autonomy; Knowledge management; Team atmosphere; Frustration tolerance; Private support; Recreation; Holistic; Qualification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6996] "Factors: Treatment credibility; Outcome expectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6997] "Subscales: Self-efficacy; Readiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6998] "Factors: Self-Presence; Spatial Presence; Social Presence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6999] "Factors: Frustration of the need for autonomy; Frustration of the need for competition; Relationship need frustration; Frustration of the need for novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7000] "Factors: Proactive resolution; Patience; Passive escape; Cognitive adaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7001] "Factors: Enterprise customer orientation; Employee adaptability; Customer participation; Customer need knowledge (Knowledge of service need; Knowledge of interaction need; Knowledge of peer customers' need); Service innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7002] "Factors: Malicious Envy; Benign Envy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7003] "Factors: Value co-creation with tourists; Socio-cultural benefits; Economic benefits; Costs; Resident subjective wellbeing; Support for tourism development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7004] "Factors: Global leader self-integration; Global leader self-differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7005] "Factors: Leader humor; Team humor; Psychological safety; Promotive voice; Prohibitive voice; LMX."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7006] "Factors: Organization Tolerance for Workplace Incivility; Employee Cynicism; Job Search Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7007] "Subscales: Posttraumatic stress disorder (PTSD); Disorders in self-organization (DSO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7008] "Factors: Normalcy; Unwillingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7009] "Factors: Demonstration of trust; Moral discussions; Inductive discipline; Moral action scaffolding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7010] "Factors: Meaning perspectives; Critical reflection; Use of experiences; Transformative acts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7011] "Subscales: Working conditions factors; Individual factors; Systemic factors; Drug administration; Knowledge of medicines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7012] "Subscales: Security; Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7013] "Subscales: Security; Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7014] "Factors: Social value orientation; Moral identity; Belief in a just world; Adverse consequences; Ascribed responsibility; Sense of obligation; Attitude; Subjective norm; Perceived behavioral control; Civic engagement; Past experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7015] "Factors: Personal Relevance; Uncertainty; Critical Voice; Shared Control; Student Negotiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7016] "Factors: Isolation; Trait loneliness; Social connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7017] "Factors: Intrapersonal recovery; Interpersonal recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7018] "Factors: Resonant disclosure; Oppositional disclosure; Heterosexual identity threat; Embracing; Derogation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7019] "Subscales: Anxiety; Annoyance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7020] "Factors: Customer engagement; Brand Attitude; Customer-Brand Identification; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7021] "Factors: Ability and willingness; Effectiveness; Response."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7022] "Factors: General environmental sensitivity; Aesthetic sensitivity; Low sensory threshold; Ease of excitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7023] "Subscales: Inadequate self; Reassured self; Hated self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7024] "Subscales: Fluency; Flexibility; Originality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7025] "Facets: Connection with universe; Connection with others; Sense of associated joy and happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7026] "Subscales: Permissive; Authoritative (Corporal Punishment; Verbal Hostility/Scolding; Unjust Punishment/Punishment Strategies); Authoritative (Warmth/Involvement; Argument/Explanations; Democratic Participation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7027] "Subscales: Emotional deprivation; Abandonment; Mistrust/abuse; Social isolation; Defectiveness; Failure; Dependence; Vulnerability to harm; Enmeshment; Subjugation; Self-sacrifice; Emotional Inhibition; Unrelenting standards; Entitlement; Insufficient self-control. Factors: Disconnection/rejection; Impaired autonomy/performance; Impaired limits; Other directedness; Overvigilance/inhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7028] "Subscales: Orgasm consistency by vaginal penetration and orgasm satisfaction; Orgasm consistency by clitoral stimulation types."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7029] "Factors: Teaching; Diagnosis; General LSWSH."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7030] "Subscales: Symptoms; Interpersonal Relationships; Social Role."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7031] "Subscales: Temporality and future; Willingness and positive hope inside."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7032] "Factors: Sense of Personal Competence (PC); Problem Solving Skills (PSS); Social Competence (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7033] "Subscales: Professional well-being; Exhaustion; Cognitive disorders; Musculoskeletal disorders; Voice alterations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7034] "Subscales: Exhaustion; Voice complaints; Musculoskeletal complaints; Cognitive complaints; Satisfaction; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7035] "Factors: Parental love and nurturing; Parenthood as a normative life stage; Parental guidance of the young; Fulfillment of children’s needs; Readiness to relax and restrict parental control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7036] "Factors: Religious practices; Individual beliefs about God; Individual beliefs about the role of God in personal life; Individual beliefs about the role of religion in personal life; Participation in rituals and mourning ceremonies; Reasons for behaviors; Pilgrimaging the shrines of Imams."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7037] "Subscales: Planfulness; Readiness for Change; Intentional Behavior; Using Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7038] "Factors: Disposition to Privacy; Privacy Awareness; Perceived Privacy Control; Trust; Privacy Experience; Privacy Knowledge; Privacy Protection Regulation; Travelers’ Online Privacy Concerns; Personalization; Sensitivity of Biometric Information; Sensitivity of Behavioral Information; Willingness to Share Biometric Information; Willingness to Share Behavioral Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7039] "Subscales: Effort (EFF); Rewards (REW); Over-commitment (OC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7040] "Factors: Gamification [GM]; Crowdfunding [CW]; Behavioural Intention [BI]; Voluntariness [VOL]; Information Quality [IQ]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7041] "Subscales: Alternating Trail Making; Cube; Clock Drawing Test; Naming; Memory; Digit Span; Vigilance; Verbal Fluency; Abstraction; Delayed recall and recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7042] "Subscales: Intrinsic Motivation for Exercise; Extrinsic Motivation for Exercise; Self-Efficacy; Ego Depletion; Concentration; Task Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7043] "Subscales: Approach; Disengagement; Protest; Suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7044] "Subscales: Positive stereotypes; Negative stereotypes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7045] "Factors (Subfacets): Positive Bond (Group; Leader; Member); Positive Work (Leader; Member); Negative Relation (Group; Leader; Member)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7046] "Subscales: Body image satisfaction; Body image importance; Body change strategies to decrease body size; Body change strategies to increase body size; Strategies to increase muscle tone; Binge eating; Intake of food supplements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7047] "Factors: Happiness; Compassion; Amusement; Love; Pride; Awe."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7048] "Factors: Working in teams (factor 1); Communicating effectively (factor 2); Managing risks (factor 3); Understanding human and environmental factors (factor 4); Recognising and responding to adverse events (factor 5); Culture of safety (factor 6)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7049] "Domains (Sub-domains): Communication (Writing; Speaking; Reading); Analytical inquiry (Research; Information literacy); Collaboration (Working in groups; Leadership); Professional development (Self-management; Professionalism; Technology)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7050] "Subscales: Work; School; Household responsibilities; Parenting/caregiving; Efforts to return to work/school; Finances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7051] "Subscales: State anxiety (STAIS-5); Trait anxiety (STAIT-5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7052] "Factors: Prioritizing multimodal mobility needs; Prioritizing car user needs; Pull – Promotion of e-mobility; Push – Stronger regulation of car use; Pull - Cycling promotion; Push - Shrinking of car infrastructure; Pull – Upgrade of car use infrastructure. Second-order Factors: Intermodal Mobility Culture; Car-Oriented Mobility Culture. Priority intermodularity; Push shrinking car infrastructure; Push car regulation; Pull promotion e-mobility; Incentives for cycling; Priority car user needs; Pull upgrade car infrastructure. Second-order Factors: Intermodal Mobility Culture; Car-Oriented Mobility Culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7053] "Domains: Physiological domain (PHD); Psychological domain (PSD); Social domain (SOD); Therapeutic domain (THD). Factors: Anxiety (ANX); Compliance (COM); Depression (DEP); Daily living activity (DLA); Function of cognitive (FOC); Family support (FS); Inferiority (INF); Satisfaction (SAT); Social contacts (SC); Somatization (SOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7054] "Factors: Cognitive reappraisal, Expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7055] "Subscales: Attitudes; Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7056] "Factors: Muscularity-oriented body image (MBI); Muscularity-oriented behavior (MB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7057] "Subscales: Self-demands; Discomfort-concern; Self-punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7058] "Factors: Lack of emotional understanding; Limited access to regulatory strategies; Impulse control difficulties; Interference in goal-directed behaviors; Lack of emotional clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7059] "Factors: Grandiose Exhibitionism (GE); Leadership/Authority (L/A)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7060] "Subscales: Leadership ability/personality (LA/LP); Grandiosity (G)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7061] "Scales: State anxiety; Train anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7062] "Subscales [Factors]: Admiration [Grandiosity; Strive for uniqueness; Charmingness]; Rivalry [Devaluation; Supremacy; Aggressiveness]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7063] "Factors: Acceptance of the gender spectrum; Social tolerance; Comfort and contact related to transgender people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7064] "Subscales: Role; Relationships; Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7065] "Factors: Attitudes; Perceived behavioral control; Subjective norms; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7066] "Subscales: Pre-evacuation behavior; Path-finding behavior; Behavior during exit congestion; Counter flow behavior; Competition and cooperation behavior; Group behavior; Impatient behavior; Temporary leadership behavior; Carrying luggage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7067] "Factors: [General Factor: Maternal burnout]; Negative emotional-behavioral manifestations; Physical and emotional exhaustion; Sense of parental achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7068] "Hypothesized Subscales: Identification of symbols; Meaning of symbols; Use of symbols."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7069] "Subscales: Avoiding negative emotions (Escape); Unsuccessful attempts to control Internet gaming use (Unsuccessful attempts); Withdrawal symptoms when internet is taken away (Withdrawal); Preoccupation with internet gaming and tolerance (Preoccupation and tolerance); Has jeopardized or lost a significant relationship, job, or educational or career opportunity because of Internet gaming use (Jeopardize); Has deceived family members, therapists, or others regarding the amount of Internet gaming (Deceive); Continued excessive Internet use despite knowledge of negative psychosocial problems (Health related side effects)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7070] "Factors: Withdrawal; Tolerance; Unsuccessful attempts; Continued excessive Internet use; Escape; Deceive; Jeopardize."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7071] "Factors: Coherence and Expressiveness; Social utility; Quality of relations; Freedom in work; Learning and Development; Work ethics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7072] "Dimensions: Work overload; Role expectation conflict; Work-life balance; Coworker support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7073] "Subscales: Implicit Positive Affect (IPA); Implicit Negative Affect (INA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7074] "Constructs: Attitude of drug testing as an effective prevention strategy for athletes and students in extracurricular activities; Attitude of drug testing as prevention for all students; Perception of drug use as a problem in the state; Perception of drug use as a problem in their high school; Negative beliefs about drug testing; Positive beliefs about drug testing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7075] "Dimensions: Affective reactions; Anticipation; Cognitive reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7076] "Factors: Knowledge about risk behavior (CR); Knowledge about non-risk behavior (CSR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7077] "Factors: Contagion Avoidance; Emotional Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7078] "Subscales: Subjective; Objective. Factors: Contribution in academic activities; Dedication to study; Lack of organization of teaching resources; Grade point average; Study activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7079] "Subscales: Efficacy of Coping and Self-esteem; Social Integration; Spiritual Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7080] "Subscales: Grandiose–manipulative (GM); Callous–uncaring (CU); Daring– impulsive (DI); Conduct Disorder (CD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7081] "Subscales: Direct Aggression; Displaced Aggression; Indirect Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7082] "Subscales: Self-Sex is Power (S-SIPS); Women-Sex is Power (W-SIPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7083] "Factors: Subjective religious commitment; Social religious activities; Private religious activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7084] "Factors: The two factors were unnamed by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7085] "Factors: Injunctive norms; Perceived physical threat; Attitudes; Perceived barriers; Moral norms; Perceived behavioral control; Descriptive norms; Perceived psychosocial threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7086] "Subscales: Positive religious coping (PRC); Negative religious coping (NRC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7087] "Factors: Affective Association (AF); Cognitive Association (CG); Physical Association (PA); Unique Association (UQ); Well-Being Association (WB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7088] "Subscales: Positive attitudes with girl; Positive attitudes with boy; Negative attitudes with girl; Negative attitudes with boy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7089] "Factors: Negative valence; Stress, Positive valence; Typicality (boredom/understimulation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7090] "Factors: Extrinsic Motivation; Intrinsic Motivation; Perceived Challenge; Innovation Contest Experience; Reputation for Product Innovation; Website Ease of Use (control); Perceive Fairness of the Contest (control)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7091] "Factors: Health stress; Relationship stress; Financial stress; Emotional exhaustion; Diminished personal accomplishment; Depersonalization; Salesperson performance; Role ambiguity; Role conflict; Role overload."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7092] "Factors: Access to sales resources; Social status; Internal selling behavior; Networking ability; Sales performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7093] "Factors: Empowerment competences; Conversation competences; Perception of spiritual needs; Spiritual self-awareness competences; Team spirit; Documentation competences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7094] "Constructs: Machine Learning Use; Big Data Analytics Maturity; Platform Maturity; Top Management Support; Process Complexity; Financial Performance; Strategic Performance; Firm Size; Industry Sector."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7095] "Constructs: Need for Touch; Quality concerns; Affective response; Interface type; Willingness to pay difference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7096] "Factors: Engaging Work; Mystical Experience; Spiritual and Social Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7097] "Factors: Highly Interactive Open Innovation Activities; Weakly Interactive Open Innovation Activities; Partner Alignment; Technology Adaptiveness; Market Adaptiveness; Innovation Success (technological); Innovation Success (market); Firm size; Market-Related Dynamism; R&D Intensity; Technological Turbulence; Competitive Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7098] "Factors: Religious identity; Personal identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7099] "Factors: Morning affect (MA); Eveningness (EV); Distinctness (DI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7100] "Subscales: Behavioral Prevention (BP); Cognitive Prevention (CP); Behavioral Escape (BE); Cognitive Escape (CE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7101] "Factors: Perceived Complexity; Perceived Control; Perceived Enjoyment; Satisfaction with the Co-Design Experience; Loyalty Intentions toward the Online MC Co-Design Program; Preference Fit; Experiential Situation-Specific Thinking Style (SSTSe); Rational Situation-Specific Thinking Style (SSTSr)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7102] "Factors: Brand Awareness; Brand Associations; Perceived Quality; Brand Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7103] "Constructs: Opinion leadership; Intention to interact; Intention to recommend; Intention to follow the advice; Originality; Uniqueness; Online interaction propensity; Perceived fit; Quality; Quantity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7104] "Subscales: Psychological distance; Social value perception; Uniqueness value perception; Quality value perception; Brand awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7105] "Constructs: Utilitarian value; Hedonic value; Symbolic value; Trust in seller; Trust in product; Customer engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7106] "Factors: Hedonic Content; Informative Content; Active Participation; Passive Participation; Brand Affect; Brand Trust; Attitudinal Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7107] "Factors: Social power (Expert; Referent; Legitimate; Reward); Parasocial interaction; Social capital (Bonding; Bridging); Purchase intention (Environmental sustainable products; Social sustainable products)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7108] "Factors: Customer commitment; Customer desire for revenge; Post-failure blame attribution; Post-failure customer anger; Complaint involvement; Advice giving; Amusement/entertainment; Venting; Advice seeking; Negative word-of-mouth willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7109] "Constructs: Perceived external reputation (PER); Organizational citizenship behavior customers; Organizational citizenship behavior (OCB) individuals/coworkers; Organizational citizenship behavior organization; Supportive behavior in social media (SBSM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7110] "Factors: Continuance intention; Perceived Usefulness; Perceived Ease of Use; Perceived enjoyment; Conformity behavior; Self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7111] "Subscales: Understanding the basic meaning of numbers and operations; Recognizing the number size; Using multiple representations of numbers and operations; Recognizing the relative effect of operations on numbers; Judging the reasonableness of a computational result via different strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7112] "Sections: Socioeconomic status (SES)-related factors; Pandemic-related factors; Lifestyle-related factors; Psychological distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7113] "Subscales: Leadership; Mentoring and Material Support; Flexibility in Teaching; Collegiality; Evaluation of Effective Teaching; Support for Teaching Improvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7114] "Factors: Recognizing suffering; Acting to relieve suffering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7115] "Factors: Corporate brand experience; Corporate brand communication; Corporate brand liking; Corporate brand similarity; Corporate brand competence; Loyalty; Peer support; Cognitive trust; Affective trust; Propensity to trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7116] "Factors: Corporate image; Brand alliance attitude; Purchase intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7117] "Subscales: Logistics attribute performance; Corporate brand image; Retention; Price premium."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7118] "Factors: Anxiety for viral epidemics; Work-related stress associated with viral epidemics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7119] "Subscales: Enjoyment of humor; Laughter; Verbal humor; Finding humor in everyday life; Laughing at yourself; Humor under stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7120] "Subscales: Past Positive; Past Negative; Present Positive; Present Negative; Future Positive; Future Negative. Factors: Past; Present; Future; Positivity; Negativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7121] "Subscales: Social emotional/informational support; Positive social interaction; Instrumental support; Affective support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7122] "Subscales: Near vision; Ocular discomfort; Emotional distress; Distance vision; Collaboration; Dependency; Driving; Role limitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7123] "Factors: Fear; Isolation; Lack of positive anticipation; Riskiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7124] "Factors: Craving for revenge (CR); Revenge rumination (RR); Suicide-related revenge (SRR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7125] "Factors: Appreciation of complexity; Intolerance for ambiguity; Propensity to contextualize."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7126] "Subscales: Adjustment self-efficacy; Decision-making self-efficacy; Administrative tasks self-efficacy; Outcome expectations; Interests; Barriers; Supports; Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7127] "Subscales: Affective engagement; Cognitive engagement; Behavioral engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7128] "Subscales: Family; Teachers; Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7129] "Subscales: Family; Teachers; Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7130] "Subscales: Affective engagement; Cognitive engagement; Behavioral engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7131] "Subscales: Commitment; Exploration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7132] "Subscales: Cognitive Change Process Scale; Behavioral Change Process Scale; Pros Scale of Decisional Balance; Cons Scale of Decisional Balance; Self-Efficacy Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7133] "Subscales: Intrinsic motivation; Self-concept; Reading activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7134] "Subscales: Anomalous experience of the self; Anomalous experience of the body; Anomalous experience of emotion; Altered sense of familiarity; Altered sense of connection; Altered sense of agency; Altered sense of reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7135] "Factors: Stress of Family/Home Life; Stress of Study; Stress of Future Uncertainty; Stress of Competing Demands; Stress of Peers/Friends; Stress of Romantic Relationships; Stress of Employment; Stress of Financial Pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7136] "Factors: Preprototype involvement; Iterative responsiveness; Other expert involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7137] "Factors: General Retirement Expectation; Mental Health and Self-care; Regulation and Self-efficacy; Social Insertion and Recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7138] "Subscales: Operational skills; Navigation skills; Information searching; Evaluating reliability; Determining relevance; Adding content; Protecting privacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7139] "Subscales: Physical health status; School and support status; Drug/alcohol use; Legal status; Family/social relationships; Psychiatric status; Recreational activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7140] "Subscales: Orientation; Registration; Attention; Recall; Language."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7141] "Subscales: Risky road behavior; Risky health behavior; Poor diet; Anti-social behavior; Consequences of risk behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7142] "Factors: Internal and Stable Appraisals; Losing Control; General Helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7143] "Factors: Emotion-oriented; Avoidance/Disengagement; Problem-oriented."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7144] "Subscales: COVID-19–related misinformation beliefs; Specific COVID-19 misinformation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7145] "Factors: Transition to remote learning; Medical self-efficacy; Psychological stress; Altruism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7146] "Factors: Threat appraisal; Challenge appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7147] "Factors: Novelty seeking; Novelty producing; Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7148] "Subscales: Harmony; Quiescence; Ordinariness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7149] "Subscales: Harmony; Quiescence; Ordinariness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7150] "Subscales: Hope; Self-efficacy; Optimism; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7151] "Subscales: Timeline Acute/Chronic; Consequences; Personal Control; Treatment Control; Coherence; Timeline Cyclical; Emotional Representation. Factors: Psychological Attributions; General Risk Factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7152] "Factors: Emotional-motivational (Resilience; Self-efficacy; Hope) Cognitive dimension (Optimism; Hope)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7153] "Factors: Divine Moral Authority (DMA); Privacy of Faith (PF); Value of all Human Beings (VHB); Moral Individualism (MI); Cognition Essential to Personhood (CEP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7154] "Factors: Physical security; Standards; Student-teacher relationship; Relationship between equals; Group cohesion; Environmental-structural aspects; Ability to motivate teachers; Teachers' expectations; Methodological resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7155] "Factors: Violation of personal rights or direct abuse; Potentially abusive situation; Vulnerability; Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7156] "Sub-dimensions: Positive emotions; Engagement; Relationships; Meaning; Accomplishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7157] "Factors: Acceptance of the abuse due to affection; Denial of the risk associated with places; Risk factors and self-protection skills; Lack of awareness of intimacy rules."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7158] "Factors: General Conspiracist Beliefs; Extraterrestrial Conspiracist Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7159] "Subscales: School problems; Mobile time use; Sensation seeking; Impulsiveness; Anxiety; Hopelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7160] "Factors: Distress; Uncertainty; Positive Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7161] "Factors: Re-experiencing in the here and now (Re); Avoidance (Av); Threat (Th)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7162] "Factors: Lack of rewards; Parental stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7163] "Factors: Environmental facilitators and social support; Self-efficacy and self-regulation; Outcome expectations and outcome expectations value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7164] "Subscales: Mathematics; Science; Engineering and technology. Factors: Interest; Self-efficacy; Outcome expectations; Choice goals; Choice actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7165] "Factors: Family Cohesion (FC); Family Adaptability (FA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7166] "Factors: Health Literacy; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7167] "Subscales: Employee attitude; Employee behavior; Employee expertise; Social factors; Tangibles; Ambient; Education; Esthetics; Entertainment; Escapism; Satisfaction; Revisit intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7168] "Factors: Affective/Positive emotions; Cognitive positive results of HIV/ART care; Planning and Future optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7169] "Factors: Subjective knowledge; Health consciousness; Perceived usefulness of health tourism; Perceived behaviour control; Health tourism intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7170] "Factors: Crisis Nature; Directives; Advisories (considerations in decisions to follow safeguarding Zika directives)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7171] "Factors: Feeling-of-interest (I-Type); Feeling-of-deprivation (D-Type)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7172] "Subscales: Knowledge; Explanations-preferences; Explanations-perceived efficacy; Explanations-willingness to participate; Attitudes and acceptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7173] "Domains: Criminal history; School history; Current school status; Historic use of free time; Current use of free time; Employment history; History of relationships; Current relationships; Family history; Alcohol & drug history; Current alcohol & drugs; Mental health history; Attitudes/behaviors; Aggression; Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7174] "Factors: Memories and support; Ingroup fragmentation; Grievances; Resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7175] "Scales: Outcome expectancies; Behavioral experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7176] "Dimensions: Internal Sexual Consent; External Sexual Consent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7177] "Factors: Judgmental and Disbelieving Thinking (JDT); Pejorative Labeling and Verbally Aggressive Thinking (PLVAT); Revenge and Retaliatory Thinking (RRT); Physically Aggressive Thinking (PAT); Coping Self-Instruction (CSI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7178] "Factor: Judgmental and Disbelieving Thinking; Pejorative Labelling and Verbally Aggressive Thinking; Revenge and Retaliatory Thinking; Physically Aggressive Thinking; Coping Self-Instruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7179] "Factors: Judgmental and Disbelieving Thinking; Pejorative Labeling and Verbally Aggressive Thinking; Revenge and Retaliatory Thinking; Physically Aggressive Thinking; Coping Self-Instruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7180] "Factors: Connection motivations; Popularity motivations; Appearance motivations; Values and Interests motivations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7181] "Subscales: Deliberate mind-wandering; Spontaneous mind-wandering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7182] "Factors: Impulsive and unorganized; Hesitation; Arousal and rationalization; Lack of incentives; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7183] "Factors: Job Placement, Vocational Assessment, and Career Counseling (Subfactors: Job Placement; Vocational Assessment and Career Counseling; Occupational information analysis); Counseling, Psychosocial Interventions, and Case Management (Subfactors: Counseling; Psychosocial Interventions; Case Management and Advocacy); Demand-Side Employment, Workers’ Compensation, and Forensic Services (Subfactors: Demand-side Employment; Workers' Compensation and Forensic Services)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7184] "Factors: Routine social interactions; Healthcare experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7185] "Factors: Sexual Fantasies (Submission; Rough sex; Domination; Humiliation; Intrusion; Normophilia); Sexual Behaviors (Normophilia; Rough sex; Assuming power; Relinquishing power; Intrusive behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7186] "Domains: Social and Emotional Difficulties; Social and Emotional Well- Being; Wound/Scar Discomfort; Wound/Scar Treatment; Physical Abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7187] "Subscales: Sport Involvement (Attraction; Centrality); Team Attachment; Awareness of Sponsors; Beliefs about Sponsorship; Attitude toward Sponsor; Purchase Intention; Sponsor Image; Sincerity; Team Performance; Word-of-Mouth Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7188] "Factors: Citizen participation; Tolerance and openness; Organizational citizenship; Traditionalist dogmatism; Individualism and rebellion; Punitive authoritarianism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7189] "Factors: Originality; Utility; Attractiveness; Subculture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7190] "Factors: Subculture; Attractiveness; Originality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7191] "Factors: Parent Financial Modeling; Parent–Child Financial Discussion; Experiential Learning of Finances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7192] "Factors: Parental distress; Parent–children dysfunctional interaction; Difficult child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7193] "Scales: CVR scale; CVI scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7194] "Factors: Perceived stress [Bifactor-General factor]; Positively stated items; Negatively stated items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7195] "Factors: Changing Relational Boundaries; Utilizing Relational Resources; Reflecting Positive Career Meaning; Expanding Task Boundaries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7196] "Factors: Alienation; Stereotype Endorsement; Perceived Discrimination; Social Withdrawal; Stigma Resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7197] "Dimensions: Perceived Design Affordance (functional and aesthetic); Perceived Design Affordance (social and symbolic)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7198] "Factors: Self-promotion SE; Interview anxiety management SE; Interview preparation SE; Logistical SE; Interaction SE."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7199] "Factors: Social self-efficacy; Stoma care self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7200] "Factors: Segregation (SE); Verbal abuse (VA); Task-related hazing (TR); Physical abuse (PA); Testing (TE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7201] "Factors: Role Ambiguity; Role Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7202] "Subscales: Alienation; Stereotype endorsement; Perceived discrimination; Social withdrawal; Stigma resistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7203] "Subscales: Causal (Sexual and reproductive; Psychological; Lifestyle and uncontrollable; Infectious; Environmental); Timeline chronic/acute; Consequences; Self-control; Treatment control; Illness coherence; Timeline cyclical; Emotional representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7204] "Factors: General satisfaction; Convenient appointment scheduling; Preference for seeing APNs; Communication with physician."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7205] "Factors: Connectedness; Belongingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7206] "Constructs: Risk of an overdose; Signs of an overdose; Action to take with opioid overdose; Naloxone use knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7207] "Subscales: Communality; Fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7208] "Factors: Competitive nature; Socialization opportunity; Skill improvement; Friends bonding; Game knowledge; Skill appreciation; Entertaining nature; Dramatic nature; Competition excitement; Vicarious sensation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7209] "Factors: Communication-Based Male Involvement; Action-Based Male Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7210] "Factors: Lack of emotional control; Depressive symptoms; Meaning of life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7211] "Factors: Self-Worth; Disentanglement; Anger; Grief; Social Trust; Social Self-Worth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7212] "Subscales: Entrapment; Panic-dissociation; Ruminative flooding; Fear of dying; Emotional pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7213] "Factors: Entrapment; Panic dissociation; Ruminative flooding; Fear of dying; Emotional pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7214] "Factors: Performance expectancy (PE); Effort expectancy (EE); Social influence (SI); Perceived risk (PR); Behavioral intention (BI); Use behavior (UB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7215] "Sub-Domains: Overall satisfaction; Pain; Appearance; Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7216] "Subscales: Meaning and purpose; Distress and coping ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7217] "Factors: Depersonalization and derealization; Gaps in awareness and memory; Sensory misperceptions; Cognitive and behavioral reexperiencing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7218] "Subscales: Virtual interaction for escaping from reality; Informational learning; Play and relaxation; Pursuit of practicability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7219] "Factors: Common therapeutic skills; Extra-therapeutic influences; Perceived outcome."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7220] "Factors: Actual self-congruity; Sincerity; Excitement; Competence; Sophistications; Ruggedness; Ideal self-congruity; Revisit intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7221] "Factors: Escape; Express."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7222] "Factors: Blame Diffusion; Restrictive Stereotypes; Denial of Abusiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7223] "Factors: Violations (V); Errors (E); Positive Behaviors (PB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7224] "Factors: Sadness; Anhedonia/withdrawal; Burdened/lethargy; Cognitive/somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7225] "Factors: Body surveillance; Body Shame; Appearance control beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7226] "Subscales: Shared and supportive leadership; Shared values and vision; Collective learning among the teachers and its practical application; Shared personal practice; Supportive conditions: relationships; Supportive conditions: structures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7227] "Subscales: Career development; Environmental consciousness; Socialization; Personal benefit; Familiarity; Timing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7228] "Subscales: Cohesion; Flexibility; Disengaged; Enmeshed; Rigid; Chaotic; Communication; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7229] "Subscales: Satisfaction; Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7230] "Subscales: Involvement; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7231] "Factors: Delusional conviction; Disorganization/Mood congruence; Bizarreness; Acting irrationally during interview; Places/situations involved."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7232] "Factors: Depression; Emotional withdrawal/Blunted affect; Fatigue/activities; Psychotic symptoms; Suspiciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7233] "Subscales: Concerns about childbirth and child; Isolation; Fear; Lack of self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7234] "Subscales: Access; Provider Communication; Care Coordination; Office Staff."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7235] "Factors: Perceived Ease of Use (PEU); Perceived Usefulness (PU); Computer Self-Efficacy (CSE); Intention to Use (INT); Satisfaction (SAT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7236] "Factors: Avoidance; Attack-Self; Withdrawal; Attack-Other; Adaptive Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7237] "Factors: Vaginal symptoms; Concerns; Well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7238] "Subscales: In-pair sexual desire; Extra-pair attraction-outward behavior; Extra-pair attraction-internal psychological states."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7239] "Factors: Classical bias; Modern bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7240] "Subscales: Quantitative; Qualitative; Psychological; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7241] "Subscales: Altruism; Perceived Benefit; Perceived Risk; Attitude; Familial Subjective Norm; Intention to Sign."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7242] "Subscales: Family relations; Work adjustment; School performance; Life skills; Self-concept; Social functioning; Risk-taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7243] "Factors: Emotionality; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7244] "Subdimension: Internal control; Chance; Powerful others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7245] "Subscales: Behavioral sub-dimension; Cognitive sub-dimension; Affective sub-dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7246] "Factors: ADHD (global factor); Inattention; Hyperactivity/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7247] "Factors: Reasonable behavior (RB); Unreasonable behavior (URB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7248] "Factors: Influence of social context (ISC); Influence of equipment/installations (IEI); Influence of attitude (IA); Influence of experiences (IE); Influence of competence (IC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7249] "Subscales: Home integration; Social integration; Productivity; Electronic social networking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7250] "Subscales: Divergence; Relevance; Attention; Motivation; Overall Creativity; Advertisement Attitude; Brand Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7251] "Factors: Global memory (SMCQ-G); Everyday memory (SMCQ-E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7252] "Factors: Expectations of rejection in situations with known people; Expectations of rejection in situations of establishment of new relationships; Expectations of rejection in public places and with unknown people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7253] "Subscales: Entity Theory; Incremental Theory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7254] "Factors: Self-Regulation; Performance; External Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7255] "Subscales: Social Communication; Anxiety and Related Emotional States; Self-Help Skill Mastery; Child Self-Perceptions; Parent–Child Interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7256] "Subscales: Social Behavior Problems; Prosocial Behavior; Aggressive Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7257] "Factors: Gender Fluidity; Definition by Feelings; Gender Relevance; Gender Categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7258] "Factors: Social Interaction (SI): Subjected Social Support (SSS); Instrumental Social Support (ISS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7259] "Factors: Online neighboring behaviors—shared interests; Online support mobilization intentions; Perceived social support; Neighborhood sense of community; Online sense of community; Online neighboring behaviors—supportive communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7260] "Factors: Gender Identification (GI); Gender Stigma Consciousness (GSC); Ethnic Identification (EI); Ethnic Stigma Consciousness (ESC); Rural Identification (RI); Rural Background Stigma Consciousness (RSC); Low-SES Identification (LI); Reading/Writing Identification (RWI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7261] "Subscales: Demandingness; Awfulizing; Self/others depreciation or downing; Frustration intolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7262] "Subscales: Perceptions of financial health; Strategic Financial Climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7263] "Subscales: Black liberation; Intersectional values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7264] "Subscales: Satisfaction With Social Support; Perceived Social Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7265] "Factors: Reduced Compassion; Social Life; Workplace."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7266] "Factors: Victimization; Dissatisfaction (with correctional officers); Fear of victimization; Aggressive misconduct; Property misconduct; Self-injury/suicide attempt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7267] "Subscales: Informational support; Physical comfort; Emotional and esteem support; Instrumental or tangible support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7268] "Subscales: Spoken Words; Written Words; Objects; Designs; Pseudowords; Learning; Delayed recall; Delayed recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7269] "Factors: Learning science anxiety (LSA); Science evaluation anxiety (SEA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7270] "Subscales: Demanding; Withdrawing; Argumentativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7271] "Subscales: Machine-like; Human-like."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7272] "Factors: Intensity; Frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7273] "Factors: Worry; Test-irrelevant thinking; Bodily symptoms; Tension; Perceived control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7274] "Factors: Involvement; Active engagement; Passive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7275] "Subscales: Intrapersonal; Social; Consider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7276] "Dimensions: Crime intention; Financial motive; Organizational opportunity; Personal willingness; Convenience orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7277] "Subscales: Family Interaction; Parenting; Emotional Well-being; Physical/Material Well-being; Disability-Related Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7278] "Factors: Altruism; Profit; Public image; Ethics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7279] "Factors: Global loneliness; Loneliness; Non-loneliness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7280] "Subscales: Violence exposure; Psychological abuse; Neglect; Physical abuse; Sexual abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7281] "Subscales: Body agency; Body estrangement; Body visibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7282] "Factors: Consumer innovativeness-Novelty seeking; Eagerness; Overall image; Vigilance; Openness; Quality experience seeking; Hedonic experience seeking; Venturesomeness; Social distinctiveness; Desire; Intentions to use; Word-of-mouth intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7283] "Dimensions: Constraints; Motivators. Factors: Extra burden (EB); Limited personal capacity (LC); Weak market demand (WD); P2P platform constraints (PC); Guest issues (GI); Government regulations (GR); Market competition (MC); Better interpersonal relations (BR); Ease of operation (EO); Better work-life balance (BB); Showcasing a trendy character (SC); Settling the cost of living (SL); Optimizing the use of resources (OR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7284] "Factors: SRHR practices (Legal compliance HR practices; Employee-oriented HR practices; General CSR facilitation HR practices); Expansive job crafting (Increasing structural job resources; Increasing social job resources; Increasing challenging job demands); Meaningfulness of work; Job strain (need for recovery); Authentic leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7285] "Subscales: Brand-related deviance behaviour; Underperformance; Service recovery failure; Negative word-of-mouth. Second-order Factor: Brand Sabotage Behaviours."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7286] "Subscales: Honesty-Humility; Emotionality; Extraversion; Agreeableness; Conscientiousness; Openness to Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7287] "Subscales: Training and sustaining trauma-responsiveness; Culture of trust and support; Practices of inclusivity, safety, and wellness; Collaboration and empowerment; Trauma-responsive services."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7288] "Subscales: Behavioral anxiety; Cognitive anxiety; Somatic anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7289] "Factors: Surrounding vehicles (Surrounding_Vehi); Error; Road environment (Road_Enviro); Violation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7290] "Subscales: Consensus; Satisfaction; Cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7291] "Factors: Academic; Local & Environment; Living & Finance; Cultural & Religious; Language & communication; Discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7292] "Subscales: Psychological stress; Information stress; Complexity stress; Personnel stress; Outcome stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7293] "Subscales: Physical Harm; Social Harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7294] "Factors: Academic performance; Perceived procedural injustice; Perceived relational injustice; Justice sensitivity; Academic cheating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7295] "Factors: Social Engagement; Concealment/Pretense; Denial; Re-thinking/Planning; Self-Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7296] "Factors: Perceived risk; Stationary smartphone use; Pending instant message; Smartphone dependency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7297] "Subscales: Judging Interpersonal Union Valuable; Judging Each Person's Outcomes Equally; Valuing Interpersonal Union; Prioritizing Others' Interests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7298] "Factors: Self-acceptance of sexuality (SAS); Difficulties with self-acceptance (DSAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7299] "Subscales: Supportive network; Belief in self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7300] "Factors: Coercive beliefs; Collaborative beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7301] "Factors: Critical Reflection; Critical Motivation; Critical Action: Sociopolitical Participation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7302] "Subscales: Social inclusion; Self-determination; Emotional wellbeing; Physical wellbeing; Material wellbeing; Rights; Personal development; Interpersonal relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7303] "Factors: Parenting satisfaction; Parenting self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7304] "Variables: Personal value; Artistic value; Sociocultural value; Satisfaction; Trust; Intention to rewatch (revisit)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7305] "Factors: Attitude; Transport safety; Convenience; Travel time reliability; Behavioural intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7306] "Factors: Coparenting support; Coparenting undermining; Coparenting division of labor; Joint management of family relations; Coparenting conflict; Coparenting agreement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7307] "Subscales: Discrimination; Realistic group and individual threats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7308] "Subscales: Job Insecurity, Self and Partner; Distractions during Work Hours; Supervisor Social Support; Time Management Planning; Information Exchange; Burnout; Productivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7309] "Subscales: Motivation; Asociality; Alogia; Anhedonia; Diminished emotional range."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7310] "Subscales: Parent-focused stigma; Child-focused stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7311] "Subscales: Self-esteem; Safe base/Social support; Appraisal; Coping: Locus of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7312] "Factors: Pressures to perform (PP); Perceptions of workload and examinations (PWE); Self-perceptions (SP); Time restraints (TR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7313] "Factors: Psychological stress; Social dysfunction; Severe depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7314] "Factors: Intensification of demands of work effort; Intensification of demands of planning and autonomy at work; Intensification of demands of career planning; Intensification of demands for acquiring new learning; Intensification of demands for developing new skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7315] "Factors: Firm performance; Chasing productivity demands; Well-being; HR support; Flexible work arrangements; Social desirability effect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7316] "Factors: Staff professionalism; Staff caring; Tangibles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7317] "Factors: Administrative Elements (AE); Social Elements (SE); Organisational Elements (OE); Governance Elements (GE); Cultural Elements (CE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7318] "Factors: Self-incompetency; Self-reassurance; Self-hatred."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7319] "Subscales: Leisure and Life Enjoyment, Filial Piety and Relationship, Self-fulfilment, Righteousness, Humanity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7320] "Subscales: Self-Efficacy; Challenge; Work Avoidance; Curiosity; Involvement; Importance; Recognition; Grades; Competition; Social; Compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7321] "Factors: Responsibility; Pity; Help; Avoidance; Dangerousness; Fear; Anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7322] "Factors: Competency; Quality; Honesty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7323] "Factors: Mastery-approach; Performance-approach; Work-avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7324] "Factors: Self-efficacy to complete an online course; Self-efficacy to interact socially with classmates; Self-efficacy to handle tools in a CMS; Self-efficacy to interact with instructors in an online course; Self-efficacy to interact with classmates for academic purposes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7325] "Scales: Multiple representations (MR); Exact replicas (ER); Explanatory tools (ET); Use of scientific models (USM); Changing nature of models (CNM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7326] "Domains: Life Goals; Involvement; Diversity of Treatment Options; Choice; Individually tailored Services; Inviting Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7327] "Factors: Causes and characteristics; Communication and behavior; Care considerations; Risks and health promotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7328] "Factors: Level of Consciousness; Inattention; Psychiatric-Behavioral; Emotional Dysregulation. Domains: Cognitive (Disorganized thinking, Disorientation); Level of Consciousness; Inattention; Psychiatric-Behavioral (Delusions; Perceptual disturbance, hallucination, distortion); Emotional Dysregulation (Anxiety); Psychomotor Features (Agitation; Retardation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7329] "Subscales: Compartmentalization; Detachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7330] "Subscales: Emotional avoidance; Sexual curiosity; Excitement seeking and Sexual pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7331] "Subscales: Social skills; Cognitive skills; Emotional skills. Factors: Leadership; Cooperation; Situational Awareness; Decision-Making; Emotional regulation; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7332] "Subscales: Depersonalization; Derealization; Blanking out; Emotional numbing; Sensory perception; Amnesia; Identity confusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7333] "Factors: Negative Symptoms; Positive Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7334] "Subscales: Negative experience; Economic security; Positive experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7335] "Factors: Neglect and dependency; Interpersonal abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7336] "Subscales: Anhedonia; Lack of normal distress; Asociality; Avolition; Blunted affect; Alogia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7337] "Subscales: Positive mind wandering; Negative mind wandering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7338] "Factors: Anger; Aggressiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7339] "Subscales: Belief; Knowledge; Perception; Desire; Intention; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7340] "Subscales: Helping; Beneficence; Altruism; Giving; Forgiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7341] "Factors: Physical concerns; Cognitive concerns; Social concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7342] "Factors: Investment; Spending Money."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7343] "Subscales: Self-awareness; Psychological empowerment; Self-regulation; Autonomous functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7344] "Subscales: Moral; Competence; Status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7345] "Factors: Distal Advice (DA); Assertiveness (AS); Helplessness/Self-Blame (HS); Close Support (CS); Technical Coping (TC); Retaliation (RET)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7346] "Domains: Emotional problems; Physical problems; Practical problems; Spiritual problems; Family/Social problems (Problem checklist [PL])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7347] "Subscales: Serious Harm Reduction (SHR); Stopping/Limiting Drinking (SLD); Manner of Drinking (MOD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7348] "Factors: Social withdrawal; Concealment of the illness; Perceived devaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7349] "Factors: Perceived devaluation; Internalized stereotypes and social withdrawal; Concealment of the illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7350] "Factors: Financial stressors; Working environment stressors; Cognitive and behavioral stressors; Family environment stressors; Health status stressors; Stressors related to conditions for relaxation; Workload-related stressors; Social relationship stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7351] "Factors: Coming to terms and letting go (CTLG); Developing positive feelings (DPF); Giving benefit of the doubt (GBD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7352] "Subscales: Behavioral intention; Performance expectancy; Effort expectancy; Social influence; Facilitating conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7353] "Subscales: Panic attack and agoraphobia; Separation anxiety; Physical injury fears; Social phobia; Obsessive compulsive; Generalized anxiety disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7354] "Subscales: Helplessness; Acceptance; Perceived Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7355] "Subscales: Information exchange; Recommendations; Ingratiation; Inspirational appeals; Promises; Threats; Personal appeals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7356] "Factors: Adaptability; Involvement; Rapport."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7357] "Factors: Models as multiple representations (MR); Models as exact replicas (MR); Models as explanatory tools (ET); Uses of scientific models (USM); Changing nature of models (CNM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7358] "Factors (Subscales): Passive Acceptance (PA); Revelation (REV); Embeddedness/Emanation (EE); Active Commitment (AC); Synthesis (SYN) (Femininity Synthesis (f-SYN); Autonomous Synthesis (a-SYN))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7359] "Factors: Attitude; Perceived usefulness; Trust; Social norms; Compatibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7360] "Factors: Overall Awareness; Overall Benefits; Overall Concerns; Overall Conditions; Overall Functions; Overall Activities (lower risk); Overall activities (higher risk)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7361] "Subscales: Equality/need; Equity/merit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7362] "Factors: Discrepancy (Discrepância, D); Order (Ordem, O); Standards (Padrões, P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7363] "Factors: Intimacy; Commitment; Passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7364] "Factors: Behavioral; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7365] "Factors: Personal Agency; Self-Efficacy; Self-Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7366] "Factors: Child Version (School Liking; School Avoidance); Parent/Teacher Version (School Liking; School Avoidance; Communication about School)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7367] "Factors: Moving Space Images (MSI); Familiar Images (FI); Detailed Objects Recall (DOR); Images Creative Skill (ICS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7368] "Scales (Subscales): Parenthood (Parental consistency; Compulsive parenting; Positive encouragement; Parent-child relationship); Family Cohesion (Parenting emotional adjustment; Family relations; Parent teamwork)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7369] "Factors: Professional autonomy; Inertia; Justice; Inaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7370] "Subscales: Dyadic reciprocity; Dyadic conflict; Talk and distraction; Struggle for control; Maternal non-contingency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7371] "Domains: E-cigarette Knowledge; Cigarette Use; E-cigarette Use; E-cigarette Relative Harm; E-cigarette Promotion; Acceptability (E-cigarettes and Cigarettes); General Introduction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7372] "[Factors unnamed by authors.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7373] "Factors: Management commitment and safety policy; Leadership style and company values; Use of accident information and prevention programs; Participation or driver involvement; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7374] "Subscales: Achievement and aspirations; Humor, happiness, and satisfaction; General responsibility, moral development, drug/alcohol use; Getting along with others; Relationship commitment and responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7375] "Domains: Eating regularly and carefully; Eating in appropriate environments; Eating in company."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7376] "Factors: Safety culture; Working in a team with health professionals; Communicating effectively; Managing safety risks; Understanding human and environmental factors; Recognizing, responding to, and disclosing adverse events and close calls."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7377] "Factors: Physical impairment; Social isolation; Discrimination experience; Internalized stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7378] "Factors: Preoccupation; Immersion; Withdrawal; Overuse; Interpersonal conflicts; Social isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7379] "Scales: Doggedness; Workaholism; Punctiliousness; Perfectionism; Fastidiousness; Ruminative Deliberation; Excessive Worry; Risk-Aversion; Inflexible; Dogmatism; Constricted; Detached Coldness. Factors: Alpha; Beta."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7380] "Factors: Fear of infecting others (FIO); Perception of other’s fear of being infected by me (POF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7381] "Factors: Causality; Attitude towards contradictions; Perception of change; Locus of attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7382] "Factors: Exaggeration of harm; Confusion of consent; Lack of defense against rape; Lied about the event."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7383] "Subscales: Prevention; Reactive; Teaching; Relational; History."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7384] "Factors: Verbal Perseveration (VP); Imaginal Prefiguration (IP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7385] "Subscales: Amoralism-Crudelia; Amoralism-Frustralia; Greed; Narcissism; Sadism; Self-centeredness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7386] "Factors: Verbal Perseveration (VP); Imaginal Prefiguration (IP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7387] "Subscales: Safety; Trust; Choice; Collaboration; Empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7388] "Subscales: Sleep-wake parameters; Morningness/eveningness; Chronotype."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7389] "Factors: Centrality; Private Regard; Public Regard; Outgroup Regard; Prosocial Motivation; Personal Motivation; Moral Motivation; Strictness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7390] "Factors: Harmony; Blendedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7391] "Subscales: Total Number of Responses (R); Human Responses (H); Animal Responses (A); Anatomical Responses (At); Sex Responses (Sex); Other Responses; Movement Responses (M); Most Typical Responses (MT); Typical Responses (T); Atypical Responses (AT); Rejection of Images (Rej); Pathological Anatomy Scale (PAS); Hostility and Aggression Scale (HAS); Depression Scale (D); Paranoia Scale (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7392] "Subscales: Interest; Achievement; Frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7393] "Factors: Workload; Control; Reward; Community; Justice; Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7394] "Factors: Identifying Emotion; Expressing Emotions; Curiosity about Emotions; Processing Emotions; Autobiographical Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7395] "Factors: Health and nutrition; Taste; Food preparation; Planning and decision-making; Convenience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7396] "Factors: Family; Teachers; Peers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7397] "Factors: Control errors; Traffic errors; Safety equipment; Speed and Alcohol-related violations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7398] "Subscales: Pediatric care doctor; Pediatric care nurse; Pediatric individualized care; Prepared for transition; Adult care doctor; Adult care nurse; Adult individualised care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7399] "Subscales: Positive affect (PA); Negative affect (NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7400] "Subscales: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7401] "Subscales: Bullying Frequency; Victimization Frequency; Perceived Seriousness of Bullying; Perceived Seriousness of Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7402] "Subscales: Perceived Responsibility; Perceived Adult Weight; Perceived Child Weight; Concern about Child Weight; Pressure to Eat; Restriction; Monitoring; Demandingness; Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7403] "Factors: Highway violations; Dangerous violations; Risky violations; Ordinary violations; Moving violations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7404] "Subscales: Equality/need; Equity/merit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7405] "Subscales: Function ability in bed; Transfer ability; Function ability of upper limbs; Mobility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7406] "Factors: Belief in divine providence; Belief in personal resilience; Belief in chance or luck; Belief in inevitable environmental or genetic factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7407] "Factors: Hope; Resilience; Efficacy; Optimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7408] "Subscales: Self; World; Life; Future; Self-Blame; Others; Appropriateness of Grief Reactions; Cherish Grief; Threatening Interpretations of Grief Reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7409] "Subscales: Life; Self; Future; Threatening Interpretations of Grief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7410] "Subscales: Identification with drug use; Severity of dependence; Functions of substance use; Peer networks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7411] "Factors: Individual-oriented interpersonal citizenship behaviors (CCI-I); Task-oriented interpersonal citizenship behaviors (CCI-T)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7412] "Factors: Person–organization fit; Needs–supplies fit; Demands–abilities fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7413] "Subscales: Effort investment; Perceived outcome."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7414] "Factors: Basic; Meat-heavy; Starch-heavy; Accessory foods patterns (Dietary intake); Contemporary Food and Beverage Preparation Pattern; Traditional Culinary Pattern; Meal Structure Pattern (Cuisine-based practices pattern)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7415] "Factors: Emotional Solidarity; Negative Emotions; Positive Emotions; Economic Well-being; Emotional Well-being; Community Well-being; Cultural Well-being; Environmental Well-being; Social Well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7416] "Factors: Picky by acceptance (PBA); Picky by rejection (PBR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7417] "Factors: Getting along; Conflict; Undertaking housework; Avoidance; Support; Sharing; Help-seeking; Self-isolation; Indifference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7418] "Subscales: Internal Personal Social Capital; External Personal Social Capital. Factors: Involvement in organizational social events and volunteering (ISE); Connections with senior managers and employees with power (PWR); Strong ties (ST); Weak ties (SCW); Involvement in activities and events outside of the organization and volunteering (IOE); Power relations (OPW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7419] "Subscales: Comparison; Adding; Inversion; Substitution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7420] "Factors: Childhood access to music lessons and materials; Parent and sibling musical engagement; Peer musical engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7421] "Subscales: Usability and intention to use; Discovery; Functional utility; Flexibility; Connection; Social norms; Value for money; Playback diversity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7422] "Factors: Local Residents and Culture (LRC); Self-Assurance (SA); Disorienting Dilemma (DD); Joy (J)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7423] "Factors: Family; Social Support; Value; Life Security; Personal Development; Leisure Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7424] "Domains: Material wellbeing; Physical wellbeing; Emotional wellbeing; Personal development; Self-determination; Interpersonal relations; Social inclusion; Rights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7425] "Scales: Identity (Section 1); Mental factors; Stress factors: Unhealthy behavior facts; Environmental factors; Biological factors; Genetic factors (Causes (Section 3)); Timeline (Cyclical); Consequences; Personal control; Treatment control; Illness coherence; Timeline (Acute/chronic); Emotional representations (Section 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7426] "Subscales: Forethought; Performance; Self-reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7427] "Subscales: State of the pilot; Trust in the technology; Ticket price and reputation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7428] "Factors: Coping with sadness; Inhibition of sadness; Dysregulation of sadness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7429] "Subscales (Factors): Parenting (Coercive parenting (CP); Positive encouragement (PE); Parent-child relationship (PR)); Family Adjustment (Parental adjustment (PA); Family adjustment (FA))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7430] "Subscales: Emotion; Value; Knowledge; Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7431] "Factors: Self-Efficacy for Learning and Performance; Critical Thinking Disposition; Self-Identity; Online Academic Success Indicators Scale; Self-Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7432] "Subscales: Bond; Task/Goal; Team."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7433] "Subscales: Likeability judgment; Threat judgment; Copresence; Attention allocation; Task attraction; Social attraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7434] "Subscales: Orientation; Registration; Clock drawing; Delayed recall; Verbal fluency; Logical memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7435] "Factors: Emotion perception; Emotion understanding; Emotion regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7436] "Factors: Increasing structural job resources (ISTR); Increasing social job resources (ISOR); Increasing challenging job demands (ICD); Decreasing hindering job demands (DHD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7437] "Subscales: Mindfulness; Affective; Behavioral; Cognitive; Actively Benefiting from Illegal Activities; Passively Benefiting; Deceptive or Questionable; No Harm/No Foul."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7438] "Factors: State internal; State external-family; State external-peer; State external-spiritual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7439] "Subscales: Cognitive; Affective; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7440] "Factors: Monotony; Lack of meaning; Opportunity costs; Being overchallenged; Being underchallenged; Lack of involvement; Teacher dislike; General boredom tendency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7441] "Subscales: Class and Interpretation Anxiety (CI); Fear of Asking for Help Anxiety (FA); Online System Anxiety (OS); Pre-Conception Anxiety (PC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7442] "Subscales: Approach motives for disclosure; Avoid motives for disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7443] "Subscales: Value; Personality; Development; Motivation; Talent management; Resource management; Brand Management; Organizational culture; Restaurant competitive productivity (RCP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7444] "Factors: Knowledge; Partnership in treatment; Recognition and management of symptoms; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7445] "Factors: Cognitive; Time; Ego; Well-Being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7446] "Factors: Somatic symptoms; Depressive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7447] "Factors: Driver-related safety indicators (DRSI); Transport operator-related safety indicators (TORSI); Vehicle-related safety indicators (VRSI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7448] "Factors: Rule and Aggressive violations; Ordinary violations; Personal control errors; Distractions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7449] "Factors: Critical awareness; Responsiveness to diversity; Capacity to act within the organization; Capacity to act within the community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7450] "Factors: Motivational; Cognitive; Emotional; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7451] "Subscales: Shame; Guilt; Authentic pride; Hubristic pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7452] "Subscales: Causes and Characteristics; Communication and Behaviour; Care Considerations; Risks and Health Promotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7453] "Factors: Physiological symptoms; Worries; Specific fears; Fears of social situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7454] "Factors: Academic Relations (AR); Social Relations (SR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7455] "Factors: Campus discrimination; Financial stress; Sense of belonging; Work volition; Career choice satisfaction; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7456] "Subscales: Access to care; Adequacy of care; Quality of care; Effectiveness of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7457] "Factors: Leadership information; Leadership attitude; Communication skills; Decision-making skills; Stress management skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7458] "Categories: Transferring from a wheelchair to bed; Sitting balance; Standing up; Standing with arm movement; Stand on two weight scales placed side by side and maintain the standing balance position."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7459] "Factors: ED-related social comparison [higher-order factor]; Body comparisons; Eating comparisons; Exercise comparisons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7460] "Subscales: Challenge–skill balance; Action awareness; Clear goals; Unambiguous feedback; Concentration; Sense of control; Loss of self-consciousness; Time transformation; Autotelic experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7461] "Factors: Positive Body Connection and Comfort (PBCC); Body Un-encumbered Adjustment (BUA); Agency and Functionality (AF); Experience and Expression of Sexual Desire (EESD); Attuned Self-Care (ASC); Resisting Objectification (RO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7462] "Factors: Health care worker stigma; Community-level stigma; Family-level stigma; Police/law enforcement-related stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7463] "Subscales: Internal Verbalization; Visual Imagery; Orthographic Imagery; Representational Manipulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7464] "Subscales: Rhyming; Blending; Segmenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7465] "Subscales: Concerns; Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7466] "Subscales: Cause knowledge; Impact knowledge; Response knowledge; Mitigation response inefficacy; Generalized/Holistic affect; Descriptive norms; Prescriptive norms; Biospheric values; Altruistic values; Egoistic values; Free-market ideology; Risk perception; Behavioral willingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7467] "Subscales: Backing up head nurses; Instructing young nurses on practices as an informal mentor; Providing young nurses with mental support; Providing empathic support to patients and their families; Coordinating team medical care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7468] "Factors: General knowledge and beliefs; Relation to other concepts; Benefits; Evaluation; Liking; Direct feelings; Current and past participation; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7469] "Subscales: Food enjoyment and interest; Time investment; Monetary investment; Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7470] "Factors: Situations/Thoughts; Drugs; Positive emotions; Negative thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7471] "Factors: Hypersomnia Symptoms; Distress/Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7472] "Factors: Child/Adolescence (C/A); Verbal Communication (VC); Non-Verbal Communication (NVC); Low Empathy (LE); Inflexibility and Adherence to Routine (IAR); Restricted Interests and Rumination (RIR); Hyper- and Hyporeactivity to Sensory Input (HIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7473] "Factors: Tolerance as acceptance of diversity; Tolerance as respect for diversity; Tolerance as appreciation of diversity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7474] "Factors: Tolerance as acceptance of diversity; Tolerance as respect for diversity; Tolerance as appreciation for diversity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7475] "Subscales: Mastery; High arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7476] "Factors: Views; Tactics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7477] "Subscales: Patient Engagement; Provider Contribution to Patient Engagement; Patient Trust; Provider Contribution to Patient Trust; Patient-Provider Concordance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7478] "Factors: Saddened by sad music; Comforted by sad music."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7479] "Subscales: Identifying; Processing; Expressing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7480] "Subscales: Episodic work-to-family conflict; Episodic family-to-work conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7481] "Subscales: Avoidance; Benevolence; Revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7482] "Factors: Work authenticity; Family authenticity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7483] "Subscales: Institutional research expectations; Shared governance; Managerialism; Job benefits; Institutional prestige and motivating academic work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7484] "Subscales: Internal Body Observing; External Body Observing; Emotion Awareness; External Perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7485] "Factors: Stress; Anxiety; Depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7486] "Factors: Information Certainty: System to Human (IC S:H); Information Certainty: Human to System (IC H:S); Power (P); Conflict (C); Mutual Dependence (MD); Future Interdependence: System to Human (FI S:H); Future Interdependence: Human to System (FI H:S). Dimensions: Conflict; Future Interdependence System to human; Future Interdependence Human to System; Information Certainty System to Human; Information Certainty Human to System; Mutual Dependence; Power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7487] "Subscales: Progress (VQ-P); Obstruction (VQ-O)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7488] "Factors: Culture maintenance; Culture adoption; Acquiring cultural knowledge; Enabling cultural contact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7489] "Factors: Blameworthy attributions; Stigmatized attributions; Contextual attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7490] "Subscales: Fear; Anger; Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7491] "Factors: Ethnic Identity; Perceived Discrimination; Social Affiliation; Mainstream Comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7492] "Subscales: Fear of weight gain, Fear of physical sensations; Fear of personal consequences; Fear of social eating; Fear of social consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7493] "Factors: Willingness; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7494] "Subscales: Non-Reactance; Non-Judgment; External Awareness; Internal Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7495] "Subscales: Health-conscious eating behavior (hc-EB); Weight-controlling eating behavior (wc-EB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7496] "Subscales: Appearance; Honesty; Emotional Stability; Parents Relations; Physical Ability; Peer Relations; Math Self-Concept; Verbal Self-Concept; General School Self-Concept. Factors: Academic; Non-Academic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7497] "Factors: External pressure; Norm; School attractiveness; Habit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7498] "Subscales: Tendency to school aversion; Tendency to feel unsatisfied with school; Tendency for isolation in peer relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7499] "Subscales: Agency; Morality; Interpersonal attractiveness; Social acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7500] "Subscales: Helping behavior; Sportsmanship; Loyalty; Civic virtue; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7501] "Factors: Health and safety needs; Economic and family needs; Social needs; Esteem needs; Actualization needs; Knowledge needs; Aesthetics needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7502] "Subscales: Fear of food; Fear of weight gain, Fear of physical sensations (discomfort); Fear of personal consequences; Exercise-related fears; Fear of social consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7503] "Factors: Extraversion; Conscientiousness; Neuroticism; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7504] "Subscales: Excessive Social Use; Excessive Hedonic Use; Excessive cognitive Use; Cognitive function depletion; Poor Sleep Quality; Daytime dysfunction; Restoration after sleep; Difficulty in falling asleep; Difficulty in getting up; Satisfaction with sleep; Difficulty in maintaining sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7505] "Subscales: Frequency; Emotional Valence; Complexity; Directedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7506] "Subscales: Efficacy in safety motivation facilitation; Efficacy in safety management; Efficacy in safety initiative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7507] "Factors: Antagonism; Agency; Planfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7508] "Factors: Exploration; Transgression; Challenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7509] "Subscales: Physical-relational bullying; Verbal bullying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7510] "Subscales: Nurturing and responsive relationships; Supportive classroom environment; Social-emotional instructional content; Social-emotional instructional strategies; Responses to challenging behavior; Interventions for children with persistent challenging behavior; Supporting family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7511] "Subscales: Entrapment; Affective Disturbances; Loss of Cognitive Control; Hyperarousal; Social Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7512] "Domains: Hereditary predisposition, Family and social relationships, Children, Emotions (Negative Affect; Positive Affect)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7513] "Factors: Risk Perception-Probability; Risk Perception-Severity; Risk Perception-Worry and Unsafe."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7514] "Factors: Risk perception – probability (RPP); Risk perception – severity (RPS); Risk perception – worry (RPW); Risk perception – unsafe (RPU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7515] "Factors: Passenger experiences; Knowledge of DUIC laws; Credibility of DUIC laws; Personal attitudes towards DUIC; Social controls."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7516] "Factors: Trust in government; Trust in science; Trust in media; Perceived susceptibility to COVID-19; Perceived severity of COVID-19; Perceived protection benefit of vaccine for travel; Willingness to vaccinate for COVID-19 prior to travel; The belief that others should vaccinate for COVID-19 prior to travel; Support for COVID-19 vaccination requirement prior to travel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7517] "Factors: Psychosocial problem; Craving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7518] "Factors: Enacted stigma; Anticipated stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7519] "Subscales: Polychronicity; Service behaviors; Selling behaviors; Sales-service ambidextrous behaviors; Customer demandingness; Manager feedback; Innovation climate; Locomotion orientation; Assessment orientation; Time pressure; Adaptive selling; Firm market share; Firm financial performance; Price premium."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7520] "Factors: Positive family expressiveness (P); Negative-dominant family expressiveness (ND); Negative-submissive family expressiveness (NS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7521] "Subscales: Gastrointestinal problems; Pain; Fatigue; Cardiopulmonary complaints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7522] "Factors: Fear of Pain and Punishment; Fear of Losing Worldly Pleasure and Investments; Fear of not doing Religious Virtues; Fear of Parting from Loved Ones."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7523] "Subscales: Destination brand associations (DBAS); Destination brand awareness (DBAW); Destination brand quality (DBQU); Destination brand loyalty (DBLY); Destination brand image (DBIM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7524] "Subscales: Control; Challenge/Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7525] "Factors: Creativity is Essential; Creativity is Technical; Creativity is Recognizable; Creativity is Universal; Creativity is Unexceptional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7526] "Factors: Reciprocal Filial Piety (RFP); Authoritarian Filial Piety (AFP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7527] "Subscales: Love; Hate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7528] "Factors: Day-To-Day Living Support; Mental Health Support; Adherence Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7529] "Factors: Experience of pleasure; Avoidance of negative experience; Self-development; Contributions to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7530] "Factors: Indirect; Direct."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7531] "Subscales: Pro-environmental motivation; Environmental self-identity; Perceived social norms; Self-efficacy; Personal ecological norms; Personal values; Past pro-environmental behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7532] "Subscales: Motivations; Values; Learning contexts; Emotional state; Management strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7533] "Factors: Commitment to Students and to Teaching; Classroom Environment; Methodology; Self-Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7534] "Factors: Transformational Leadership; Idealized influence behavior; Attributed idealized influence; Inspirational motivation; Intellectual stimulation; Individualized consideration; Contingent Reward; Active exception management; Passive Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7535] "Factors: Transformational Leadership; Development/Transactional Leadership; Corrective Leadership; Passive/Avoidant Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7536] "Dimensions: Messages; Structure; Help/Modeling; Relationship with Teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7537] "Subscales: Factual Knowledge; Symptom Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7538] "Dimensions (Subscales): Frequency (Sex physiology; Sexual risk; Positive aspects); Quality (Open; Controlled); Child management (Disclosure; Secrecy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7539] "Dimensions (Subscales): Frequency (Sex physiology; Sexual risk; Positive aspects); Quality (Open; Controlled); Child management (Disclosure; Secrecy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7540] "Factors: Pragmatic; Moral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7541] "Dimensions: Lying and rolling; Sitting; Crawling and kneeling; Standing; Walk, run, jump."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7542] "Subscales: Severity; Impairment; Global impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7543] "Subscales: Social distancing; Advice following; Hand washing; Stocking up."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7544] "Factors: Exclusive Maternal Care; Maternal Negative Feelings; Need of Proximity; Perceptions of Separation Benefits for Children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7545] "Subscales: Social distancing; Personal exposures; Community exposures; Secondary stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7546] "Subscales: Pregnancy Scale [Factors: Risk of infection; Contact; Future]; Postpartum Scale [Factors: First postpartum week; COVID-19 measures; Fear for infection]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7547] "Factors: Perceived ease of use (PE); Perceived usefulness (PU); Attitude (ATT); Trust (TR); Perceived enjoyment (EN); Intention to use (IN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7548] "Factors: Gap; Adequacy; Support; Efficiency; Valence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7549] "Factors: Growth (PTG); Depreciation (PTD). Subscales: Relating to Others; New Possibilities; Personal Strengths; Spiritual and Existential Change; Appreciation of Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7550] "Factors: Appreciation of Life (AL); Personal Strength (PS); New Possibilities (NP); Relating to Others (RO); Spiritual and Existential Change (SEC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7551] "Subscales: Cognitive Empathy (CE); Affective Resonance (AR); Affective Dissonance (AD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7552] "Subscales: Moral reasoning; Moral value evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7553] "Subscales: Self-realization (SR); Personal Enrichment (PE); Reputation (RE); Meritocratic Values (MV); Security (SE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7554] "Factors: Attitudes towards mental illness; Knowledge about mental illness; Ability to recognize symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7555] "Factors: Nonbehavioral CBT Skills; Behavioral CBT Skills; CBT Perceptions; Objective CBT Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7556] "Subscales: Group cohesion; Leadership support; Organizational justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7557] "Factors: Rumination; Distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7558] "Factors: Early literacy and math skills (LIT); Precocity (PRE); Current level of abilities and behavior (CUR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7559] "Factors: Perfectionism; Cognitive salience; Regret; Behavioral salience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7560] "Subscales: Situation selection; Reward; Punishment; Pre-commitment; Distraction; Cognitive change; Acceptance; Behavioral Inhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7561] "Factors: Emotional Relief; Opportunistic; Social Facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7562] "Factors: Positive thoughts about limit-setting; Concerns about limit-setting; Distress about night-waking; Positive thoughts about active comforting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7563] "Subscales: Medical Staff; Baby Concerns; Body Image; Anxiety Symptoms; Childbirth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7564] "Subscales: Childbirth Concerns; Body Image Concerns; Attitudes Towards Childbirth; Attitudes Towards Medical Staff; Baby Concerns; Avoidance, Acceptance of Pregnancy, Worry About Self)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7565] "Factors: Assistance; Bystander; Non-intervention intention; Intervention intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7566] "Factors: Impact on eating symptoms; Changes in eating style; Changes in anxiety/depression symptoms; Changes in emotion regulation; Evaluation of telemedicine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7567] "Factors: Individual Attitude; Individual Evaluation Skills; Individual Motivation; Organizational Culture; Organizational Commitment to Evaluation; Organizational Leadership Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7568] "Factors: Perceived autonomy; Perceived competence; Cognitive effort; Performance satisfaction; System satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7569] "Subscales: Sharing; Instructing; Tracking; Gaming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7570] "Factor: Adjustment to Diabetes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7571] "Subscales: Conflict; Threat; Self-Blame; Triangulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7572] "Subscales: Affirmation of Honour Killing (AHK); Deterrents of Honour Killing (DHK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7573] "Factors: Perceived power; Desire for power; Risk perception; Voice shopping intention; Performance expectancy; Personal innovativeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7574] "Subscales: Dysfunction cognitions; Recovery cognitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7575] "Subscales: Myths and associated stereotypes; Favorable attitudes toward persons with mental illness; Social perception of devaluation and discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7576] "Factors: Physical Dependence; Psychological Dependence; Functional Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7577] "Subscales: Treatment stigma; Non-stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7578] "Factors: Verbal abuse; Negative self-perception; Healthcare neglect; Social isolation; Fear of contagion; Workplace stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7579] "Subscales: Values persistence (VP); Non-reactive behavior (NB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7580] "Subscales: Approach goals; Avoidance goals; Relationship closeness; Social support; Enacted stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7581] "Subscales: Dating; New Friendships; Academic Purposes; Social Connectedness; Following and Monitoring Others; Entertainment; Social Recognition; Self-expression; Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7582] "Core components: Agile workplaces; Flexible worker; Virtual leadership. Factors: Outside workplace; Inside workplace; Time management; Workplace management; Work by objectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7583] "Factors: Drive for Size (DFS); Appearance Intolerance (AI); Functional Impairment (FI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7584] "Subscales: Teachers' competence to develop students' information literacy (TCDSIL); Perceived usefulness; Information access; Information use; Information management; Information ethics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7585] "Subscales: Communication and Collaboration; Professional Development; Digital Resources Selection; Digital Resources Creation; Data Protection; Teaching and Learning; Assessment; Learners' Empowerment; Media Education; Learners' Digital Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7586] "Subscales: User experience; Game mechanics; In-game assistance; VR induced symptoms and effects (VRISE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7587] "Subscales: Understanding emotions; Managing emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7588] "Subscales: Perceived safety of vaccines; Perceived effectiveness and necessity of vaccines; Acceptance of the selection and scheduling of vaccines; Positive values and affect toward vaccines; Perceived legitimacy of authorities to require vaccinations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7589] "Subscales: Perceived safety of vaccines; Perceived effectiveness and necessity of vaccines; Acceptance of the selection and scheduling of vaccines; Positive values and affect toward vaccines; Perceived legitimacy of authorities to require vaccinations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7590] "Factors: Ethical and Privacy Expectations; Service Feature Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7591] "Factors: Activity limitation and participation restriction during the functions requiring challenging balance demands in daily life; Activity limitation and participation restriction during instrumental activities of daily living and socialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7592] "Factors: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7593] "Subscales: Caregiver availability; Caregiver continuity; Group stability; Program stability; Arrangement stability; Attendance stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7594] "Factors: Information Exclusion; Relational Exclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7595] "Factors: Perseverance; Effort; Career progress; Career contingencies; Identity w/pursuit; Unique ethos; Self-enrichment; Self-actualization; Self-expression abilities; Self-expression individual; Self-image; Self-gratification satisfaction; Self-gratification enjoyment; Re-creation; Financial return; Group attraction; Group accomplishments; Group maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7596] "Factors: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7597] "Subscales: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7598] "Subscales: Engaging with Others; Amity; Self-management; Emotional Regulation; Open-mindedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7599] "Subscales: Emotional (EMO); Cognitive (COG); Value-related (VALUE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7600] "Subscales: Relationship; Expectancy; Attendance; Clarity; Homework."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7601] "Subscales: Morphological awareness (MA); Cognate knowledge (COG); Contextual clues (CC or ICC); Micro and macro relationships in text (MMRT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7602] "Subscales: Emotional Support (ES); Interpersonal Skills (IS); General Coping (GC); Spirituality (S); Personal Growth and Autonomy (PGA); Global Affect (GA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7603] "Subscales: Relationships and cooperation; Professional knowledge; Responsibilities; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7604] "Subscales: Exposure to health media-safe sex behaviors; Exposure to health media-diet and nutrition behaviors; Exposure to health media-skin cancer prevention; Perceived media influence-safe sex behaviors; Perceived media influence-diet and nutrition behaviors; Perceived media influence-skin cancer prevention; Descriptive norms-safe sex behaviors; Descriptive norms-diet and nutrition behaviors; Descriptive norms-skin cancer prevention; Behavior intention-safe sex behaviors; Behavior intention-diet and nutrition behaviors; Behavior intention-skin cancer prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7605] "Subscales: Controllability; Familiarity; Understanding; Trust in institutions; Resistance to Modernity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7606] "Factors: Win orientation; Goal orientation; Competitiveness orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7607] "Factors: Impression manipulativeness; Emotionality; Expressiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7608] "Factors: Student–Student Relations; Student–Staff Relations; Academic Emphasis; Shared Values Approach; School Identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7609] "Factors: Volume; Uniqueness; Consistency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7610] "Subscales: Same sex; Opposite sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7611] "Dimensions: Touch Avoidance Measure I (TAM 1, Touching persons of the same-sex); Touch Avoidance Measure II (TAM 2, Touching persons of the opposite sex)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7612] "Factors: Partner; Family; Same sex; Opposite sex; Stranger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7613] "Factors: Partner touch; Family touch; Same-sex touch; Opposite-sex touch; Stranger touch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7614] "Subscales: Declarative; Emergent; Anticipatory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7615] "Subscales: Satisfaction; Instrumental help; Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7616] "Factors: Abuse; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7617] "Factors: Lack of Symptomatic Behavior (LSB); Acceptance of Self and Body (ASB); Social and Emotional Connection (SEC); Physical Health (PH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7618] "Factors: Health Management; Challenge; Image; Social Recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7619] "Subscales: Concern for changes in oneself; Fear for the baby’s integrity; Feelings about oneself; Fear of childbirth; Concern about the future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7620] "Dimensions: Understanding; Reasoning; Appreciation; Expressing a choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7621] "Subscales: Internalized Stigma subscale; Concerns with Public Attitudes subscale; Negative Self-Image subscale; Disclosure Concerns subscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7622] "Subscales: Word; Sentence; Text."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7623] "Factors: Helping; Sharing; Caring; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7624] "Factors: Perceived usefulness (PU); Perceived ease of use (PEOU); Environmental Performance (EP); Technology acceptance (TA); Line environment (LE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7625] "Subscales [Factors]: Driving Cost Scale (DCS) [Damage to self-esteem; Life endangerment; Distress]; Driving Benefit Scale (DBS) [Impression management; Sense of control; Thrill; Pleasure]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7626] "Subscales: Situation Selection; Situation Modification; Attentional Deployment; Rumination; Cognitive Change; Suppression; Relaxing Body; Response Modulation; Social Support-Seeking; Extrinsic Regulation; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7627] "Subscales: Pre-interpretation; Interpretation-Positive regard and collaboration; Interpretation-Instilling hope; Post-interpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7628] "Factors: Agreeableness; Extraversion; Conscientiousness; Negative emotionality; Open-mindedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7629] "Subscales: Perceived Societal Barriers; Social Difficulties; Family Marginalization; Discrimination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7630] "Subscales: Future orientation (FO); Spirituality (S); Cognitive (C); Therapeutic relationship (TR); Other relationships (OR); Emotional (E)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7631] "Subscales: Societal devaluation; Personal rejection; Self-stigma; Secrecy of receiving mental health treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7632] "Factors: Knowledge and belief in psychological strategies for reducing depression; Ability to recognize depression; Knowledge and beliefs in positive self-care habits for reducing depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7633] "Factors: Social functioning; Daily life; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7634] "Domains: Care of the infant; Affectionate behavior; Significant incidents; Mother’s handling of separation from infant; Mother infant separation due to risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7635] "Factors: Eating for Physical Rather Than Emotional Reasons; Body-Food Choice Congruence; Reliance on Hunger and Satiety Cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7636] "Subscales: Depressive Symptoms; Reasons for Living; History of Self-Directed Violence; Current Suicidal Thinking; Family History of Self-Directed Violence; Coping Skills; Social Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7637] "Factors: Unrest/Violence in Home Country; Dangerous Journey; Immigration Instability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7638] "Domains: General recruitment strategy; Financial incentive; Undergraduate pipeline; Community pipeline; Perceived impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7639] "Factors: Desire for Challenging Work; Comfort with Ambiguity; Managing the Ambiguity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7640] "Factors: Cognitive Dimension; Behavioral Dimension; Affective Dimension of Prejudice towards people with Vitiligo."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7641] "Factors: Information Quality; Relationship Quality; Telepresence; Flow; Satisfaction; Electronic word-of-mouth behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7642] "Factors: Social Cognitive Bias; Social Cognitive Ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7643] "Subscales: Perceived Discrimination and Negative Evaluation; Perceived Acceptance and Non-negative Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7644] "Factors: Psychosocial; Substance use properties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7645] "Factors: Attitudes Towards Violence; Attitudes Towards Associates; Antisocial Intention; Attitudes Towards Entitlement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7646] "Subscales: Pharmaceutical manipulation; Global conspiracies; Manipulation by secret groups; Extraterrestrial contact cover ups; Information control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7647] "Subscales: Personal efficacy; Interest; Effort; Teaching efficacy; Outcome efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7648] "Factors: Food; Imagination; Nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7649] "Subscales: Purchase Intention (PI); Attitude (AT); Perceived Behavior Control (PBC); Face Consciousness (FC); Group Conformity (GC); Confidence (C); Personal Characteristics (PC); Nutritional Content (NC); Ecological Welfare (EW); Sensory Appeal (SA); Price (P); Utilitarian Attitudes (UA); Hedonic Attitudes (HA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7650] "Constructs: Intention to install mobile security app (Intention); Attitudes (Privacy, Security), Motivation (Self-Experience, Norms) Perceptions (Security privacy); Perceived Behavioral Control (Beliefs; Knowledge); Intervention (Security level; Privacy invasion). Factors: Beliefs, Norms, Experience, Knowledge, Security Attitudes, Privacy Attitudes (Security Attitudes were represented by only one question variable; hence, this variable was not included in the factor analysis)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7651] "Subscales: Brand love; Self-brand connection; Obsessive passion; Materialism; Compulsive buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7652] "Factors: Engagement; Ease."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7653] "Factors: Callousness (CA); Uncaring (UC); Unemotional (UE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7654] "Factors: Warmth; Conflict; Rivalry/jealousy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7655] "Subscales: Hostile Racism; Avoidant Racism; Aversive-Hostile Racism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7656] "Factors: Avoidant Racism; Hostile Racism; Aversive-Hostile Racism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7657] "Constructs: Perceived usefulness; Perceived ease of use; Attitude towards use; Behavioral intention; Relative advantage; School support; Peer influence; Innovativeness; Reputation; Facilitating condition; Computer self-efficacy; Technology complexity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7658] "Subscales: Salience; Withdrawal; Tolerance; Mood Modification; Relapse; Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7659] "Subscales: Related; Autonomous; Separate; Heteronomous."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7660] "Subscales: Interpersonal Problem Behavior (IPB); Negative Problem Solving Behavior (NPSB); Rational Problem Solving Behavior (RPSB); Impulsive Behavior (IB); Avoidance Behavior (AB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7661] "Subscales: Social Goal; Work Avoidance; Help Seeking; Effort Regulation; Peer Learning; Time and Study Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7662] "Factors: Assertiveness; Support; Individuality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7663] "Factors: Mastery Experiences (ME); Cognitive Development (CD); Teaching (TCH); Normative Success (NS); Interaction with Others (IWO); Fun and Enjoyment (FE); Improvement of Health & Fitness (IHF); Diversionary Experiences (DE); Relaxation (REL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7664] "Factors: Emotional support; Informational support; Playfulness; Service excellence; Customer return on investment; Aesthetics; Brand awareness; Brand image; Perceived quality; Brand loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7665] "Factors: Missing Close Others; Lack of Intimacy; Longing for the Past."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7666] "Factors: Classic Prejudice against Immigrants (PAIS-CL); Conditional Prejudice against Immigrants (PAIS-CO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7667] "Subscales: Core Symptoms: Exhaustion; Mental distance; Emotional impairment; Cognitive impairment; Secondary Symptoms: Psychological distress; Psychosomatic complaints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7668] "Subscales: Comprehensibility; Relevance; Novelty; Activation; Valence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7669] "Subscales: Spatial Presence; Enjoyment; Subjective Workload."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7670] "Factors: Social undermining; Employee voice; Employee silence; Organizational deviant behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7671] "Factors: Service innovativeness (SI); Customer cocreation (CO); Customer satisfaction (CS); Customer Advocacy (CA); Behavioral loyalty intent (BLI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7672] "Subscales: Motivational; Evaluative; Meta-reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7673] "Subscales: Adolescent Life Satisfaction; Peer Victimization; Teacher Unfairness; Sense of Belonging to School; Schoolwork‑Related Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7674] "Factors: Empowerment; Humility; Standing Back; Stewardship; Authenticity; Accountability; Courage; Forgiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7675] "Subscales: Positive dream affect; Negative dream affect; Dream intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7676] "Factors: Positive construal; Psychopathology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7677] "Subscales: Entertaining Events; Educational Events; Escapist Events; Aesthetic Events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7678] "Factors: Callousness; Uncaring; Unemotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7679] "Factors: Intrusive Cognitions; Avoidance Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7680] "Factors: Affiliative (Aff); Self-enhancing (Senh); Aggressive (Agg); Self-defeating (Sdef)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7681] "Factors: Knowing; Planning; Creating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7682] "Factors: Customer orientation; Affective commitment; Knowledge sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7683] "Factors: Hopelessness; Anxiety Sensitivity; Impulsivity; Sensory Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7684] "Subscales: Own age-related communication; Dispositional hope; Self-reported memorable message characteristics; Aging efficacy; Successful aging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7685] "Factors: Time-based work interference with family; Time-based family interference with work; Strain-based work interference with family; Strain-based family interference with work; Behavior-based work interference with family; Behavior-based family interference with work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7686] "Factors: Interpersonal manipulation; Insensitive traits; Messy lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7687] "Factors: Technology access (TA); Computer/Internet self-efficacy (CIS); Self-directed learning (SDL); Learner control (in an online context) (LC); Motivation for English learning (in an online context) (MFEL); Online communication self-efficacy (OCS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7688] "Factors: Computer/Internet self-efficacy (CIS); Self-directed learning (SDL); Learner control (LC); Motivation for learning (MFL); Online communication self-efficacy (OCS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7689] "Subscales: Negative treatment; LGB alien in own land; Exoticization; Pathologized; Denial experiences; Gender stereotypes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7690] "Subscales: Technical readiness (TR); Lifestyle readiness (LR); Pedagogical readiness (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7691] "Subscales: Technical readiness (TR); Lifestyle readiness (LR); Pedagogical readiness (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7692] "Factors: Negative activation; Supportiveness/emotional composure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7693] "Subscales: Negative Reaction; Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7694] "Subscales: Dissociative Anonymity; Invisibility; Asynchronicity; Solipsistic Introjection; Dissociative Imagination; Minimization of status and authority; Relationship Formation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7695] "Subscales: Direct; Vicarious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7696] "Subscales: Frequency; Involvement; Desire for change; Environmental support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7697] "Subscales: Attitude towards overspending (ATO); Anticipated guilt (AG); Message framing (DSD); Perceived stigma (PS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7698] "Subscales: Consumer behavioral response (CBR); Consumer perception of environmental responsibility (CPER); Consumer perception of social responsibility (CPSR); Consumer perception of economic responsibility (CPECOR); Consumer familiarity (CF); Community social support (CSS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7699] "Factors: Universalism; Power; Anger - Israel; Anger – Palestine; Hope; Openness to Change; Willingness to Purchase Jointly Made Products."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7700] "Subscales: External regulation; Introjected regulation; Identified regulation; Intrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7701] "Factors: Life care service; Basic and specialist care services; Mental comfort psychological service; Home care support service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7702] "Factors: Arousing anxiety; Controlling behavior; Coercion and threat; Daily emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7703] "Factors: Anxiousness; Social Support; Avoiding/Cleaning; Depressivity; Medical Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7704] "Subscales: Emotional Gratification; Status Gratification; Social Gratification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7705] "Subscales: Appetitive drive; Low dietary control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7706] "Subscales: Challenge/Commitment; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7707] "ICS-Patient Subscales (for sections A and B): Patient characteristics in the clinical situation (ClinA and B); Patient’s personal life situation (PersA and B); Decisional control over care by the patient (DecA and B). ICS-Nurse Subscales (for sections A and B): Clinical situation (ClinA and B); Personal life situation (PersA and B); Decisional control over care (DecA and B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7708] "Subscales: Ease/familiarity with postural awareness; Need for attention regulation with postural awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7709] "Factors: Anxiety-absent; Anxiety-present."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7710] "Factors: Seizures (S); Adverse Effects of Medications (AE); Mood & Social Situation (MSS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7711] "Factors: Seizures; Adverse Effects of Medications; Mood & Social Situation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7712] "Subscales: System Inequality (SI); Competition (C); Personal Wherewithal (PW); Government Interference (GI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7713] "Factors: Physical Activity; Travel; Social Relationships; Emotional Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7714] "Subscales: Trigger frequency; Affective Responses; Physiological Responses; Cognitive Responses; Coping Before; Coping During; Coping After; Impairment; Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7715] "Subscales: Trust; Communication; Alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7716] "Factors: AARC-Gains; AARC-Losses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7717] "Subscales: Learning Math Anxiety (LMA); Math Evaluation Anxiety (MEA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7718] "Factors: Part A (Physical; Thinking and Communication; Social/behavioural); Part B (Personal Factors; Environmental Factors; Barriers to return to work)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7719] "Subscales: Attention; Clarity; Repair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7720] "Factors: Escapism; Leisureliness; Happiness; Personal Enrichment; Nothingness; Sense of Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7721] "Subscales: Motivation-Red (communist identity); Motivation-Uniqueness; Motivation-Convenience; Motivation-Escape; Attitude; Subjective norm; Positive anticipated emotion; Perceived behavioral control; Desire; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7722] "Subscales: Spatial creativity; Environmental creativity; Institutional creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7723] "Subscales: Intrateam trust; Team performance; Respect-for-people (RFP) culture; PO-fit in recruitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7724] "Subscales: Playing through pain and injury; Deferential behavior; Deferential norm; Personal gain; Social gain; Neutralizing definitions; Positive definitions; Imitation from secondary group; Imitation from primary group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7725] "Subscales: Sex-Based Objectification; Appearance-Based Objectification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7726] "Subscales: Trust; Mistrust; Credulity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7727] "Subscales: Perceived usefulness (PU); Perceived ease of use (PEU); Behavioral Intention (BI); Subjective norm (SN); Constructivist teaching beliefs (CTB); Perceived importance of policy (PIP); Computer self-efficacy (CSE); Voluntariness (VOL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7728] "Subscales: Strategic job identification; Competence training; Performance evaluation; Development; Compensation and benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7729] "Subscales: Mastering commands; Social activities; Installation and activation; Class management; Group functioning; Instructor support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7730] "Subscales: Interactivity (I); Affinity (Af); Autonomy (Au); Relatedness (R); Competence (C); Satisfaction (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7731] "Factors: Innovation niches; Innovation ecological network; Innovation ecological environment; Ambidextrous innovation (Exploratory and Exploitative)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7732] "Factors: Social Presence; Perceived Intelligence; Social Attraction; Perceived Ease of Use; Perceived Usefulness; Hedonic Benefits; Utilitarian Benefits; Distrust; Consumer Brand Engagement (Cognition, Affection, Activation); Purchase Intention; Brand Usage Intent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7733] "Factors: Interactivity; System Quality; Product Informativeness; Reality Congruence; Immersion; Enjoyment; Product Liking; Media Usefulness; Choice Confidence; Reuse Intention; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7734] "Subscales: Efficiency; Financial performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7735] "Constructs: Digital task interdependence (DTI); Disruptive technology (DT); Smart human resources management technology (SHRMT); Team creativity willingness (TCW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7736] "Factors: Corporate Frugality (Frugality); Corporate Social Responsibility (CSR); Organizational Citizen Behavior (OCB); Monochronicity; Servant Leadership; Job Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7737] "Factors: LLIS Physical; LLIS Psychosocial; LLIS Functional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7738] "Factors: Youth materialism; Offline Friendship Quantity; Offline Friendship Quality; Theory of Mind; Facebook Activity; Twitter Activity; Instagram Activity; Snapchat Activity; Online Social Network Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7739] "Subscales: . Anonymity and Ownership; Exploitation; Permission; Vulnerable Groups; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7740] "Factors: Sponsor loyalty; Sponsor attitude; Sponsorship fit; Altruistic motives; Egoistic motives; Fan identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7741] "Subscales: Increased capacity and positive belief in affective value of self-harm; Intention to self-harm and feeling valued."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7742] "Subscales: Patients in control, planning for and intending self-injurious behavior; Being valued and coping effectively; Capacity for self-injury and a role for affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7743] "Factors: Competence; Fidelity; Honesty; Caring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7744] "Factors: Prospective Anxiety; Inhibitory Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7745] "Subscales: Self-directed perfectionism; Other-directed perfectionism; Socially prescribed perfectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7746] "Subscales: Capacity of Harm; Fear of Negative Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7747] "Subscales: Self Blame; Acceptance; Rumination; Positive refocusing; Refocus on planning; Positive reappraisal; Putting into perspective; Catastrophizing; Blaming others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7748] "Factors: Attention; Clarity; Repair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7749] "Subscales: Emotional exhaustion; Cynicism; Sense of inadequacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7750] "Factors: Ease/Familiarity with Postural Awareness; Need for Attention Regulation with Postural Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7751] "Factors (Domains): Factor 1 (domains of cognition, communication and function); Factor 2 (domain of behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7752] "Subscales: Ideal L2 self; Ought-to L2 self; Informal Digital Learning of English practice; Foreign Language Enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7753] "Factors: Emotional Overload; Behavioral Restrictions; Pessimism; Children's Disabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7754] "Factors: Sympathy; Personal anguish; Empathic moral understanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7755] "Factors: Delusional; Obsessive; Passionate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7756] "Subscales: Prosocial behavior directed to teammates (CPC); Prosocial behavior directed to opponents (CPA); Anti-social behavior directed to teammates (CAC); Anti-social behavior directed to opponents (CAA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7757] "Subscales: COVID-19 vaccination attitudes; General vaccination attitudes; Flu shot intentions; Perceived threat of COVID-19; Trust in broad institutions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7758] "Constructs: Pedagogical beliefs; Personal innovativeness; Peer influence; Facilitating conditions; Attitudes; Subjective norms; Perceived behavioral control; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7759] "Subscales: Planning/evaluation; Directed attention; Person knowledge; Problem-solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7760] "Subscales: Intrinsic Motivation; Extrinsic Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7761] "Subscales: Self-Efficacy; Risk-Taking; Innovativeness; Achievement motivation; Autonomy; Internal locus of control; Optimism; Stress tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7762] "Subscales: Self-efficacy; Achievement motivation; Innovation; Internal locus of control; Optimism; Autonomy; Risk-taking; Stress tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7763] "Subscales: Self-Management Skills (SM); Responsible Decision Making (RD); Relationship Skills (RS); Self-Awareness (SA); Social Awareness (SO); Attitude about Task (AT); Long-Term Results Weekendschool (LTRE); Future Perspective (FP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7764] "Subscales: Perceived susceptibility; Perceived barrier; Perceived benefit; Perceived self-efficacy; Perceived behavioral change intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7765] "Factors: Contribution to learning; Context diagnosis; Students’ involvement; Organized relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7766] "Subscales: Breathability-related discomfort; Tightness-related discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7767] "Subscales: Verbal learning and memory; Executive functions; Processing speed; Working memory; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7768] "Factors: Self-determination; Resilience; Empathy; Assertiveness; Social support; Teamwork."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7769] "Factors: Body awareness; Resonance; Empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7770] "Subscales: Relational verbal; Cyber; Physical; Cultural."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7771] "Factors: Dysphoria; Wellbeing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7772] "Subscales: Indication for UC insertion; CAUTI prevention knowledge; Attitude; Perceived practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7773] "Factors: Promotion focus; Prevention focus (Regulatory orientations); Attraction to public service; Commitment to public values; Compassion; Self-sacrifice (Public service motivation); Change-Organizational citizenship behaviors; Maintenance-Organizational citizenship behaviors (Organizational citizenship behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7774] "Subjective value congruence (SVC); Subjective norms (SN); Attitude toward a behavior (ATT); Perceived behavioral control (PBC); Information security awareness (ISA); Job satisfaction (SAT); Behavior intention (BI); Security behavior (SB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7775] "Factors: AD-relevant symptom domains (Cognition; Communication; Function/Activities of daily living); Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7776] "Factors: Capacity for Harm (CH); Fear of Negative Evaluation (FNE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7777] "Subscales: High-Level Needs (Self-Esteem and Self-Actualization); Middle-Level Needs (Safety and Belonging); Low-Level Needs (Physiological)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7778] "Domains: Burden; Eating duration; Eating desire; Food selection; Fear; Mental health; Social functioning; Communication; Sleep; Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7779] "Domains: Physical function; Anxiety; Depression; Fatigue; Sleep disturbance; Social roles and activities; Pain Interference. Pain intensity numeric rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7780] "Factors: Multicultural Therapeutic Relationship and Assessment; Multicultural Invention; Multicultural Conceptualization and Goal Setting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7781] "Subscales: Emotional intimacy; Sexual intimacy; Marital conflicts; Intergenerational relationships; Complaints about partner's lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7782] "Subscales: Cognitive; Practical; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7783] "Factors: Attitude; Perceived Behavioral Control; Behavior; Intrapersonal Religious Commitment; Interpersonal Religious Commitment; Intention; Subjective Norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7784] "Factors: Social responsibility (SR); Need to cope (NC); Individual responsibility (IR); Anthropogenic origin (AO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7785] "Factors: Regular Use; Social-Enabled Use; Self-Enabled Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7786] "Dimensions: Healthy condition (HC); Practical wisdom (PW); Cultural literacy (CL); Empowerment and autonomy (EA); Loyalty and commitment (LC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7787] "Factors: Privacy concerns; Trust; Privacy empowerment; Corporate privacy responsibility; Regulatory protection; Defensive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7788] "Subscales: Flow; Authenticity; Motivation; Learnability; Usability; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7789] "Subscales: Nature Experience; Religious Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7790] "Subscales: Interest in field trips and field trip implementation; Perceived self-efficacy towards leading a successful field trip."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7791] "Subscales: Consulting Experience; Services and Facilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7792] "Factors: Amotivation; External regulation; Introjected regulation; Identified regulation; Integrated regulation; Intrinsic regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7793] "Subscales: Teacher; Private; Interaction; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7794] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7795] "Factors: Nostalgia of the past (NOS1); Positive perception of my past (NOS2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7796] "Subscales: Program satisfaction (PS); Satisfaction with faculty mentoring (MF); Satisfaction with staff mentoring (MS); Incorporation of ethnic minority issues in classes (EC); Dominant culture academic expectations (AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7797] "Subscales: Physically and interpersonally safe working conditions; Access to health care; Adequate compensation; Hours that allow for free time and rest; Organizational values that complement family and social values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7798] "Subscales: Safe working conditions; Access to healthcare; Adequate compensation; Free time and rest; Complementary values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7799] "Subscales: Survival needs; Social contribution needs; Competence needs; Relatedness needs; Autonomy needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7800] "Factors: Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7801] "Subscales: Attitude; Subjective norm; Perceived behavioral control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7802] "Subscales: Involvement; Natural; Interface Quality; Resolution; Auditory; Haptic; Immersion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7803] "Subscales: Changing in mood; Increasing in tension; Alerting reaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7804] "Subscales: Enrichment; Active leisure; Social engagement; Indoor leisure; Social leisure; Health; Retail."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7805] "Factors: Lack of Premeditation; Positive Urgency; Negative Urgency; Lack of Perseverance; Sensation Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7806] "Subscales: Maternal healthcare; Infant healthcare; Healthcare participation; Childcare; Parent-infant relationship; Infant crying; Material support; Domestic violence; Family child maltreatment history; Parent mental health; Parent substance abuse; Parent social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7807] "Factors: Negative Outcome Expectations (Negative impact on the parent–child relationship; Negative impact on the child development; Negative impact on the child’s well-being); Positive Outcome Expectations (Better adjustment and planning for the child; Psychological relief)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7808] "Factors: Affect; Preferred Difficulty; Response to Failure; Proactive Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7809] "Subscales: External; Introjected; Identified; Intrinsic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7810] "Factors: Stressed; Energetic; Social; Disciplined."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7811] "Factors: Academic stressors; Social distancing; Pandemic; General overload; Interpersonal conflicts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7812] "Factors: Oriented to others; Reframing; Activities; Structure/Healthy routines."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7813] "Subscales: Communication and Social Skills; Adaptive Skills; Behavioral Functioning; Sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7814] "Factors: Satisfaction with Body and Fat; Satisfaction with Body External Parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7815] "Factors: Satisfaction with Body External Parts; Satisfaction with Body and Muscle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7816] "Factors: Behavioral; Emotional; Rational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7817] "Factors: Dieting; Weight preoccupation; Food preoccupation; Social pressure (to eat or to gain weight)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7818] "Factors: Salience; Mood modification; Tolerance; Withdrawal symptoms; Conflict; Relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7819] "Subscales: Non-weight; Weight; Functionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7820] "Subscales: Verbal control; Overcontrol; Terrorizing; Insufficient control; Emotional rejection; Overexpectation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7821] "Subscales: Class-related emotions - Enjoyment; Class-related emotions - Anxiety; Class-related emotions - Boredom; Homework-related emotions - Enjoyment; Homework-related emotions - Anxiety; Homework-related emotions - Boredom; Test-related emotions - Enjoyment; Test-related emotions - Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7822] "Factors: Regard for truth; The boss; Bullshit language."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7823] "Factors: Abstinence; Abuse; Tolerance; Loss of Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7824] "Factors: Religious beliefs, Moral beliefs, Biological beliefs, Beliefs unfavorable to sexual reversion, and Psychological beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7825] "Subscales: Physical/social; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7826] "Factors: Physical fatigue; Mental fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7827] "Subscales: 3D Frameless; 2D Rotation; Wireframe."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7828] "Factors: Physical health; Psychological health; Social relationship; Environmental; Spiritual health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7829] "Subscales: Social distancing; General hygiene; Information seeking; Health behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7830] "Subscales: Physical Functioning (PF); Role Limitations due to Physical Health (RP); Bodily Pain (BP); General Health Perception (GH); Vitality (VT); Social Functioning (SF); Role Limitations due to Emotional Problems (RE); Mental Health (MH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7831] "Factors: Undergraduate teaching ability investment; Undergraduate teaching energy investment; Undergraduate teaching emotion investment; Undergraduate teaching workload investment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7832] "Subscales [Factors]: General (BMQ-G) [Harm; Overuse]; Specific (BMQ-S) [Necessity; Concern]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7833] "Subscales: Options; Pros; Cons; Preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7834] "Subscales: Shared reading and storytelling; Teaching of print-related skills; Play and media-based activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7835] "[The five factors obtained were not named by the authors.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7836] "Subscales: Cognitive; Receptive communication; Expressive communication; Fine motor; Gross motor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7837] "Factors: Bowel dimension; Social dimension; Emotional dimension; Systemic dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7838] "Factors: Perceived Precision Teaching; Self-efficacy; Learning motivation; Teaching presence; Social presence; Cognitive presence; Learning performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7839] "Sections: Opinions on Learning Science Themes (School science subject relevance; Personal and social relevance factor); Intrinsic motivation (Interest/Enjoyment; Perceived competence; Effort/Importance; Value/Usefulness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7840] "Subscales: Positive emotions; Negative emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7841] "Subscales: BLM-support; BLM-action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7842] "Factors: Act; Relate; Engage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7843] "Subscales: Cultural Factors Shape Stigma (CFSS); Cultural Capabilities Protect against Stigma (CCPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7844] "Subscales: Performance; Importance; Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7845] "Subscales: Perceived team restructuring (TR); Perceived team relative status (TRS); Perceived team composition (TC); Overall affective reaction (AR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7846] "Perceived pros: Self-concept related; Perceived Pros: Relationships to others; Perceived cons (Decisional balance); Consciousness raising; Dramatic relief; Self-reevaluation; Helping relationships; Change actions (Processes of Change); Confidence; Emotion regulation temptations; Reinforcing temptations (Self-Efficacy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7847] "Factors: Need for status; Vigor; Job performance; Employee voice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7848] "Factors: Self-efficacy; Motivational cultural quotient; Language confidence; Task performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7849] "Factors: Structural social capital; Relational social capital; Cognitive social capital; Information technology support; Knowledge sharing; Team innovation capabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7850] "Subscales: Quantity and quality of feedback; Feedback use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7851] "Factors: Top management knowledge value (TMKV); Knowledge sharing practices (KSP); Open innovation (OI [Outbound; Inbound]); Organizational performance (OP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7852] "Factors: Operations and Marketing Competencies (OMC); Competencies in Socio-Business and Legal Organization (CSBLO); Economic-Financial Competencies (EFC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7853] "Subscales: Thoughts/Obsessions; Behaviors/Compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7854] "Subscales: Homework; Classroom; School."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7855] "Subscales: Disabled Integrators; Disabled Isolates."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7856] "Factors: Time Off; Flexibility; Coworker Support; Discrimination; Microaggressions; Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7857] "Factors: Positive attitudes (PA); Negative attitudes (NA); Subjective norms (SN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7858] "Subscales: Valence; Arousal; Threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7859] "Constructs: Knowledge (KN); Performance Expectancy (PE); Effort Expectancy (EE); Attitude (ATT); Trust (TR); Behavioral Intention (BI); Uptake Behavior (UB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7860] "Factors: Complexity of deception; Community Integration; Resource extraction; Detectability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7861] "Factors: Depressive symptoms; Demotivation; Psychosomatic symptoms; Mood deterioration; Intellectual inhibition; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7862] "Factors: Mood, affect and cognitive symptoms; Physical symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7863] "Subscales: Strength of evidence; Reliability of the confession; Overall impression of the interrogation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7864] "Factors: Personnel; Information; Practice; Participation; Goals; Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7865] "Subscales: Antagonism; Detachment; Disinhibited Aggression; Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7866] "Factors: Negative affectivity; Detachment; Psychoticism; Antagonism; Disinhibition; Subscales: Anxiousness; Emotional lability; Hostility; Perseveration; (Lack of) Restricted affectivity; Separation insecurity; Submissiveness; Anhedonia; Depressivity; Intimacy avoidance; Suspiciousness; Withdrawal; Eccentricity; Perceptual dysregulation; Unusual beliefs and experiences; Attention seeking; Callousness; Deceitfulness; Grandiosity; Manipulativeness; Distractibility; Impulsivity; Irresponsibility; (Lack of) Rigid perfectionism; Risk taking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7867] "Subscales: Gender harassment; Unwanted sexual attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7868] "Factors: Surrogate Spouse; Unsatisfactory Childhood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7869] "Factors: Fragmented idealization; Fragmented grandiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7870] "Subscales: Denial of information support by department leaders; Team leaders' deprivation-triggered negative affect; Team leaders' perception of injustice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7871] "Factors: Work role identity conflict; Creative process engagement; Relational identification with the supervisor; Creative role perception; Workplace creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7872] "Factors: Childlike sense of self; Friendship and positive relationships with children; Romantic attraction to children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7873] "Factors: Consumer peer interaction; Interface design; Loyalty; Personalization; Privacy concerns; Relationship commitment; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7874] "Subscales: Fundamental feedback processes; Goals and tasks; Respect; Enabling supervisory practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7875] "Subscales: Foundational competencies enabling effective feedback; Fundamental accountability, safety, and awareness processes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7876] "Factors: Irrational Belief; Rational Belief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7877] "Factors: Despondent—Affect; Despondent—Thoughts; Despondent—Behavioural Intentions; Despondent—Affect- Associated Thoughts; Escape—Affect; Escape—Thoughts; Escape—Behavioural Intentions; Escape—Affect- Associated Thoughts; Approach—Thoughts; Approach—Affect; Approach—Behavioural Intentions; Approach—Affect- Associated Thoughts; Relaxation—Thoughts; Relaxation—Affect; Relaxation—Behavioural Intentions; Relaxation—Affect- Associated Thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7878] "Factors: Stress-Worries; Cognition; Stress-Overwhelmed; Function; Core Symptoms; Being a Burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7879] "Factors: Personal strength; Meaning and purpose of life; Family support; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7880] "Factors: Successful psychopathy; Grandiose entitlement; Sadistic cruelty; Entitlement rage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7881] "Factors: Emotional Sequelae; Perpetrations; Betrayal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7882] "Subscales: Self-kindness (SK); Common humanity (CH); Mindfulness (MI); Self-judgment (SJ); Isolation (IS); Over-identification (OI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7883] "Subscales: Food to Soothe (FTS); Food as a Reward (FAR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7884] "Factors: Cognitive assistance; Attentional assistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7885] "Subscales: Machiavellianism; Narcissism; Psychopathy; Sadism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7886] "Factors: Strong Love for Food; Perceived Knowledge; Knowledge Acquisition; Food-seeking Behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7887] "Subscales: Moral Norm Violation; Moral Dirtiness; Empathy; Harm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7888] "Factors: Intrinsic Motivation (IM); Parental Support (PS); Teacher Support (TS); E-learning Self-efficacy (ESE); Behavioral Engagement (BE); Online Course Evaluation (OCE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7889] "Constructs: Information overload; Cyberchondria; Perceived risk of the vaccine; Vaccine skepticism; Vaccinated intention; Celebrity endorsement trustworthiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7890] "Factors: Virtual presence; Present-hedonistic time perspective; Future time perspective; Narcissism traits; Hedonic gratification; Self-disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7891] "Factors: Multiracial Conscious Support (MCS); Multiple Heritage Validation (MHV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7892] "Subscales: Fine Motor (FM) Skills; Gross Motor (GM) Skills; Receptive Language (RL); Expressive Language (EL); Visual Reception (VR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7893] "Subscales: Process control; Decision control; Information control; Commitment; Well-being; Job performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7894] "Subscales: Internal physical environment; External physical environment; Emotional well-being; Guest satisfaction; Price perception; Guest retention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7895] "Subscales: Transformational Leadership; Transactional Leadership; Ability to acquire resources; Reward mechanisms; Organizational Effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7896] "Factors: Preference for learning process-oriented feedback; Preference for student self-feedback; Preference for teacher evaluative feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7897] "Factors: Ideal L2 self; Attitudes to classroom English learning measured; Intended learning effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7898] "Subscales: Frequency; Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7899] "Factors: Secondary Traumatic Stress (STS); Engagement in Caring (EC); Meaningful Cognitive Restructuring (MCR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7900] "Factors: Clear goals; Unambiguous feedback; Challenge-skill balance; Concentration; Action-awareness merging; Sense of control; Loss of self-consciousness; Transformation of time; Autotelic experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7901] "Factors: Parental Knowledge; Parental Competence; Online Risk Perception; Parental Responsibility; Parental Supervision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7902] "Factors: Parental knowledge of cyberbullying; Parental competence; Online risk perception; Assumption of parental responsibility; Parental supervision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7903] "Domains: Finances (FIN); Employment and Education (EE); Social Relationships, Participation and Limitations (SOC); Housing and Neighbourhood (HN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7904] "Subscales: Ally Identity Behaviors; Ally Identity Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7905] "Subscales: Personal and Social Skills; Cognitive Skills; Goal Setting; Initiative; Negative Experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7906] "Factors: Autonomy satisfaction; Autonomy frustration; Competence satisfaction; Competence frustration; Relatedness satisfaction; Relatedness frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7907] "Scales: Self-Care Management (Disease prevention behaviors; Improving breathing behaviors; Physical activities promotion behaviors; Treatment adherence behaviors); Self-Care Monitoring (Respiratory symptom monitoring behaviors; Extra-respiratory symptom monitoring behaviors); Self-Care Management (Autonomous behaviors; Consulting behaviors; Problem-solving behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7908] "Subscales: Informal Test [Time, Measure; Transportation; Communication; General Knowledge; Money]; Formal Test [Number Comprehension; Reading and Writing Arabic Numerals; Mental Calculation; Written Calculation - Arithmetical Rules and Principles; Written Calculation – Written Operations]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7909] "Factors: Performance (Perf); Social (Soc); Appearance (App)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7910] "Factors: Institutional Values; Access to Resources; Person-Centered Approaches."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7911] "Factors: Nonacceptance; Goals; Impulse; Strategies; Clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7912] "Factors: Social value; Functional value; Perceived ease of use; Social influence; Perceived behavioral control; Perceived Enjoyment; Concentration; Telepresence; Continuation intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7913] "Subscales: Resilience; Motivational; Relational; External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7914] "Factors: Transitory situations; Stable characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7915] "Factors: Self-Stigma of Loneliness (SSL); Public Stigma of Loneliness (PSL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7916] "Factors: Teachers' Psychosocial Competences in the Context of Inclusive Education; Psycho-Pedagogical Advantages of Including Students with SEN in Mainstream Schools; Pedagogical and Classroom Management Competences of Teachers in the Context of Inclusive Education; Technical-Material and Training Resources in the Context of Inclusive Education; Effects of the Inclusion of Students with SEN."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7917] "Subscales: IEP development; IEP implementation; IEP evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7918] "Factors: Perceived customer centricity; Firm’s customer orientation; Salespeople’s customer orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7919] "Subscales: Adverse experiences from peers; Adverse experiences from guardians; Adverse experiences from teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7920] "Factors: Psychological; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7921] "Constructs: Perceived Interruption Overload; Work-life Conflict; Work-related Technology Usage; Schedule Control; Method Control; Criteria Control; Tenure; Compatibility; Telepresence; Family time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7922] "Subscales: Sensory abilities; Autonomy; Death and dying; Social participation; Past, present and future activities; Intimacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7923] "Factors: Constraint; Imbalance; Perceived stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7924] "Subscales: Picture naming; Identifying character forms from pictures; Character reading; Matching pictures to character forms; Matching pictures to sounds; Identifying character forms from sounds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7925] "Facets: Activity involvement (AI); Activity experience (AE); Experience value (EV); Place attachment (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7926] "Factors: Efficacy to use inclusive instruction; Efficacy in collaboration; Efficacy in managing behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7927] "Dimensions: Employees’ trust in organizational safety; Employees’ safety participation behavior; Psychological safety; Employees’ sense of belonging. Factors: Employees’ trust in organization’s safety institutions (ETSI); Employees’ trust in the organization’s safety equipment (ETSE); Employees’ trust in organization’s safety management practice (ETSM); Proactive safety behavior (SAB); Prosocial safety behavior (SSB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7928] "Factors: Verbal Warning Signs; Non-Verbal Risk Factors and Warning Signs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7929] "Factors: Organization and fusion ability; Communication ability; Learning development ability; Emotion regulation ability; Career transformation ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7930] "Factors: Sense of purpose; Purposeful personal expressiveness; Effortful engagement; Global Eudaimonic Wellbeing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7931] "Factors: Basic psychological needs satisfaction (BPNS); Basic psychological needs frustration (BPNF). Variables: Satisfaction of autonomy (SA); Satisfaction of competence (SC); Satisfaction of relatedness (SR); Frustration of autonomy (FA); Frustration of competence (FC); Frustration of relatedness (FR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7932] "Factors: Symptom management; Treatment adherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7933] "Factors: Teamwork; Goal Setting; Social Skills; Problem Solving; Emotional Skills; Leadership; Time Management; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7934] "Domains: Distress; Protect; the Family Impact; Parent Health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7935] "Constructs: Service Quality; Overall Perceived Service Value; Value of efficiency; Value of Democracy; Value of Inclusiveness; Satisfaction; Continuous-Use Intention; Information Quality; Service Capacity; Accessibility; Security; Reliability; Responsiveness; Interactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7936] "Subscales: Openness to Getting Vaccinated; Refusal to Get Vaccinated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7937] "Subscales: Positive and active engagement in life; Health directed activities; Skill and technique acquisition; Constructive attitudes and approaches; Self-monitoring and insight; Health service navigation; Social integration and support; Emotional distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7938] "Subscales: Growth creative mindsets; Fixed creative mindsets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7939] "Factors: Stress attributable to responding to calls; Administrative stress; Stress attributable to being over-worked."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7940] "Subscales: Environmental uncertainty; Job insecurity; Organizational identification; Anxiety; Effort; Organizational citizenship behavior; OCB to coworkers; OCB to supervisor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7941] "Subscales: Doubting/Checking; Obsessing; Washing; Hoarding; Neutralizing; Ordering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7942] "Factors: Respectful, Coordinated, and Comprehensive Care; Enabling Partnership; Providing General Information; Providing Specific Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7943] "Subscales: Justification of violent extremism; Behavioral intentions regarding collaboration with the police; Police fairness; Trust in the security apparatus; Collaboration helps ensure safety; Collaboration endangers self; Perceived support for violent extremism; Perceived collective efficacy to prevent violent extremism; Fatalism to prevent violent extremism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7944] "Subscales: Reasons; Postponing Training; Unrelated Thoughts; Self-Confidence; Approval from Others; Coping with Failure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7945] "Factors: Preferred encounters (E); Perceived possibilities (P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7946] "Subscales: General confidence in administering PST to groups; General therapeutic skills self-efficacy; PST-specific skills self-efficacy; Intervention/referral self-efficacy; Application and utility of the PST curriculum; Initiating and maintaining PST."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7947] "Factors: Knowledge (Participatory knowledge; Educational knowledge; Communicative knowledge); Abilities (Participatory and moral ability; Educational abilities; Communicative ability); Motivation (Participatory and moral motivation; Communicative motivation; Educational motivation); Behavior (Participatory and moral behavior; Communicative behavior; Educational behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7948] "Factors: Positive word of mouth (PWOM); Negative word of mouth (NWOM); Social bonding (SB); Social comparison (SC); Share social norm information (SSNI); Product satisfaction (PS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7949] "Factors: Active Parental Guidance of Food Consumption; General Discussion About Food Consumption; Restrictive Guidance of Food Consumption (Preventive); Restrictive Guidance of Food Consumption (Promotive)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7950] "Factors: Social Integration (SI); Social Recognition (SR); Self-Enhancement (SE); Experiential Life (EL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7951] "Factors: Impersonal Dimension; Interpersonal Dimension; Personal-risky Dimension; Loyalty Dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7952] "Factors: Positive affect and willingness to reengage; Stored utility value; Stored attainment value and knowledge-seeking intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7953] "Factors: Beliefs/trust; Spousal/partner relationship; Home care; Family involvement; Security and stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7954] "Constructs: Guilt (GLT); Attitude towards green banking (AGB); Perceived consumer effectiveness (PCE); Negative word-of-mouth (NWOM); Intention to use green banking services (IGB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7955] "Subscales: Certainty about mental states; Interest and curiosity in mental states; Prementalizing modes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7956] "Subscales: Prosociality; Daring; Negative emotionality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7957] "Factors: Family; School; Life skills; Self-concept; Social activities; Risky Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7958] "Factors: Family; Work; School; Life skills; Self-concept; Social activities; Risky Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7959] "Constructs: Supplier corporate environmental responsibility (CER); Buyer satisfaction (BSAT); Buyer trust (BTRU); Buyer commitment (BCOM); Buyer repurchase intention (BRPI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7960] "Subscales: Negative attitude toward school; Negative attitude toward teachers; Sensation-seeking (School problems); Atypicality; Somatization; Inadequacy; Social stress; Locus of control; Depression; Anxiety problems (Internalizing problems); Attention problems; Hyperactivity (ADHD); Self-reliance; Relationship quality with parent; Self-esteem; Peer relations (Personal adjustment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7961] "Factors: Comprehension; Purpose; Internal Value (IV); External Value (EV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7962] "Subscales: Superior; Fraud; Expensive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7963] "Subscales: Environmental Concerns; Environmental Actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7964] "Factors: Impairment in different dimensions; Emotional and behavioral symptoms; Insomnia disorders; Consciousness of the disease and physical changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7965] "Factors: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7966] "Factors: Alliance; Knowledge; Competency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7967] "Subscales: General attitudes towards prevention; Attitudes towards prevention in integrated care; Risks Associated with Prevention in Integrated Care; Benefits Associated with Prevention in Integrated Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7968] "Subscales: Lack of self-sufficiency/dependency on others; Self-sufficiency/independence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7969] "Subscales: Task; Change; Relations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7970] "Factors: Salience; Positive Anticipation; Cyberspace-Oriented Relationship; Preoccupation with Smartphone; Physical Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7971] "Subscales: Discomfort Discussing RC Topics; Discomfort Discussing Common Advocacy Topics; Universal RC Practice; Targeted RC Practice; Barriers to Discussing RC; Comfort Talking With Clients About Sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7972] "Domains: End-of-life control; Keeping patients alive; Trust in doctors/treatment; Trust in social support; Sense of suffering; Dependence/loss of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7973] "Subscales: Observations about the individual with tinnitus; Personal impact; Relationship impact; Providing support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7974] "Factors: Conceal; Prosocial; Non-prosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7975] "Subscales: Engagement; Functionality; Aesthetics; Information quality; Subjective quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7976] "Subscales: Adoption of systematic practice strategies; Organization of practice; Use of recordings and the metronome; Use of analytic strategies; Ineffective practice strategies; Concentration; Immediate or non-correction of errors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7977] "Subscales: Physical; School and play; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7978] "Factors: Apoyo al niño/Support for the child; Apoyo a la escuela/Support for the school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7979] "Factors: Cognitive reappraisal; Expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7980] "Subscales: Perceptions on farmed fish diet; Perceptions on eating insect-fed trout; Intentions surrounding insect aquafeeds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7981] "Factors: Spouse as initiator; Self-initiation; Genital-oriented sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7982] "Domains: Learning Climate; Classroom Management; Clarity of Instruction; Activating Teaching; Differentiation; Teaching Learning Strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7983] "Subscales (Components): CoNuPaS-Experience (Encountering a space to express suicidal thoughts and explore needs; Being recognized as a unique and self-determining individual; Encountering nurses’ availability/information-sharing/transparency on expectations; Trusting nurses in communication about suicidality); CoNuPaS-Importance (Encountering a space to express suicidal thoughts and explore needs; Being recognized as a unique and self-determining individual; Encountering nurses’ availability/information-sharing/transparency on expectations; Trusting nurses in communication about suicidality)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7984] "Subscales: Language; Eating habits; Music."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7985] "Domains: Attitudes towards oneself; Assertiveness; Forgiveness; Spirituality; Relationships; Attitudes toward treatment; Attitudes toward illness; Attitudes toward work. Scales: Non-medical; Medical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7986] "Factors: Overeating; Chewing and Swallowing Problems; Food Selectivity; Problem Behaviors during Mealtime; Food Avoidance and Eating Sameness and Rituals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7987] "Factors: Positive beliefs about anger (PB); Uncontrollable rumination (RUM); Negative beliefs about anger (NB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7988] "Subscales: Attentiveness; Awareness; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7989] "Factors: Behavior; Functioning; Cognition and Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7990] "Factors: Video Visits; Use and Impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7991] "Factors: Displaced aggression due to anger generated outside the vehicle; Displaced aggression due to the anger generated inside the vehicle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7992] "Factors: Cautious driver; Confident driver; Impulsive driver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7993] "Subscales: Shame; Guilt; Pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7994] "Subscales: Cautious Driver; Courteous Driver; Confident Driver; Impulsive Driver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7995] "Subscales: Mental resources; Material resources; Dishonesty; Danger; Contagion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7996] "Subscales: Impression Management; Pleasure; Thrill; Sense of Control; Distress; Damage to Self-Esteem; Annoyance; Life Endangerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7997] "Subscales: Physical; Psychological; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7998] "Factors: Adapting self-regulation; External referencing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7999] "Factors: Technology anxiety/suspicion; Work–life interface; Engagement orientation/motivation; Support orientation/motivation; Quality of life/Living standard."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8000] "Factors: Positive Affect; Negative Affect; Positive Behavior; Negative Behavior; Positive Cognition; Negative Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8001] "Factors: Behavioral approach; Affective approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8002] "Factors: Positive Mood and Mental Health Effects; Global Negative; Pain Relief; Harm Reduction; Sleep; No Effect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8003] "Subscales: Sexual Violent Ideations; General Violent Ideations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8004] "Subscales: Competent agency; Ambitious agency; Dominant agency; Diligent agency; Independent agency; Self-assured agency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8005] "Subscales: Job stress; Distributive justice; Procedural justice; Transactional justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8006] "Factors: Sentiments; Attitudes; Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8007] "Subscale: Climate Change Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8008] "Dimensions: Model building; Being effective; Meaningful action; Hope; Context; Concern about climate change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8009] "Subscales: cultural identity and connectedness; bridging capital; linking capital; violence-related behaviors; violence-related beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8010] "Factors: Water environment contact; Natural force of water; Motion control in water."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8011] "Factors: Affective Reactions; Perceived Conflict With Team; Athlete Role; Lack of Political Credibility/Qualifications; Desired Consequences/Punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8012] "Dimensions: Problem-focused communal efforts; Relationship-focused coping; Communal management of emotions; Communal-goal withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8013] "Subscales: Pruritus & Swelling; Impact on life activities; Sleep problems; Limits; Looks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8014] "Subscales: Brainstorming; Dynamic adjustment; Virtual practice; Practice; Presentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8015] "Factors: Acceptance of diversity and classroom community; Intimacy; Bonding and sacrifice; Familiarity with students; Forgiveness; Kindness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8016] "Subtests: Emotion regulation; Relationship management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8017] "Factors: Individual self-stereotyping (ISS); In-group homogeneity (IGH); Satisfaction (SA); Solidarity (SO); Centrality (CE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8018] "Dimensions: Perceived ease of use; Perceived usefulness; Compatibility; Availability; Sunk costs; Transition costs; Inertia; Technology anxiety; Attitude; Adoption behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8019] "Subscales: Intrapsychic; Social; Consideration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8020] "Factors: General colonoscopy joking (CJ); General joking about health (GH); Joking about sexual connotation (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8021] "Component/Factors (Subscales): Face-Name (initial learning for names; immediate cued recall for names; delayed cued recall for names); Face-Occupation (initial learning for occupations; immediate cued recall for occupations; delayed cued recall for occupations)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8022] "Factors: Personalization; Authenticity; Collaboration; Location; Perceived improvement in learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8023] "Subscales: Supervisor trust; Management trust; Job involvement; Job satisfaction; Organizational commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8024] "Factors: Self-Care: Empowerment; Self-care: Health lifestyle; Choose; Know; Care; Share; Manage; Skills; Connect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8025] "Subscales: Strategic; Tactical; Operational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8026] "Factors: General reward deficiency tendency; Lack of sexual satisfaction; Activity; Social concerns; Risk-seeking behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8027] "Subscales: Accepting response; Avoidant response; Relief; Distress; Pro-acceptance insights; Pro-avoidance insights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8028] "Factors: Contextualisation of SSIs; Learning objectives; Attitudes towards SSIs-learning; Student involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8029] "Factors: Consequences; Coping Efficacy; Social Factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8030] "Subscales: Conceptual skills; Social skills; Practical skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8031] "Sections: Behavior/desire assessment; Problem count; Role-in-sex assessment. Subscales: Sexual Satisfaction; Sexual Confidence; Sexual Frequency; Urinary Incontinence in Sex; Problematic Receptive Anal Sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8032] "Factors: Compensation; Masking; Assimilation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8033] "Factors: Health/ideological food choice motives; Sensory experiences and individual preferences; Social experiences; Mindful eating; Emotional/situational eating and reward; Food preparation process; New experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8034] "Subscales: Competence; Problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8035] "Factors: Intrusion; Avoidance; Hyper-arousal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8036] "Factors: Behavioral disengagement; Problem solving; Social support search; Rumination; Distraction; Reappraisal; Acceptance; Expressive suppression; Venting; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8037] "Dimensions: Interaction with the platform (Site organization; Platform responsiveness and agility; Legal protection and trustworthiness); Perceived quality of the peer service supplier (Peer service provider); Encounters with other consumers and with the person who provides the service (Social interaction)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8038] "Subscales: Personal Resilience; Relational Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8039] "Subscales: Personal Resilience; Caregiver Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8040] "Subscales: Positive Beliefs; Personal Dislike; Interpersonal Concern; Emotional Suppression; Emotional Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8041] "Subscales: Traditional Religious Belief; Psi; Witchcraft; Superstitions; Spiritualism; Extraordinary Life Forms; Precognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8042] "Subscales: Fertility and the child as an important value; Child as a barrier; Personal awareness and responsibility concerning having a child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8043] "Factors: Importance of fertility for the future; Childbearing as a hindrance at present; Social identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8044] "Factors: Euphoria (E); Enthrallment (ET); Vastness (V)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8045] "Subscales: Environmental factors; Activity and participation components; Personal factors; Body structure/function components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8046] "Factors: 1-White superiority; 2-White inferiority; 3-White rejection; 4-Same-race rejection; 5-White physical objectification; 6-Same-race physical objectification; 7-Degradation; 8-Role assumptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8047] "Domains: Impairment in social interaction; Impairment in communication and language; Obsessive and compulsive behaviors; Etiology, comorbidities and age of onset."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8048] "Subscales: Behavioural activation (BA); Emotional sensitivity (ES); Social motivation (SM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8049] "Factors: Attention; Awareness; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8050] "Factors: Stigma-related mental health knowledge areas (Part A); Classification of various conditions as mental illnesses (Part B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8051] "Factors: Driver impression management (DIM); Driver self-deception (DSD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8052] "Factors: Goal Orientation; Metacognitive Knowledge; Metacognitive Experience; Metacognitive Control; Monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8053] "Subscales: Myths, facts; Faith; Responsibility; Information, Attitudes, Services, and Reporting Information; Preventive attitudes; Confidence, Anxiety, and Reexperiencing Sexual Abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8054] "Subfactors: Uncertainty Concerning Treatment; Workload; Death of a Patient; Conflict with a Physician; Conflict with Peers; Insufficient Support; Suffering Patient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8055] "Factors: Emotional attention; Emotional contagion; Empathic suffering; Feeling for others; Positive sharing; Responsive crying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8056] "Subscales: Cognitive Reserve Unit Scale (CRUS; Galvin et al., 2020); Social Engagement Scale (Innis, Tolea, & Galvin, 2021); Quick Physical Activity Rating (QPAR; Galvin et al., 2020); Cognitive & Leisure Activity Scale (CLAS; Galvin, Tolea, & Chrisphonte, 2021); Mediterranean-DASH Intervention for Neurodegenerative Delay (MIND; Innis, Tolea, & Galvin, 2021) Diet Score Sheet; Applied Mindfulness Process Scale (AMPS; Li, Black, & Garland, 2016)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8057] "Factors: Self-positive; Self-negative; Other positive; Other negative; Positive situation; Negative situation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8058] "Subscales: Intimacy; Passion; Decision/commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8059] "Dimensions: Emotional Awareness; Sensation; Clarity; Knowledge; Acceptance; Tolerance; Self-Help; Willingness to Confront; Modification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8060] "Subscales: Structuring; Reframing; Restructuring/Realization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8061] "Subscales: Agency, Pathways evaluation; Alternative planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8062] "Subscales: Thin-ideal internalization; Athletic-ideal internalization; Family pressure; Media pressure; Peer pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8063] "Factors: Digital Footprint; Mobile App Uses; Brand Experience; Brand Attachment; Satisfaction; Loyalty; Brand Vocal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8064] "Factors: Social influence; Hedonic motivation; Anthropomorphism; Performance Expectancy; Effort Expectancy; Emotion; Willingness to Accept the Use of AI Devices; Objection to the Use of AI Devices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8065] "Factors: Perceived enjoyment; Perceived usefulness; Facilitating conditions; Subjective norms; Distorted reputation; Perceived social media distress; Social media anxiety; Perceived complexity; Rapid change; Continuance intention; Perceived communication quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8066] "Factors: System Quality (TQ); Service Quality (SQ); Information Quality (IQ); Satisfaction (SAT); Intention to Use (IU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8067] "Constructs: Enjoyment (ENJ); Ease of use (EoU); Usefulness (USE); Continued use (CUI); Discontinued use (DUI); Contribution (CI); User conception (UC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8068] "Subscales: Prestige strivings; Dominance strivings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8069] "Factors: Posttraumatic Stress Disorder (PSTD); Complex Posttraumatic Stress Disorder (CPTSD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8070] "Subscales: Body Awareness; Autonomic Nervous System Reactivity (ANSR): Supradiaphragmatic Reactivity; Subdiaphragmatic Reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8071] "Subscales: Body awareness; Autonomic reactivity. Factors: Supradiaphragmatic; Subdiaphragmatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8072] "Patient Factors: Confidentiality; Counseling and consent; Openness to HIV knowledge; Stigma around HIV testing; ED-based HIV testing; Social support; Stigma around HIV infection; Benefits of HIV testing; Comfort with providing HIV testing. Provider Factors: Benefits of HIV testing; Comfort with providing HIV testing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8073] "Domains: Bodily; Interpersonal; Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8074] "Factors: Body Image; Body Touch; Body Protection; Body Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8075] "Factors: Difficulty in Identifying Feeling (DIF); Difficulty in Describing Feeling (DDF); Externally Oriented Thinking (EOT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8076] "Scales: Exercise; Diet. Factors: Intrinsic; Identified; Introjected; External; Amotivation (Motivation); Autonomy; Competence; Relatedness (Need)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8077] "Factors: Personal growth; Health promotion; Family growth; Self-sublimation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8078] "Factors: Social responsibility; Financial; Sexual; Emotional; Interpersonal; Family life; Family role readiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8079] "Subscales: RAD scale - Low selective attachment; Low social-emotional responsiveness; Emotional unpredictability; DSED scale - Interactions with unfamiliar adults; Social disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8080] "Subscales: Resistance to EBP; Preference for experience over research."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8081] "Factors: Self-blame (SB); Fear of sanctions (FS); Relational value (RV); Personal expedience (PE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8082] "Factors: Autonomy; Responsiveness; Empathy; Movement; Emotion regulation (Child’s domain); Sensitivity to child; Responsiveness to child; Respect for child’s autonomy; Social-emotional growth fostering; Cognitive growth fostering (Caregiver’s domain)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8083] "Subscales: Wish to die; Wish to live."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8084] "Subscales: Meta-awareness (MA); Decentered awareness (DA); External awareness (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8085] "Factors: Distancing specific (Sp-D); Intertranscendence specific (Sp-IT); Observing self specific (Sp-OS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8086] "Subscales: Math Evaluation Anxiety (MEA); Learning Math Anxiety (LMA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8087] "Subscales: Guilt-Negative behavior evaluation; Shame-Negative self-evaluation; Shame-Withdrawal; Guilt-Repair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8088] "Factors: Metacognitive cultural intelligence; Cognitive cultural intelligence; Motivational cultural intelligence; Behavioral cultural intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8089] "Dimensions: Impulsiveness; Risk seeking; Self-centeredness; Simple tasks; Physical activity; Temper."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8090] "Factors: Linguistic competence; Pedagogical competence; Valuing diversity/motivation; Linguistically responsive teaching behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8091] "Subscales: IBT Attitudes (IBT-A); IBT Identity (IBT-I); IBT Resilience (IBT-R); IBT Behavioral Enaction (IBT-BE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8092] "Subscales: Personal Strength (IBT-PS); Support (IBT-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8093] "Factors: Team radical creativity; Team incremental creativity; Team exploratory learning; Team exploitative learning; Centralization; Formalization; Team regulatory focus; Team promotion focus; Team prevention focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8094] "Subscales: Physical; Emotional; Communication and problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8095] "Subscales: Implementation support; School context; Implementation barriers; External context; Collegial norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8096] "Factors: Mistrust of motivations; Threatening language/actions; Contradictory communications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8097] "Dimensions: Colleague’s satisfaction (CS); Parent’s satisfaction (PS); Satisfaction with student’s behavior (SSB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8098] "Subscales: Information giving; Physical patient care; Psychosocial care; Availability of care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8099] "Factors: Confidence; Interest; Control; Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8100] "Subscales: Health habit; Community participation; Health responsibility; Health diet; Regular exercises; Oral health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8101] "Factors: Activities; Self-perception; Interactions with others; Vision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8102] "Subscales: Psychomotor speed; Attention; Episodic memory; Working memory; Executive functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8103] "Factors: Daily dysfunction; Sleep quality; Sleep disturbance. Components: Sleep quality; Sleep latency; Sleep duration; Habitual sleep efficiency; Sleep disturbances; Use of sleeping; Daytime dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8104] "Factors: Safety atmosphere; Safety knowledge; Influence degree of key figures; Unsafe behavior propagation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8105] "Subscales: Requiring focus; Predictable; Marked/graded; Rewarded; Socially evaluated; Cognitively challenging; Competitive; Collaborative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8106] "Factors: Decision-making; Collaboration; Nursing intervention; Principles of nursing care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8107] "Subscales: Behavioral engagement; Emotional engagement; Cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8108] "Subscales: Attitude; Subjective norms; Perceived behavioral control; Environmental concern; Perceived corporate social responsibility obligation; Sunk cost; Regret avoidance; Inertia; Perceived value; Switching cost; Perceived threat; Intention to adopt; Resistance to adopt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8109] "Factors: Perceived font diagnosticity (PFD); Perceived language comprehension (PLC); Dialectical thinking (DT); Attitude ambivalence (AMB); Psychological discomfort (PSD); Reviews evaluation (RE); Purchase intentions (PI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8110] "Subscales: Speech and voice; Language; Swallowing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8111] "Factors: Perceived Crowding; Positive Affect; Negative Affect; Travel Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8112] "Factors: Extra-role corporate social responsibility; In-role corporate social responsibility; Autonomy; Competence; Relatedness; Subjective well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8113] "Factors: Openness; Conscientiousness; Extraversion; Agreeableness; Neuroticism; Job flow experience; Organizational commitment; Consumer-oriented behavior; Anxiety attachment; Avoidance attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8114] "Subscales: Enhancing Positive Affect; Perspective Taking; Soothing; Social Modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8115] "Subscales: Burden; Food selection; Eating duration; Eating desire; Fear of eating; Sleep; Fatigue; Communication; Mental Health; Social functioning; Symptom frequency battery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8116] "Factors: Manageability; Balance; Reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8117] "Factors: Five-Factor Model: Extraversion; Agreeableness; Conscientiousness; Neuroticism; Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8118] "Subscales: Critical Existential Thinking (CET); Personal Meaning Production (PMP); Conscious State Expansion (CSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8119] "Subscales: Receiving care-competencies; Receiving care-failures; Self-care-competencies; Self-care-failures; Extending care-competencies; Extending care-failures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8120] "Factors: Taking Responsibility; Moral Leadership; Identification with Supervisors; Moral Courage; Unethical Pro-organizational Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8121] "Subscales: Grandiose-Manipulative; Callous-Unemotional; Impulsive-Irresponsible."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8122] "Dimensions: Sensory; Affective; Evaluative; Temporal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8123] "Subscales: Vigor; Dedication; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8124] "Subscales: Negative appreciation of body size; Lack of familiarity with one’s own body; General body dissatisfaction; Rest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8125] "Factors: Controlling Edutainment; Storytelling Transportation; Social Engagement; Multitasking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8126] "Factors: Self-confidence (SC); Persistent effort (PE); Adaptability (AD); Self-talk (ST); Social support (SS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8127] "Factors: Feeling Harried (FH); Cognitive Awareness of Time Shortage (CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8128] "Factors: Immature; Unrefined; Exploitable; Emotionless."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8129] "Factors: Verbal Aggressive Expression; Personal Physical Aggressive Expression; Use of the Vehicle to Express Anger; Adaptive/Constructive Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8130] "Factors: CEO influence; Brand trust; Consumer’s product perception Symbolic; Environmental."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8131] "Factors: Customer-oriented; Employee-oriented; Environ.- oriented; Philanthropy- oriented. Constructs: Liking of the ads; Message credibility; Cause-Company Fit; Evaluation of perceived corporate social responsibility; Job satisfaction; Organizational pride; Word-of-Mouth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8132] "Subscales: Aversive heterosexism; Institutional heterosexism; Heterosexual privilege."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8133] "Factors: Health benefits; Mastery; Competition; Affiliation; Enjoyment; Stress management; Others' expectations; Policy intervention; Appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8134] "Constructs: Communication; Information storing; Information distribution; Knowledge sharing; Collaborative learning; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8135] "Subscales: Cautious attitudes in shopping; Acceptance of self-sufficiency; A desire for a voluntarily simple life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8136] "Factors: Specific-Necessity; Specific-Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8137] "Subscales: Simplicity/Certainty; Integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8138] "Subscales: Cognitive control; Emotion expressivity; Empathy and prosocial behaviors; Emotion regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8139] "Constructs: Reasons for CM Non-Disclosure (Practical and behavioral barriers; Beliefs about need to disclose; Concerns about medical encounter); Reasons for CM Disclosure (Facilitators; Health needs; Expectations of the medical encounter)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8140] "Factors: Emotional belonging; Performance of professional roles and responsibilities; Professional development and utilization of opportunities; Limits of duty and authority in the profession."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8141] "Subscales: Activities; Interference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8142] "Factors: Healthcare communication distress (HCD); Healthcare environmental arousal (EA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8143] "Factors: General Quality of Health Care; Stereotype Content Model-related Concepts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8144] "Factors: Positive Feelings (SPANE–P); Negative Feelings (SPANE–N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8145] "Factors: Obsessive thoughts; Washing and checking; Checking; Collecting things (Hoarding); Paying attention to details."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8146] "Constructs: Economic values; Relational values; Information/knowledge values; Customer satisfaction; Customer loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8147] "Factors: Autonomous regulation; Introjection regulation; External regulation; Amotivation regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8148] "Factors: Conscious of Stress; Self-Care; Aerobic Exercise; Food Choices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8149] "Subscales: Anxiety; Need for information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8150] "Factors: Accessibility (AC); House rules (HR); Signs of ownership (SO); Intrusion (IT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8151] "Factors: Gaming Service; Restaurant Service; Hotel Service; Cleanliness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8152] "Constructs: Achievement affordance; Identity affordance; Competition affordance; Self-expression affordance; Functional value; Social value; Emotional value; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8153] "Factors: General worry; Nonsocial worries; Social worries. Domains: Academic; Health; Finances; Relationships; What others think; Family."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8154] "Factors: Perceived benefit; Use of personal information; Protection of privacy; Perceived risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8155] "Subscales: Satisfaction towards the activities; Value of the activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8156] "Subscales: Realizing opportunities for participation in conversation; Feelings about my speech; Actions and attitudes of others; Experience of participation in conversations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8157] "Factors: Somatic, emotion, and intellectual; Dysfunctional thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8158] "Constructs: Emotional Intelligence (EI); Hedonic Value (HV); Utilitarian Value (UV); e-Shopping Satisfaction (SS); Continual Intention to Usage (CIU); E-Loyalty (EL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8159] "Factors: Exploration; Commitment; Compatibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8160] "Subscales: Pregnancy and Sexuality; Concerns about the Baby; Sexuality/Attraction; Concerns about Pregnancy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8161] "Subscales: Self-reliance; Peer victimization; Emotion dysregulation; Positive relationships; Negative relationships; Neighborhood danger; Stressful events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8162] "Factors: Positive Affect; Creativity; Tolerance for Uncertainty; Self-Efficacy; Situational Awareness; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8163] "Dimensions: Financial Exploitation; Verbal or Physical Assault; Sexual Abuse; Inappropriate Request."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8164] "Subscales: Benevolence; Fear and Exclusion; Support and Tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8165] "Subscales: Loneliness and academic failure; Peer pressure and drugs accessibility; Family and relationship problems; Curiosity and pleasure seeking; Multiple psychophysical and occupational factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8166] "Factors: Positive distraction; Neutral distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8167] "Subscales [Factors]: TSAS Fear [Social; Public; Organizational; Religious]; TSAS Avoidance [Social; Public; Organizational; Religious]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8168] "Subscales: Healthy Selfishness; Pathological Altruism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8169] "Subscales: Rumination/negative thinking; Positive reorientation; Communication; Distraction; Cultural activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8170] "Factors: Sensing; Processing; Responding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8171] "Factors: Attachment anxiety; Attachment avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8172] "Subscales: Emotional issues; Social issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8173] "Subscales: Social; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8174] "Subscales: Operational performance; Perceived effort value; Perceived time value; Perceived trust; Perceived security; Perceived anxiety; Perceived privacy; perceived price value; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8175] "Subscales: Confirmation; Discontinuance intention; Habit; Perceived usefulness; Frequency of prior use; Regret; Satisfaction; Enjoyment value; Social value; Perceived ease of use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8176] "Subscales: Family cognitive support; Family emotional support; Mobile internet skill literacy improvement; Mobile internet information literacy improvement; Quality improvement of obtained information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8177] "Subscales: App hedonism; Surfing task orientation; Hot brand relationship quality; App imagination; App category involvement; Branded app loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8178] "Subscales: ERP system usage; Users' psychological empowerment; Competency; Flexibility; Quickness; Responsiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8179] "Subscales: Satiation: service; Satiation: decoration; Satiation: amenity; Optimal stimulation level; Economic value; Social benefit; Hedonic value; Epistemic value; Switching intention; Switching cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8180] "Factors: Accuracy; Improve; Coach Encouragement; Conflict Avoidance; System Gaming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8181] "Subscales: Mystical qualities; Positive mood; Transcendence; Ineffability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8182] "Factors: Overt Conflict; Self-Controlled Covert Conflict; Externally-Controlled Covert Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8183] "Factors: Beyond; Self; Meaning; Others; Journey; Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8184] "Subscales: Ear Symptoms and Signs; Hearing; Psychosocial Impact; Medical Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8185] "Subscales: Rumination about sensation; Premonitory awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8186] "Factors: Physical and social function; Environment; Financial-independence; Pain and emotional-wellbeing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8187] "Subscales: Autonomy; Environmental mastery; Personal growth; Positive relations with others; Purpose in life; Self-acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8188] "Subscales: Care relationship; Autonomy; Positive affect; Negative effect; Restless tense behavior; Positive self-image; Social relations; Social isolation; Feeling at home; Meaningful activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8189] "Paternalistic Leadership (PLS); Trust in the Principal (TiPS); Teacher Job Satisfaction (TJSS); Teacher Commitment to Students (TCSS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8190] "Factors: Phonological-decoding; Sublexical-fluency; Vocabulary-memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8191] "Subscales: Identity; Experience; Philosophy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8192] "Factors: Engagement Coping; Disengagement Coping; Spiritual Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8193] "Subscales: Low perceived need; Stigma; Apprehension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8194] "Factors: Assessment; Treatment; Affect tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8195] "Factors: Selection and allocation; Training and development; Performance appraisal and remuneration; Participation in management; Organizational communication; Perceived organizational support; Self-efficacy (Human resource management practice); Problem prevention; Individual innovation; Voice; Taking charge (Proactive behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8196] "Constructs: Home-sharing services adopting intention; Personal environmental-protection awareness; Involvement with the advertising; Previous use of home-sharing services; Other collaborative consumption services adoption experiences; Personal beliefs of collaborative consumptions on environmental protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8197] "Subscales: Mechanisms; Objects; Modes of expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8198] "Subscales: Attitudes; Behavior; Coworker influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8199] "Subscales: Care; Fairness; Loyalty; Authority; Purity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8200] "Factors: Negative Sleep-Related Cannabis Expectancies; Positive Sleep-Related Cannabis Expectancies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8201] "Factors: Preoccupation; Tolerance; Impaired interpersonal domain; Impairment in occupational or academic domain; Loss of control; Loss of interests in other areas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8202] "Factors: Reexperiencing (R); Avoidance (AV); Negative affect (NA); Anhedonia (AN); Externalizing behaviors (EB); Anxious arousal (AA); Dysphoric arousal (DA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8203] "Subscales: Harnessing Therapeutic Support; Engaging Therapeutic Dialogue; Inspiring Therapeutic Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8204] "Factors: Personal health and hygiene; Performing life tasks independently; Sport; Nutrition; Mental Health, sleep and rest; Observing safety and health advice; Social and family relations; Spiritual and religious activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8205] "Subscales: General; Legal; Social and Psychological; Financial; Technological."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8206] "Subscales: Pro-brand motivation; Brand values fit; Organization-based self-esteem; Relationship orientation; Brand alignment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8207] "Subscales: Social; Entertainment; Information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8208] "Factors: Vicarious experience (VEX); Self-development (SED); Instant and real-time gratification (GRA); Social engagement (ENG); Credibility (CRE); Intimacy (ITM); Morality (MOR); Creativity and uniqueness (UNQ); Visual designs (VIS); Running time (RUN); Content variety (VAR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8209] "Constructs: Enjoyment motivation; Self-presentation motivation; Community-belonging motivation; Cognitive engagement; Affective engagement; Behavioral engagement; Continuance intention; Flow."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8210] "Factors: Self; Others; Situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8211] "Subscales: Extraneous load; Intrinsic load; Germane load."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8212] "Subscales: Episodic; Semantic; Spatial; Prospective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8213] "Subscales: Immediacy; Outcome; Responsibility: Acceptance; Trustworthiness; Concreteness; Expertise; Directiveness; Empathy. Factors: Personal Commitment; Facilitative Conditions; Counselor Expertise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8214] "Factors: Creations; Brand associations; Brand awareness; Consumption; Contribution; Perceived quality; Brand loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8215] "Subscales: Commitment to Family; Protecting Namoos; Love of Country; Supporting Family/Mate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8216] "Subscales: Peak; Flow; Transcendence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8217] "Subscales: Overall hand function; Activities of daily living; Work performance; Pain; Aesthetics; Satisfaction with hand function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8218] "Factors: Gender Stereotypes About Math Abilities; Expectations of Math Success; Math Enjoyment; Importance Attached to Math; STEM Career Choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8219] "Subscales: Feelings: Imagery: Animation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8220] "Factors: General musical experience [Playing an instrument; Singing; Self-reported musical ability; Music listening]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8221] "Subscales: Class and Learning settings: Enjoyment; Hope; Pride; Anger; Anxiety; Shame; Hopelessness; Boredom. Test settings: Enjoyment; Hope; Pride; Relief; Anger; Anxiety; Shame; Hopelessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8222] "Domains: Clinical advice; General advice; Patient satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8223] "Factors: Perseveration (C-19ASS-P); Avoidance (C-19ASS-A)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8224] "Scales: Positive Affect; Negative Affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8225] "Areas: Accommodation experience activity opportunities; Social support; Possibilities for personal development; Organization and information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8226] "Subscales: Enhanced Interpretation and Emotionality; Sharpening of Senses; Heightened Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8227] "Factors: Facilitating conditions; General information and communication technology anxiety; General information and communication technology self-efficacy; General interest; Perceived ease of use; Perceived usefulness; Growth mindset; Effort regulation; Help seeking; Continuance intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8228] "Subscales: Grief; Personal growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8229] "Constructs: E-learning motivation (ELM); Online communication Self-efficacy (OCSE); Perceived enjoyment (PE); Perceived usefulness (PU); Perceived ease of use (PEOU); E-learning readiness and acceptance (ELRA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8230] "Subaspects: Attention; Self-kindness; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8231] "Subscales: Frequency; Suppression ability; Subjective discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8232] "Factors: Collaboration; Communication; Creativity; Self-direction; Critical thinking; Technology for learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8233] "Factors: Personalized stigma; Disclosure concerns; Concerns about public attitudes; Negative self-image."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8234] "Dimensions: Episodic (event); Semantic; Spatial; Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8235] "Factors: Anger rumination; Revenge planning; Displaced aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8236] "Scales (Subscales): Importance (Importance of AT in Development (IATD); Importance of AT in Teaching (IATT)); Professionalism (Skills Scale (SS); Practices Scale (PS)); Availability of AT Scale (AAT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8237] "Subscales: Family as a Resource in Nursing Care (Fam-RNC); Family as a Conversational Partner (Fam-CP); Family as a Burden (Fam-B); Family as Own Resource (Fam-OR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8238] "Factors: Fear of COVID-19 (FC); Perceived risk (PR); Participation (PA); Service experience (SE); Recommendation intention (RI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8239] "Factors: Rigid perfectionism (Self-oriented perfectionism; Self-worth contingencies); Self-critical perfectionism (Concern over mistakes; Doubts about actions; Self-criticism; Socially prescribed perfectionism); Narcissistic perfectionism (Other-oriented perfectionism; Hypercriticism; Entitlement; Grandiosity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8240] "Factors: General Lust Factor; Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8241] "Subscales: Fluency; Originality; Flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8242] "Subscales: Nonwork disruption; Cognitive flexibility; International travel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8243] "Subscales: Challenge Appraisal; Hindrance Appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8244] "Subscales: Acquisition; Retention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8245] "Subscales: Cheating; Assistance; Cutting corners; Not my problem; Sabotage; Test file; Perjury; Non-compliance; Stealing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8246] "Factors: Environmental Awareness; Task-related Pro-environmental performance; Proactive Pro-environmental performance; Green human resource management; Servant leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8247] "Factors: Social Media Analytics Capability; Sensing Agility; Responding Agility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8248] "Subscales: Fragmentation; Positive beliefs about amnesia; Lack of self-reference; Fear of losing control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8249] "Factors: Positive attitudes toward buying sex; Norms toward buying sex; Perceived control toward buying sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8250] "Factors: Help-Seeking; Positive Outlook; Spiritual Support; Continuing Bonds; Compassionate Outreach; Social Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8251] "Subscales: Psychological Response (MIDc-PR) and Situational Impact (MIDc-SI). Factors: MIDc-PR--Modulation; Anticipation; MIDc-SI--Social impact; Economic impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8252] "Factors: Recognition; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8253] "Subscales: Exploration stage; Installation stage; Initial implementation stage; Full implementation stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8254] "Subscales: Internal priority; External priority; Team use of data; Capacity building."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8255] "Factors: Empowerment culture; Psychological empowerment. Sub-dimensions: Competence; Impact; Meaning; Self-determination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8256] "Factors: Intellectual Submission to the Divine; Human Finite Limitations; Belief Bias and Limitations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8257] "Factors: Generalized legitimacy; Sociopolitical legitimacy; Pragmatic legitimacy; Level of knowledge; Challenging knowledge; Endorsing knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8258] "Factors: Intrafamilial support; Roles; Connection; Rituals; Communication; Boundaries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8259] "Constructs: Executive apathy; Initiation apathy; Emotional apathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8260] "Subscales: Reappraisal; Cognitive distraction; Aggressive suppression; Worry; Behavioral distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8261] "Factors: Unclean; Animal; Disease."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8262] "Subscales: Challenge; Control; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8263] "Factors: Immerse daydreaming (9 items); Distress and impairment (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8264] "Factors: Perceptual decoupling; Mental improvisation; Mental navigation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8265] "Subscales: Mental competence; Emotional competence; Collective efficacy; Vertical trust; Horizontal trust; Positive emotions; Work engagement-vigor; Work engagement-dedication; Work engagement-absorption; Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8266] "Subscales: Physical functioning (PF); Role limitation (RL); Social functioning (SF); Pain (PN); Mental health (MH); Vitality (VT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8267] "Subscales: Cognition; Motivation; Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8268] "Traits (Facets): Agreeableness (Appreciation; Integrity; Low Competitiveness; Good Faith; Genuineness; Altruism); Conscientiousness (Dominance; Persistence; Self-Discipline; Task Planning; Goal Orientation; Carefulness; Orderliness; Wish to Work to Capacity; Productivity); Extraversion (Sociability; Wish for Affiliation; Positive Attitude; Forcefulness; Communicativeness; Humor; Conviviality; Energy); Emotional Stability(also known as Neuroticism) (Equanimity; Mental Balance; Carefreeness; Confidence; Drive; Emotional Robustness; Self-Attention); Openness (Creativity; Wish for Variety; Open-Mindedness; Interest in Reading; Artistic Interests; Wish to Analyze; Willingness to Learn; Intellect)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8269] "Factors: Intrinsic motivation; Identified regulation; External regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8270] "Subscales: Affective; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8271] "Subscales: Peer Relationships; Academic Success and Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8272] "Factors: Religious identification; National identification; Diversity threat; Support for religious minority rights; Support for Muslim religious rights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8273] "Factors: Social Stress; Parental Stress; Internalized Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8274] "Factors: Fixed mindset; Growth mindset (Mindsets); Deal proneness; Social comparison; Hedonic motives (Shopping motivations); Compulsive buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8275] "Subscales: Entitlement; Access."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8276] "Subscales: Stereotypes about men/women; Treatment based on gender; Complaining; Unwanted sexual attention; Verbal sexist behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8277] "Subscales: Trust; Communication; Collaboration; Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8278] "Factors: Paying for sex as a legitimate behavior (Paying for sex as an acceptable social/cultural behavior; Paying for sex as the right of unfortunate men); Paying for sex as a deviant behavior (Paying for sex as an immoral and exploitative behavior; Paying for sex as a sexual pathology)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8279] "Factors: Appearance; Behavior; Cognition; Emotion; Morality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8280] "Subscales: Education; Health; Housing; Information; Active in education or employment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8281] "Subscales: Expressiveness and Motivation for Social and Family Relationships; Motivation for Vocational Activities; Motivation for Recreation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8282] "Constructs: Intention to use; Perceived ease of use; Perceived usefulness; Innovativeness; Self-efficacy; Institutional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8283] "Subscales: Perceived ease of use; Perceived usefulness; Subjective norm; Perceived behavioral control; Policy support; Economic cost; Adoption intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8284] "Constructs: Employees' perceptions of corporate social responsibility; Employee engagement; Perceived organizational support; Employee creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8285] "Factors: Withdrawal Symptoms; Endurance of Work–Life Conflict; Illusion of Control; Compulsive Dependency on Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8286] "Factors: Esteem; Burden; Fulfillment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8287] "Factors: Esteem; Burden; Fulfillment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8288] "Subscales: Major depressive disorder; Depressive severity; Severity of anxiety; Severity of mania and/or hypomania; Suicidality; Severity of substance misuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8289] "Subscales: Cognitive control; Immersion and Time transformation; Loss of self-consciousness; Autotelic experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8290] "Factors: Concern about finances and a desire to stay in Malaysia or any country except Iran (CF); Language difficulties (LD); Interpersonal stress (IS); Stress from new culture and desire to return to Iran (SNC); Academic pressure (AP); and Stress from new rules and regulations (SNR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8291] "Subscales: Emotional disruption (9 indicators); Physical disruption (5 indicators); Work disruption (3 indicators)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8292] "Domains: Environment; Programming; Leaders and staff; Values and goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8293] "Factors: Mastery; Self-presentation; Fake goodness; Self-made duty; Future achievement; Family-oriented; Peer-oriented; Teacher-oriented."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8294] "Subscales: Decreased Food Appeal (DFA); Physical Satisfaction (PS); Planned Amount (PA); Self-Consciousness (SC); Decreased Priority of Eating (DPE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8295] "Factors: Performance Risk (PER), Financial Risk (FIN), Social Risk (SOC), Emotional Risk (PSY), and iPad Self-Image Congruity (iSIC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8296] "Factors: Maternity Role Development and Performance; Maternity Task and Success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8297] "Factors: Asian American Unity; Interracial Solidarity; Transnational Critical Consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8298] "Factors: National identification; Associativism importance; Participation tendencies; Protest importance; Volunteering importance; Voting motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8299] "Domains: General; Function; Symptom; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8300] "Subscales: R/S conversations; R/S program and recovery; R/S similar outlook on life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8301] "Factors: Collaboration; Bond."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8302] "Factors: Validation; Criticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8303] "Factors: Emotional Security and Comfort; School Environment; Social Environment (including Extracurricular Activities); Academic Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8304] "Subscales: Effort to Improve; Push by Teammates; Push Teammates; Communication; Self-Awareness; Coach Recognition; Coach Selection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8305] "Subscales: Curiosity/Value; Self-efficacy; Self-improvement beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8306] "Subscales: Impermanence focus; Present centeredness; Positive temporal refocusing; Negative temporal contrasting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8307] "Subscales: Dispositional optimism (DO); Individual perceived risk (IPR); Other person’s risk (OPR); Past preventive behaviors (PPB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8308] "Subscales: Work-related cognitive abilities; Communication skills; Work-related interpersonal behaviors; Social behaviors; Vocational skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8309] "Subscales: Sedentary time with cognitive activity; Total sedentary time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8310] "Subscales: Kindness; Common Humanity; Mindfulness; Indifference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8311] "Factors: Compassion and Disconnectedness Subscales: Kindness; Common Humanity; Mindfulness; Indifference; Separation; Disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8312] "Subscales: Handling disagreement and conflict; Leadership and autonomy in clinical practice; Internal work motivation; Control over practice; Teamwork; Cultural sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8313] "Factors: Breastfeeding around other people and feelings of embarrassment during breastfeeding; Gathering information about breastfeeding; Skills and demands required for breastfeeding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8314] "Subscales: Actual status; Target status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8315] "Factors: Time tangibility; Involvement with people; Scheduling preference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8316] "Subscales: Dispositions; Online Integration and Management; Data Practices; Personalization; Online Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8317] "Subscales: Questioning and Thinking; Providing Challenges and Choices; Reading and Written Assignments; Curriculum Modifications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8318] "Dimensions: Child (Physical; Psychosocial; Playing; Information received; Interactions; Death and Dying); Parents (Psychosocial; Information received; Planning for the future; Self-efficacy; Help and support received; Burden of administrative procedures and financial issues)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8319] "Factors: Practice Appraisal (PA); Nurse–family relationship (NFR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8320] "Factors were unnamed by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8321] "Subscales: Safety; Stability and familiarity; Visual cues; Sensory stimulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8322] "Subdomains: Speech recognition in favorable situations; Speech recognition in complex situations; Voice perception; Speech production."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8323] "Construct: Health Information Disclosure Intention; Privacy Concern; Perceived Health; Experience of Privacy Invasion; Extroversion; Agreeableness; Emotional Instability; Conscientiousness; Intellect; Emotional Support; Informational Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8324] "Subscales: Content knowledge (CK); Pedagogical knowledge (PK); Technological knowledge (TK); Pedagogical content knowledge (PCK); Technological content knowledge (TCK); Technological pedagogical knowledge (TPK); Technological pedagogical content knowledge (TPACK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8325] "Subscales: Divergent thinking and acting; General knowledge and thinking-base; Area-specific knowledge base; Focusing and task commitment; Motive and motivation; Openness and tolerance of ambiguity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8326] "Domains: Activities of Daily Living (ADL) & Independence; Gait Function & Mobility; Pain/Discomfort/Fatigue; Physical Activities, Sport & Recreation; Gait Appearance; Use of Braces & Assistive Devices; Body Image & Self-Esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8327] "Subscales: Activities of daily living and independence; Gait function and mobility; Pain, discomfort and fatigue; Physical activities, sports and recreation; Gait pattern and appearance; Use of braces and mobility aids; Body image and self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8328] "Factors: Self-directed passive aggression (TPA-SD); Other-directed passive-aggression (TPA-OD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8329] "Subscales: Managing the pain; Enduring the pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8330] "Factors: Engagement; Personnel; Cohort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8331] "Subscales: Foot pain; Foot function; Shoe; General foot health; General health; Physical activity; Social capacity; Vigor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8332] "Factors: Caretaking procedures; Evoking behavior(s); Reading behavior(s); Situational beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8333] "Subscales: Speaking; Comprehension; Reading; Writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8334] "Factors: Integrity; Advancement; Altruism; Harmoniousness; Coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8335] "Factors: Value and esteem; Independence and control; Mental care; Disease care; Belonging and companionship; Security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8336] "Subscales: Difference vs. Similarity; Self-containment vs. Connection to others; Self-direction vs. Receptiveness to influence; Self-reliance vs. Dependence on others; Consistency vs. Variability; Self-expression vs. Harmony; Self-interest vs. Commitment to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8337] "Subscales: Disgust (EAQ-D); Interest (EAQ-I); Feeding animals (EAQ-F)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8338] "Factors [Subscales]: General sustainability [Animal welfare; Ethical concern; Environmental welfare]; Local and seasonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8339] "Factors: Intrinsic goals; Internal extrinsic goals; External extrinsic goals; Demotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8340] "Factors: Amotivation; External Regulation; Introjected Regulation; Identified Regulation; MI to knowledge; MI to achievement; MI at exp stimulants."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8341] "Subscales: Amotivation; External regulation; Introjected regulation; Identified regulation; Intrinsic to knowledge; Intrinsic to Achievement; Intrinsic to feelings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8342] "Domains: Organizational Structure; Emotional Climate; Problem Solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8343] "Categories: Sensory expectations; Brand attitude; Product quality perception; Price perception; Willingness to buy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8344] "Subscales: Noticing; Not-Distracting; Not-Worrying; Attention Regulation; Emotional Awareness; Self-Regulation; Body Listening; Trusting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8345] "Factors: Social needs; Healthy needs; Utilitarian needs; Low-cost needs; Security needs; Hedonic needs; Cognitive needs; Self-actualization needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8346] "Factors: Survival needs; Social contribution needs; Competence needs; Relatedness needs; Autonomy needs; Self determination needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8347] "Factors: Anxiety; Risk factors; Family identification; Identification with Humankind; Stress; Physical symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8348] "Factors: Worry about approval (O²S³-A); Online social interaction (O²S³-O); Social investment (O²S³-S); Social risk taking (O²S³-SR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8349] "Subscales: Expectations of antibiotics; Intentions to request antibiotics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8350] "Subscales: Desirable outcome beliefs; Undesirable outcome beliefs; Normative beliefs; Behavioral control beliefs; PrEP knowledge; HIV/AIDS knowledge; Residence-related barriers; Healthcare-related barriers; Social or informational-related barriers; Non‑adherence behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8351] "Domains: Oral symptoms; Functional limitations; Emotional well-being; Social well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8352] "Subscales: Perceived Unnaturalness; Animal Reminders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8353] "Subscales: Foundational competencies; Functional competencies; Continuing competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8354] "Factors: Estrangement from Spiritual Community; Insecurity with God; Disruption in Religious Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8355] "Factors: Sexual excitation [SES]; Sexual inhibition due to performance failure [SIS1]; Sexual inhibition due to performance consequences [SIS2]. Subscales: Social interaction; Partner characteristics; Visual stimuli; Fantasies; Losing arousal easily; Performance concerns; Risk of being caught; Pain/Norms and values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8356] "Factors: Expressing; Processing; Identifying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8357] "Constructs: Affective In-Store Technology Experience; Behavioral In-Store Technology Experience; Perceived Technical Interactivity; Perceived Social Interactivity; Retail Brand Commitment; Revisit Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8358] "Factors: Food and Beverage Quality; Connectedness; Experience uniqueness; Meaningfulness and memorability; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8359] "Subscales: Systematic management; Equality (Equality of manager and worker; Equality of workers); Appreciating know-how; Promotion of well-being at work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8360] "Subscales: Intrinsic factors; Extrinsic factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8361] "Subscales: Intrinsic challenges; Extrinsic challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8362] "Domains: Belief in self (Self efficacy; Self awareness; Persistence); Belief in others (School support; Family support; Peer support); Emotional competence (Emotional regulation; Empathy; Self control); Engaged living (Optimism; Gratitude; Zest); Covitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8363] "Factors: Meat consumption; Inappropriate food and activities for with hypertension patients; Consumption of dairy and fatty foods; Consumption of sweet foods; Appropriate food and activities for with hypertension patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8364] "Subscales: Disinhibition; Functional; Social Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8365] "Factors: Emotional consequences; Verbal communication strategies; Confirmation strategies; Hearing knowledge; Loss and acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8366] "Subscales: Reciprocity; Communication; Relationships; Stereotyped behavior; Insistence on sameness; Restricted interests; Reactivity to sensory input."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8367] "Factors: Inner Peace; Energy and Agency; Social Connectedness; Varied Leisure Activities; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8368] "Factors: COVID Gravity; Political COVID Outlook."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8369] "Subscales: Cognitive; Basic functionality; Instrumental functionality; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8370] "Factors: Authoritarian punishment/retribution; Personal minor transgressions, Harm minimization; Euphemistic labeling; Dehumanization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8371] "Subscales: Religious interpretation of death, Rational interpretation of death; Personal interpretation of death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8372] "Subscales: Approval of euthanasia; Approval of life-prolonging medical interventions; Approval of nonintervention (Natural death)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8373] "Subscales: Distractions while studying; Distracting devices while studying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8374] "Subscales: Dysphoric mood; Anhedonia/negative affect; Negative self-evaluation; Somatic complaints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8375] "Subscale: Positive attitudes; Negative attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8376] "Subscales: Structuring and Facilitating a Positive Sport Climate; Discussing Life Skills; Practicing Life Skills; Discussing Life Skills Transfer; Practicing Life Skills Transfer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8377] "Subscales: Socially Prescribed Perfectionism (SPP); Self-Oriented Perfectionism (SOP)--Critical; Self-Oriented (SOP)-Striving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8378] "Subscales: Negative Self-Assertion; Positive Assertion; Confronting Others; Positive Expression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8379] "Subscales: Internal locus of control (LOC-I); Healthcare professional locus of control (LOC-P); Chance locus of control (LOC-C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8380] "Subscales: Emotional awareness; Understanding; Clarification; Bodily sensations; Acceptance/Tolerance; Self-support; Modification; Readiness for confrontation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8381] "Subscales: Depressive avoidance (DA); Anxious avoidance (AA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8382] "Subscales: Depressive Avoidance (DA); Anxious Avoidance (AA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8383] "Subscales: Health Care Professionals locus of control; Internal locus of control; Chance locus of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8384] "Subscales: Openness for contact; Reciprocity/joint attention; Communicative signals/functions; Coping with changes; Stereotyped behavior; Exploration and play; Problem-solving strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8385] "Factors: Numerical Processing Anxiety; Situational and Performance Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8386] "Subscales: Refrain from Eating; Food as Reward; Healthy Eating; Nutritional Replenishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8387] "Factors: Primary depressive symptoms cluster; Secondary depressive symptoms cluster; Mixed symptoms cluster."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8388] "Factors: Fear of nighttime features and distressing experiences; Fear of loss or separation from the family; Fear of imaginary stimuli; Fear of real stimuli."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8389] "Factors: Website information (WI); Postpurchase dissonance (PPD); Alternative attractiveness (AA); Perceived risk (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8390] "Subscales: Behavioral intention; Attitudes; Subjective norms; Perceived behavioral control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8391] "Subscales: Verbal Immediacy; Nonverbal immediacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8392] "Constructs: Team Cohesiveness; Formal Managerial Control; Clan Control; Direct Peer Control; Indirect Peer Control; Job Satisfaction; Team Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8393] "Subscales: Fluency, variety, and originality in movement patterns and composition; Variety and originality in locomotor movements and body shapes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8394] "Subscales: Internalization; Symbolization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8395] "Subscales: Romantic partner; Familiar; Stranger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8396] "Subscales: Tangible incentives; Social incentives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8397] "Subscales: Confidence; Complacency; Constraints; Calculation; Collective Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8398] "Factors: Parental Support for Aggressive Solutions; Parental Support for Nonaggressive Solutions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8399] "Factors: Investigation; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8400] "Subscales: Projected/Past computer-focused cyber deviance index; Computer-focused cyber victimization index; Behavioral self-control scale; Cognitive self-control scale; Peer cyber deviance index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8401] "Subscales: Social phobia; Panic disorder; Separation anxiety; Generalized anxiety; Major depression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8402] "Constructs: Attitude (milk/pork); Basic Country Image (BCI); Product-country image (PCI); Category-country image (CCI); Organic category-country image (CCI_organic)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8403] "Subscales: Format; Purpose and Contractedness; Filter and Omit; High Sensation-seeking Audiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8404] "Factors: Interprofessional collaboration; Involvement in decision-making; Expertise; Physician’s dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8405] "Factors: Body Experience; Psychological Well-being; Social Relationships; Gastrointestinal Symptoms; Bodily Functions; Eating Behaviours; Compensatory Behaviours."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8406] "Subscales: Satisfaction with Current Learning; Self-confidence in Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8407] "Factors: Stigma; Process Costs; Information Costs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8408] "Subscales: Perceived susceptibility; Perceived severity; Perceived barrier; Perceived benefit; Cues to action; Self-efficacy; Attitude; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8409] "Subscales: Physical; Mental."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8410] "Subscales: Positive musical Emotions while Learning an Instrument (PELI); Negative Emotions while Learning an Instrument (NELI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8411] "Constructs: Performance Expectancy; Effort Expectancy; Social Influence; Facilitating Conditions; Hedonic Motivation; Price Value; Behavioral Intention; Usage Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8412] "Factors: Learning (L); Job replacement (J); Sociotechnical blindness (S); AI configuration (C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8413] "Factors: Teachers’ attitudes related to school performance of students with disabilities; Teachers’ attitudes related to the social acceptability of students with disabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8414] "Subscales: Emotional well-being (EWB); Psychological well-being (PWB); Social well-being (SWB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8415] "Factors: Violence/Dangerousness; Disability; Irresponsibility/Lack of Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8416] "Subscales: Reliability; Honesty; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8417] "Subscales [Factors]: Cultural Trauma [Ancestral Survivorship; Anticipated Hardship]; Reactions to Homicide; Culture of Homicide [Shame; Blame; Stigma; Lack of Justice]; Racial Appraisal [Trusted Supports; Equitable Access to Health Care]; Coping Strategies [Spiritual Coping and Meaning Making; Maintaining a Connection to the Deceased; Concealment]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8418] "Subscales: Self-Care and Well-Being; Daily Arrangements and Organizational Skills; Employment and Accommodation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8419] "Factors: Self Care and Wellbeing; Daily Arrangements and Organizational Skills; Employment and Accommodation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8420] "Subscales: Accepting Negative Strokes; Accepting Positive Strokes; Asking for Negative Strokes; Asking for Positive Strokes; Giving Negative Strokes; Giving Positive Strokes; Rejecting Negative Strokes; Rejecting Positive Strokes; Negative Self-Strokes; Positive Self-Strokes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8421] "Subscales: Positive Reappraisal; Controlled Expression; Arousal Regulation; Suppression; Rumination; Unhealthy Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8422] "Factors: Origins and Communication; Waste Reduction; Planning & Preparation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8423] "Domains: Positive caregiving (happiness: CarerQol-VAS); Negative caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8424] "Subscales: Positive Affect (dPANAS-C-POS); Negative Affect (dPANAS-C-NEG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8425] "Constructs: Human Flesh Searching (HFS) Intention, Attitude toward social justice, Vigilantism, fairness, Positive attitude toward human flesh searching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8426] "Subscales: Active seeking; Active action; Passive online; Passive offline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8427] "Factors: Divine (Div); Demonic (Dem); Interpersonal (Int); Moral (Mor); Doubt (Dbt); Ultimate meaning (Ult)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8428] "Factors: Self-confidence; Self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8429] "Factors: Problem-focused/emotional coping; Religious coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8430] "Factors: Difficulty in getting up; Difficulty in falling asleep; Sleep recovery; Daytime dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8431] "Subscales: Technology-based consumption reduction; Reduction of exhibition supplies; Recycling and reducing emissions; Green food and beverage; Strengthen the concept of sustainability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8432] "Subscales: Symptoms; Child’s social participation; Normalcy; Social support; Coping with the disease; Caregiver’s competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8433] "Subscales: Physiological; Psychological; Social. Factors: Appearance; Sensorimotor; Function; Cognitive function; Emotions; Personality; Motivation and need; Personal ability; Social participation; Organizational communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8434] "Subscales: Integrity; Interpersonal skills; Respect for students; Professional development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8435] "Factors: Social Criticism; Fun and Entertainment; Relaxation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8436] "Factors: Increasing structural job resources; Decreasing hindering job demands; Increasing social job resources; Increasing challenging job demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8437] "Subscales: Safety; Trustworthiness; Choice; Collaboration; Empowerment. Factors: Emotional safety; Physical safety; Support; Desire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8438] "Subscales: Relationship of the person with the voice(s) (Dp-v); Relationship of the voice(s) with the person (Dv-p); Emotional reactivity (Dem); Relationship between the voices (Dv-v)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8439] "Subscales: Perceived customization experience; Autonomy; Competence; Pride of Authorship; Happiness; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8440] "Domains: Articulation; Fluency; Syntax and grammar; Word retrieval and expression; Repetition; Auditory comprehension; Single word comprehension; Reading; Writing; Functional communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8441] "Subscales: Guidance & Structures; Relationship & Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8442] "Subscales: Educational and punitive interaction; Affective interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8443] "Factors: High arousal positive; High arousal negative (alcohol driven); High arousal negative (cannabis driven); Low arousal positive; Low arousal negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8444] "Subscales: Health information (HI); Emotional support (ES); Instrumental support (IS); Professional support (PS); Community support network (CSN); Involvement with care (IC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8445] "Subscales: Self-efficacy; Attitude; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8446] "Subscales: Danger (D); Socio-economic consequences (SE); Xenophobia (X); Contamination (C); Traumatic stress (T); Compulsive checking (CH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8447] "Factors: Moral justification; Euphemistic language; Advantageous comparison; Displacement of responsibility; Diffusion of responsibility; Distorting consequences; Attribution of blame; Dehumanization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8448] "Factors: Perceived risks (PR); Perceived usefulness (PU); Regulative factors (RF); Normative factors (NF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8449] "Subscales: Threat cognitions (Depression; Social anxiety; Panic; Social reference; Harming others; Persecution; Voices); Anxious avoidance (Shopping/Being around others; Social places/Meeting others); Within-situation safety behaviors (Self-protection; Hypervigilance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8450] "Subscales: Tendency to taste modernist cuisine; Tendency to taste fusion cuisine; Tendency to taste local cuisine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8451] "Factors: Motivation (Prosocial; Emotional; Intellectual); Process (Sense of audience)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8452] "Subscales: Aesthetic Design; Positive Emotional Arousal; Self-Expression; Intention to Post Photographs; Centrality of Visual Servicescape Aesthetics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8453] "Factors: Enduring relationship; Liking and admiration; Romantic modeling; Emotional connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8454] "Subscales: Scene realism; Audience behavior; Audience appearance; Sound realism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8455] "Subscales: Purpose; Equanimity; Self-reliance; Perseverance; Existential aloneness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8456] "Factors: Positive attitude; Negative attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8457] "Subscales: Management Commitment and Communication; Safety Training and Equipment; Maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8458] "Subscales: Personal burnout; Study-related burnout; Colleague-related burnout; Teacher-related burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8459] "Factors: Outdoor activity participation; Social well-being; Home life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8460] "Subscales: Epilepsy impact; Memory; Physical functioning; Stigma; School behavior; Health perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8461] "Subscales: Goals and choice; Individually tailored and varied; Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8462] "Factors: Adherence to medical health services; Individual protective health behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8463] "Subscales: Scale A - For those who are not working [Pre-contemplation; Contemplation; Prepared for Action – Self-evaluative; Prepared for Action – Behavioral]; Scale B - For those at work [Uncertain Maintenance; Proactive Maintenance]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8464] "Subscales: Self-Emotions; Other's Emotions; Use Emotions; Self-Emotions Regulation; Other's Emotions Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8465] "Subscales: Scene Realism; Audience Behavior; Audience Appearance; Sound Realism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8466] "Factors: Healthy behaviors; \"Bad\" behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8467] "Subscales: Validating partner identity; Conversational (in)attentiveness; Creating space to talk; (Dis)Agreement/(mis)understanding; Affective tone; Global attentiveness of other's perspectives; Global confirmation of other's perspectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8468] "Subscales: Boredom Reduction; Death Preparation; Identity Contrasting; Negative Emotion Regulation; Social Bonding; Goal Setting; Planning; Problem-Solving; Decision-Making; Positive Emotion Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8469] "Subscales: Within-dream awareness of physical sensations; Within-dream awareness of mental states; Within-dream reflection on dream occurrences; Within-dream reflection on mental states."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8470] "Subscales: Personal-life sacrifice; Work prioritization; Benefits to employees; Costs to organizations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8471] "Factors: God's Grace; Grace to Self; Grace Received from Works; Unconditional Grace to Others; Conditional Grace to Others; Conditional Grace from Parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8472] "Subscales: Awareness of common responses; Discussing and normalising feelings; Utilizing feelings; Wish to care; Awareness of complicated affects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8473] "Factors: Nightmare general distress (NGD); Daytime reality perception (NDRP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8474] "Factors: Dilemmas; Trap; Barriers/Obstacles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8475] "Factors: Climate of safety; Climate of everydayness; Climate of hospitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8476] "Subscales: Safety; Hospitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8477] "Subscales: Selfcare; Respiration and sphincter; Mobility in the room; Mobility indoors/outdoors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8478] "Subscales: Fatigue associated with actions; Fatigue as feeling; Fatigue associated with sleep difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8479] "Factors: Perceived Benefits and Applicability of EMH; EMH Proactive Innovation; EMH Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8480] "Factors: Medication, physiotherapeutic aspects and social interaction; Gastrointestinal, genetic and reproductive aspects; Nutritional aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8481] "Subscales: Internalized continuing bonds; Externalized continuing bonds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8482] "Constructs: Power Distance; Uncertainty Avoidance; Collectivism; Long-Term Orientation; Masculinity; Perceived knowledge quality; Personal outcome expectations; Resource integration/in-teraction; Online Brand Community engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8483] "Subscales: Teacher support; Student behavior; Affirming diversity; Welcoming school; Communication; Assessment and feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8484] "Factors: Communication; Trust; Alienation; Attachment Security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8485] "Subscales: Trauma experiences; Traumatic stress symptoms; Child strengths; Life functioning; Acculturation; Child behavioral/emotional needs; Child risk behaviors; Ratings of children five years old and younger; Transition into adulthood; Caregiver needs and strengths."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8486] "Factors: Sense of connection and community (SCC); Alignment with organizational values (AOV); Meaningful work (MW); Opportunities for inner life (OIL); Emotional balance and inner peace (EBIP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8487] "Factors: Consolidation; Collaboration; Control; Motivation; Care; Challenge; Clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8488] "Factors: Social skills; Competence; Dominant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8489] "Factors: Interpersonal awareness (IA); Fragile inner-self (FI); Separation anxiety (SA); Need for approval (NA); Timidity (TI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8490] "Subscales: Extraversion; Agreeableness; Conscientiousness; Emotional Stability; Intellect/Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8491] "Subscales: Social attraction; Self-disclosure; Intimacy; Quality; Empathy; Communication competence; Feelings of friendship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8492] "Subscales: Health consciousness (HC); Nutrition and Physical Activity (NPA); Sleep quality (SLP); Interpersonal and Intrapersonal coping strategies (IICS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8493] "Subscales: Academic; Social; Personal-emotional; Institutional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8494] "Subscales: Physical symptoms and impairments; Cognitive symptoms and impairments; Mental-emotional symptoms and impairments; Uncertainty about future health; Difficulties with day-to-day activities; Challenges to social inclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8495] "Factors: Information Quality; Information Credibility; Information Usefulness; Information Adoption; Intention to choose a destination; Extraversion; Agreeableness; Consciousness; Neuroticism (psychological stabilization); Imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8496] "Subscales: Reminding; Supporting; Monitoring; Messenger credibility; Role modelling; Norm setting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8497] "Factors: Learning interest; Self-efficacy; Self-worth; Sense of belonging."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8498] "Subscales: Clear directions; Skill encouragement; Emotion regulation; Limit setting; Effective communication; Problem solving; Monitoring; Positive involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8499] "Factors: Sexual desire toward a partner (SD-D); Solitary facet of sexual desire (SD-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8500] "Factors: Physical environment and engagement in leisure & recreation; Social opportunities; Social activities; Perceived social exclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8501] "Subscales: Effectiveness of vlogs on L2 learning; Integration of vlogs into L2 listening classes; Suitability of vlogs and YouTube as resources for extensive viewing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8502] "Subscales: Effectiveness of vlogs on L2 learning; Integration of vlogs into L2 listening classes; Suitability of vlogs and YouTube as resources for extensive viewing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8503] "Subscales: Enjoyment; Initiation; Expression of preferences; Social interaction; Interaction with activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8504] "Subscales: Contexts in which it would be difficult to resist NSSI (risk contexts); Contexts which make it easier to resist NSSI (protective contexts); Contexts in which people are reminded of self-injury (reminders of NSSI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8505] "Subscales: Growth Mindset; Self-efficacy; Self-management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8506] "Factors: Dangerousness (Peligrosidad); Social Dysfunction (Disfunción Social); Incurability (Incurabilidad); Embarrassment (Vergüenza)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8507] "Factors: Time Management; Disruptive Influences; Sleep Influences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8508] "Factors: Behaviors to Adopt; Manage Mindset and Environment; Behaviors to Avoid."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8509] "Constructs: Responsibility; Traditionalism; Orderliness; Industriousness; Virtue; Self-Control; Agile Defense; Structured Defense; Agile Offense; Structured Offense; Online Gamer Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8510] "Subscales: Accuracy; Believability; Competency; Reliability; Truthfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8511] "Subscales: Metacognition; Self-judgment accuracy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8512] "Factors: Situational Barriers and Gatherings; Takeaways and Eating Out; Psychological Factors; False Beliefs and Food Habits; Lack of Motivation; Enjoy Eating and Difficulty Resisting Temptation; Satisfaction with Previous Food Habits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8513] "Factors: Symptoms; Impact on life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8514] "Factors: Dominating behaviors; Existential threats; Impulsive aggressions (verbal and physical); Aggravated physical assault."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8515] "Factors [Subscales]: General Stress (GS) [s1, General stress; s2, Emotional stress; s3, Social stress; s4, Conflicts/pressure; s5, Fatigue; s6, Lack of energy; s7, Physical complaints]; General Recovery (GR) [s8, Success; s9, Social recovery; s10, Physical recovery; s11, General well-being; s12, Sleep quality]; Sport Stress (SS) [s13, Disturbed breaks; s14, Emotional exhaustion; s15, Injury]; Sport Recovery (SR) [s16, Being in shape; s17, Personal accomplishment; s18, Self-efficacy; s19, Self-regulation]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8516] "Factors: Behavioral CA (Bhv.CA); Cognitive CA (Cog.CA); Emotional CA (Emo.CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8517] "Subscales: Body awareness (BA); Supradiaphragmatic reactivity (SUPR; Subdiaphragmatic reactivity (SUBR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8518] "Subscales: Pride in Asian Features; Preference for Asian American Appearance; Asian Americans as Desirable; Action Promoting Asians’ Attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8519] "Factors: Coping with negative effect; Automaticity; Enhancement; Social use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8520] "Subscales: Reactive; Proactive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8521] "Construct: MC Use Endorsement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8522] "Factors: Self-devaluation; Fear of enacted stigma; Stigma avoidance; Values disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8523] "Subscales: Observer’s perspective; Body as self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8524] "Factors: Costless saving behavior; Costly saving behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8525] "Subscales: Counseling skills and therapeutic conditions; Counseling disposition and behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8526] "Subscales: Social; Leadership; Infrastructure; Decoration; Instruction; Comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8527] "Subscales: Personal Skills scale; Process and Results Competencies scale; Intellectual Competencies scale; Social Competencies scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8528] "Factors: Social Acceptance (SAS); Social Exclusion (SES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8529] "Subscales: Appearance; Social; Height; Academic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8530] "Factors: Emotional support; Monitoring; Instructional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8531] "Factors: Caregiver’s contributions to heart failure self-care related to medical issues; Caregiver’s contributions to heart failure self-care related to lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8532] "Factors: Intentions to Quit; Boredom; Emotional Engagement; Perceived Quality of Academic Feedback; Perceived Emotional Support; Perceived Autonomy Granting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8533] "Factors: Dimorphous expression of positive emotions (dimorphous expressions in response to cute stimuli); Dimorphous expression of negative emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8534] "Subscales: Frequency; Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8535] "Domains: Somatization; Anxiety; Childhood abuse/trauma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8536] "Subscales: Emotions; Activities; Academic; Addiction; Routine; Physical activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8537] "Factors: Economy and leisure (EL); Physical and mental health (PM); Parenting (PA); Family communication (FC); Support from others (SO); Professional support (PS); Career development (CD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8538] "Factors: Resourceful and focused; Self-initiated and knowing-based; Physical and fixed; Positive and systematic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8539] "Subscales: Authenticity; Support and protection; Having an impact; Shared experience; Initiative from the other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8540] "Factors: Hedonic; Utilitarian."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8541] "Subscales: Vision; Sound; Smell; Taste; Touch; Body; Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8542] "Factors: Health Behavior; Ignorance; Health Awareness; Resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8543] "Subscales: Authentic Living; Accepting External Influence; Self-Alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8544] "Subscales: Relevance of internationalized content; Relevance of English language teaching; Comfort with internationalized content; Overall teaching quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8545] "Subscales: Perceived Program Quality; Perceived Implementer Quality; Perceived Program Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8546] "Sections: Midterm Evaluations (Professional Behaviors and Dispositions; Assessment and Application; Beginning Counseling Skills; Advanced Counseling Skills); Final Evaluations (Professional Behaviors; Counseling Relationship; Counseling Skills; Assessment and Application; Professional Dispositions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8547] "Factors: Counseling skills and therapeutic conditions; Counseling dispositions and behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8548] "Factors: Observer’s Perspective; Body as Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8549] "Factors: Data mining techniques; Programming and database; Basic knowledge and procedure of data mining; Data retrieval and statistical presentation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8550] "Factors: Disgust; Normality; Contagion; Moral concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8551] "Factors: Family Alliance (FA); Suicide-Related Concerns (SRC); Peer Acceptance and Support (PAS); Future Optimism (FO); Self-Acceptance (SA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8552] "Subscales: Confusional arousals; Sleepwalking; Sleep terrors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8553] "Subscales: Planning, mastery, and clarity in the explanation of the subject matter; Methodology and resources; Evaluation; Teacher-student relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8554] "Subscales: High-level construal (Fhlc); Low-level construal (Fllc)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8555] "Factors: Sending; Reasons for sending; Receiving; Forwarding; Victim of forwarding; Reasons for forwarding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8556] "Subscales: Attitude toward cultural tourism; Subjective norm; Perceived behavioral control; Behavioral intention; Request for meaning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8557] "Factors: Cognitive Difficulty; Nonverbal Behavior Control; Anxiety; Detail."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8558] "Scales: Behaviors (Stockpiling; Avoiding; Cleaning); Worry (Financial Worries; Health Worries; Catastrophic Concerns); Disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8559] "Subscales: Admiration; Negative social potency; Passivity; Prosocial interactions; Sexual relationships; Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8560] "Factors: Admiration; Negative Social Potency; Passivity; Prosocial Interactions; Sexual Relationships; Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8561] "Factors: Physiological fatigue; Psychological fatigue; Attitude; Perceived behavioral control; Supervisor safety perception; Co-worker safety perception; Safety behavior intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8562] "Factors: Motivators of Food Patterns (Physical Health Driven Indicators; Culture Driven Indicators; Sustainability Driven Indicators); Neophobia toward Plant-Based Meat; Willingness to Try Plant-Based Meat; Consumer Local Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8563] "Subscales: Control; Personal agency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8564] "Scales: Rereading (Use of rereading; Effectiveness of rereading; Enjoyment of rereading; Effort of rereading); Retrieval (Use of retrieval; Effectiveness of retrieval; Enjoyment of retrieval; Effort of retrieval)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8565] "Subscales: Managing Daily Life Tasks; Doing Household Chores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8566] "Scales: Temperance; Prosocial Diligence; Gossip; Honesty/Morality; Temper; Implacability; Humility; Vanity; Resiliency vs. Agitation; Courage vs. Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8567] "Subscales: PrEP stigma of actions outside of sex; PrEP stigma of sexual actions; Extreme PrEP stigma perceptions; Positive community PrEP perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8568] "Factors: Insufficient workload; Understimulation; Work-related guilt; Incompatibility of personal work values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8569] "Constructs: Work stress (WS); Safety promotion policy (SPP); Safety training (ST); Perceived behavioral control (PBC); Attitude toward risk-taking behavior (ATRTB); Outcome expectancy (OE); Risk perception –probability (RPP); Risk perception – severity (RPS); Risk perception –worry and unsafe (RPWU); Risk-taking behavior (RTB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8570] "Factors: Medication Management; Health-Care Engagement; Provider Communication; Disease Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8571] "Subscales: Rumination; Magnification; Helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8572] "Subfactors: Physical; Emotional; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8573] "Subscales: Physical resilience; Emotional resilience; Social resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8574] "Subscales: Group therapeutic process; Group therapist; Group therapeutic challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8575] "Factors: (Secondary/General Factor) Educational Practices; (First-Order Factors) Classroom Management; Instructional Strategies; Student Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8576] "Subscales: Coparenting Agreement; Endorsement of Partner’s Parenting; Coparenting Closeness; Coparenting Support; Coparenting Undermining; Exposure to Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8577] "Factors: Agreement; Parenting-based closeness; Exposure to conflict; Endorsing partner parenting; Support from partner; Undermining; Division of labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8578] "Factors: Sexual risk-taking; Sexual experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8579] "Factors: Perceived Ability (PAS); Enjoyment (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8580] "Factors: Personal-mobility; Personal-chronic condition; Environmental."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8581] "Factors: Humanism/Faithhope/Sensitivity; Helping/trust; Expression of positive/negative feelings; Teaching/learning; Supportive/ protective/corrective environment; Human needs assistance; Existential/phenomenological/spiritual forces."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8582] "Subscales: Theft or related behavior; Destruction of property; Misuse of information; Misuse of time or resources; Interpersonal misconduct; Poor quality work; Unsafe behavior; Poor attendance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8583] "Subscales: Knowledge; Attitudes and risk perceptions; Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8584] "Subscales: Child's appearance; Sights and sounds; Procedures; Professional staff communication; Child’s behavior and emotional responses; Parental role."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8585] "Subscales: Using cognitive assessments and care intervention; Using evidence and expertise in cognition; Individualizing care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8586] "Factors: Social connection (SC); Social dependence (SD); Social identity (SI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8587] "Factors: Social Gender Role Affirmation; Physical and Mental Incongruence; Physical Transition; Self-affirmative Gender Expression; Sexual Attraction; Sexual Pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8588] "Factors: Intrapersonal; Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8589] "Subscales: Future consequences; Immediate consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8590] "Factors: Real Morbid Events; Aversion to Morbid Events; Fictitious Morbid Events; Morbid Medical Events; Morbid Events in News/Accidents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8591] "Factors: General factor (G-Factor); Intrapersonal; Interpersonal (Specific Factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8592] "Factors: Work gratitude [Grateful appraisals; Gratitude toward others; Intentional attitude of gratitude]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8593] "Subscales: Medical preparations; Relationships and personal preparations; Spiritual preparations; Practical preparations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8594] "Subscales: Fairness obligations; Obligations to use adaptive teaching practices; Obligations to be informed and knowledgeable; Deviant obligations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8595] "Factors: Knowledge about pesticides; Knowledge of health effects related to pesticides exposure; Pesticide exposure through the growing of fruits and vegetables; Perception and action against pesticides exposure at school; Perception and action against pesticides exposure at home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8596] "Factors: Limit Setting (LS); Emotional Regulation (ER)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8597] "Factors: Self-Discipline; Impulse Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8598] "Subscales: Career opportunities; Decreased prestige and qualification requirements of the employment; Contractual employment conditions; Unemployment; Change of workplace; Retirement; Work-nonwork interactions; Discrepancy between individual resources and work demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8599] "Factors: Self-acceptance (SELFACC); Sense of self (SELF); Aggression (AGG); Relationship with family (RELFAM); Sexuality (SEX); Relationship with friends (RELFRI); Investments and goals (INV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8600] "Subscales: Intrapersonal self; Interpersonal self; Collective self; Transpersonal self; Spatial-material self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8601] "Subscales: Emotional Burden; Disease-related Functional Impairment; Physician-related; Disease-related Interpersonal; Regimen-related."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8602] "Factors: Conspicuous; Insecure; Crude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8603] "Factors: Job non-routinization; Transformational leadership; Organizational identification; Creativity (supervisor-rated)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8604] "Subscales: Prospective waiting time (PRWT); Retrospective waiting time (RWT); Perceived waiting time (PWT); Waiting time satisfaction (WTS); Satisfaction with self‐service technology (SST); Customer loyalty (CL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8605] "Domains: Human rights; Sexual intercourse; Other forms of sexual expression; Rationale for sexual expression rules; Access to resources; Staff/patient interaction; Consequences of prohibited sexual activity; Inpatient parenting; Policies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8606] "Factors: Engagement; Suspicion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8607] "Factors: Privacy; Control; Fun; Interaction Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8608] "Factors: Stressors Related to Changes in Psycho-Cognitive and Social Lifestyle; Stressors Due to Lack of Knowledge; Stressors related to care and treatment staff."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8609] "Subscales [Factors]: Knowledge [Disease features; Condition awareness; Responsive behavior; Special needs]; Attitude [Individual respect; Patience]; Skills [Management of behaviors; Recognizing situation; Sense of reality]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8610] "Factors: Intention to fund the tourism project; Attitude towards the tourism project; Overall attitude towards crowdfunding; Platform risk; Entrepreneur risk; Project risk; Social consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8611] "Factors: Extraversion; Agreeableness; Conscientiousness; Neuroticism; Openness; Welcoming Nature; Emotional Closeness; Sympathetic Understanding; Social Network Affinity; Technology Concerns (Low Perceived Usefulness; Low Perceived Ease of Use; Social Disapproval of Usage; Perceived Risk of Usage); Behavioral Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8612] "Scales: Clinical supervision (CS); Administrative supervision (AS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8613] "Factors: Reciprocal social interaction; Qualitative abnormalities in communication; Restricted, repetitive or stereotyped patterns of behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8614] "Domains: Language; Memory; Number processing; Attention and Executive function; Praxis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8615] "Subscales: Material-change; Psychological-change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8616] "Constructs: Esteem; Technology interaction; Relevance; Uniqueness; Playfulness; Emotional resonance; Community involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8617] "Subscales: Physical Benefits; Cognitive Benefits; Emotional Benefits; Social Benefits; Aggressiveness Risks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8618] "Subscales: Sensitive Responding; Positive Mutuality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8619] "Subscales: Psychological flexibility (PsyFlex); Psychological inflexibility (PsyInflex)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8620] "Factors: Achieving a sense of pride and learning; Escaping; Seeking connectedness; Attending diaspora events and exploring and spirituality; Seeking memorable experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8621] "Subscales: Appearance; Symptom; Psychosocial impact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8622] "Constructs: Needed Flexibility; Perceived Flexibility; Actual Flexibility; Perceived Flexibility Fit; Subjective Flexibility Needs Fulfillment; Job Pursuit Intentions; Job Acceptance Intentions; Perceived Demand–Ability Fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8623] "Constructs: Ethical Leadership; Caring; Independence; Law and Code; Rules; Instrumental; Person organization fit; Normative ethical behavior; Juridical ethical behavior; Ethical Climate; Employees’ ethical behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8624] "Factors: Perceived corporate social responsibility; Perceived corporate product quality; Perceived negative publicity; Organizational attractiveness; Intention to apply."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8625] "Subscales: Anxiety; Relationship disruption; Hygiene; Visibility; Treatability; Professional efficacy; Recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8626] "Subscales: Adaptability and Flexibility; Personal Strengths and Professional Growth; Positive Mindset."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8627] "Factors: Inadequate School-based Support; Teaching-related Demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8628] "Subscales: Reputation (REP); Information quality (IQ); Satisfaction (SAT); Trust (TRU); Repurchase intention (RI); WOM intention (WMI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8629] "Constructs: Corporate social responsibility perception; Thriving at work (Learning latent factor; Vitality factor); Task significance; Taking charge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8630] "Subscales; Overactivity; Underactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8631] "Subscales: Ethics; Social influence; Guidelines evaluation; Confidence in existing treatments for COVID-19 patients; Profession choice; Criteria for prioritizing patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8632] "Factors: Worry/Anxiety about getting COVID-19; Limitations on ability to provide caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8633] "Subscales: Internal procedural justice (IPJ); Trust in citizens (TIC); Compliance with agency policies (CAP); External procedural justice (EPJ)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8634] "Factors: Time management; Compulsive Internet use; Emotion adjustment influence; Interpersonal and academic influence; Preferred online social interaction; Daily life influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8635] "Subscales: Danger and Contamination; Socio-Economic Consequences; Xenophobia; Traumatic Stress; Compulsive Checking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8636] "Factors: Expiatory reparation (ER); Manic reparation (MR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8637] "Subscales: Somatic complaint; Psychological complaints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8638] "Subscales: Therapy Quality Expectation; Ease of use; Pressure from others; Professional Support; Convenience; Behavior intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8639] "Factors: Religious Coping; Self-Management; Empathic Communication; Family Affective Commitment; Purposeful Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8640] "Subscales: Anxiety; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8641] "Factors: Way of Life; Belief in Rebirth, Karma and Destiny; Existence of Supreme Power; Importance of Prayer; Purposeful Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8642] "Factors: Optimism; Pessimism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8643] "Factors: Promotion of Values; General Aspects of the Model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8644] "Factors: Physical self-care; Psychological self-care; Spiritual self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8645] "Factors: Prospective Intolerance of Uncertainty; Inhibitory Intolerance of Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8646] "Factors: Obstructive/Discomfort (O); Irritative symptoms (I); Stress symptoms (S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8647] "Factors: Social Bonding; Social Activism; Reactive Aggression; Interpersonal Distress; Impulsivity; Virtual Dissociation; Thrill-Seeking; Vengeance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8648] "Factors: Emotional shared fate (ESF); Perceived shared fate (PSF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8649] "Subscales: Anxious Uncertainty; Dysregulated Anger; Despondence; Self-Disturbance; Behavioral Dysregulation; Affective Dysregulation; Fragility; Dissociative Tendencies; Distrustfulness; Manipulativeness; Oppositional; Rashness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8650] "Factors: Mystical Experience; Moral Practice; Meaning Exploration; Transcendent Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8651] "Subscales: Personal confidence and hope (PCH); Willingness to ask for help (WAH); Goal and success orientation (GSO); Reliance on others (RO); No domination by symptoms (NDS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8652] "Factors: First-Order: Acceptance; Active coping; Behavioral disengagement; Denial; Seeking emotional support; Humor; Seeking instrumental support; Mental disengagement; Planning; Positive reinterpretation; Religion; Restraint; Substance use; Suppression of competing activities; Venting. Second-Order: Active coping; Social emotional coping; Avoidance coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8653] "Factors: Readiness to pay the price; Healthy breakfast and snack preferences; Place preferences; Communication channel preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8654] "Subscales: Personal Perception (C-19 PF); Country Perception (C-19 CF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8655] "Subscales: Planning Academic Activities; Learning Strategies; Information Retrieval; Working in Groups; Management of Relationships with Teachers; Managing Lessons; Stress Management; Thesis Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8656] "Factors: Affective engagement; Behavioral engagement; Cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8657] "Subscales: Positive empathy; Neutral empathy; Negative empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8658] "Subscales: Inattention; Hyperactive-Impulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8659] "Subscales: Tendency toward relenting; Tendency toward persistence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8660] "Subscales: Conceptual Knowledge; Algorithmic Thinking; Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8661] "Factors: Dementia symptoms; Family support; Home environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8662] "Factors: Characteristics of Mother; Environmental Factor; Characteristics of Child; Relationship between Two Siblings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8663] "Subscales: Crafting for the task considering the team's growth; Crafting for members' respect and reflection of meaningfulness of work; Crafting for smooth information sharing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8664] "Subscales: Food fussiness; Food responsiveness; Satiety responsiveness; Emotional undereating; Enjoyment of food; Desire to drink; Slowness in eating; Emotional overeating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8665] "Factors: Pain intensity; Pain disability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8666] "Factors: Exploration in-breadth; Exploration in-depth; Commitment making; Identification with commitment; Self-Doubt (Pre-transition EIPS); Reconsideration; Exploration in-depth; Identification with commitment; Self-Doubt (Post-transition EIPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8667] "Factors: Task; Ego."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8668] "Factors: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8669] "Subscales: Occupational naming; Occupational vocabulary; Occupational comprehension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8670] "Subscales: Enhancement of self-exploration; Informational support; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8671] "Factors: Hampering RSS (RSS-H); Facilitating RSS (RSS-F)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8672] "Subscales: Prostate Cancer Anxiety (PCA); Prostate-Specific Antigen Anxiety (PSAA); Fear of Recurrence (FoR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8673] "Subscales: Arousal-related behaviors; Sleep scheduling and timing; Eating/drinking behaviors; Sleep environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8674] "Factors: Job-Seeking Self-Efficacy; Managing Disability at Interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8675] "Dimensions: Student-student relations; Student-staff relations; Academic emphasis; Shared values approach; School identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8676] "Factors: Animal flesh; Poor hygiene; Human contamination; Mold; Decaying fruit; Fish; Decaying vegetables; Living contaminants."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8677] "Subscales: Academic engagement; Knowledge and competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8678] "Subscales: Effectiveness; Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8679] "Factors: Cultural Sensitivity and Global Citizenship; Interpersonal and Leadership Competencies; Problem-solving and Critical Thinking Skills; Self-understanding and Resilience; Numerical and Information Technology Skills; Moral Values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8680] "Factors: Approach; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8681] "Subscales: Instruction and Evaluation; Knowledge, Ethics and Preparation; Dispositions; Behaviors and Technology Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8682] "Factors: Monitoring; Revising; Planning; Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8683] "Factors: Callous affect (CA); Erratic lifestyle (ELS); Interpersonal manipulation (IPM); Criminal tendencies (CT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8684] "Factors: Emotional Calmness (EC); Overlook Others’ Misdeeds (OOM); Tolerance and Acceptance (TA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8685] "Factors: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8686] "Subscales: Trust vs Mistrust; Autonomy vs Shame and doubt; Initiative vs Guilt; Industry vs Inferiority; Identity vs Role Confusion; Intimacy vs Isolation; Generativity vs Stagnation; Integrity vs Despair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8687] "Factors: Positive humor (PH); Negative humor in-group (NHI); Negative humor outgroup (NHO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8688] "Factors: Identification with the generation; Awareness of the generational importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8689] "Subscales [Factors]: Cognition [Cognition of female sexual organ swear words; Cognition of other sexual behavior swear words; Cognition of relatives-related sexual behavior swear words; Cognition of male sexual organ swear words]; Affection [Affection of sexual organ swear words; Affection of relatives-related sexual behavior swear words; Affection of other sexual behavior swear words]; Behavior Tendency [The tendency of swearing in private environments; The tendency of swearing on the Internet; The tendency of swearing in public environments]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8690] "Factors: MR, Mindful Relaxation; PC, Physical Care; SCP, Self-Compassion and Purpose; SR, Supportive Relationships; SS, Supportive Structure; MA, Mindful Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8691] "Subscales: Structuring of work tasks; Planning of work times; Planning of working places; Coordinating with others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8692] "Subscales: Soldiering; Cyberslacking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8693] "Factors: Inflated Sense of Entitlement; Restricted Sense of Entitlement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8694] "Factors: Reciprocal filial piety (RFP); Authoritarian filial piety (AFP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8695] "Factors: Capability to Resist External Pressure; Capability to Resist Internal Pressure; Capability to Cope."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8696] "Factors: Despair; Adjustment; Proactivity; Aversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8697] "Factors: Attention; Causality; Contradiction; Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8698] "Factors: Task–Environment Crafting; Social Needs Prioritization; Workday Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8699] "Sections: Knowledge; Attitudes; Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8700] "Factors: Adolescents and family interaction; The perception of female adolescents of premarital sexual relationships; Enabling factors for sexual and reproductive self-care; Understanding and behaviors of female adolescents of the interaction with the opposite sex; Parent-adolescent communication barriers; Reproductive and sexual knowledge; Self-care for reproductive health and menstruation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8701] "Subscales: Emotion coaching; Emotion noninvolvement; Emotion dismissing; Emotion dysfunction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8702] "Subscales: Economic games; Situational judgment tests; virtual cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8703] "Subscales: Expectancy; Importance; Interest; Listening Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8704] "Subscales: Autonomy support for master goals; Control for mastery goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8705] "Subscales: Directed attention; Planning and evaluation; Mental translation; Problem-solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8706] "Subscales: Feelings; Animation; Imagery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8707] "Subscales: Negative Emotional Eating (PNEES-N); Positive Emotional Eating (PNEES-P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8708] "Subscales: Positive; Negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8709] "Subscales: Insight; Control; Thought; Realism; Memory; Dissociation; Negative Emotion; Positive Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8710] "Subscales: One’s Own Death; Death of Others; Dying of Others; One’s Own Dying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8711] "Subscales: Way of thinking; Knowledge and skills; View of the world; Beliefs about what is right and wrong."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8712] "Subscales [Factors]: Core Literacy, MHLS-Core [Knowledge of mental disorder; Ability to seek information and help; Recognition of mental disorder]; Social Acceptance, MHLS-SA [Acceptance of patients with mental illness]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8713] "Subscales: Negative emotional eating (PNEES-N); Positive emotional eating (PNEES-P)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8714] "Subscales: Performance Worries; Social Support; Imagery and Active Preparation; Adverse Response to Failure; Self-Directed Control and Management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8715] "Factors: Dependence; Emotional Energy; Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8716] "Factors: Dependence (DEP); Emotional Energy (EE); Relatedness (REL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8717] "Factors: Pros; Cons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8718] "Mean confidence ratings by SOC across these four components of stuttering management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8719] "Factors: Personal irrational beliefs (PIB); Low frustration tolerance (LFT); Awfulizing (AWF); Depreciation (DEP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8720] "Subscales: Hostile Attributions; Awfulizing; Demanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8721] "Subscales: Catastrophic thoughts related to insomnia symptoms at bedtime (ICS-N); Daytime functioning (ICS-D)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8722] "Subscales: Cognitive reflection; Thinking style-Need for cognition; Thinking style-Faith in intuition; Paranormal beliefs; Utilitarian tendencies; Cooperation; Orientation to happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8723] "Factors: Clan; Market; Hierarchy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8724] "Subscales: Consideration of immediate consequences (CFC-I); Consideration of future consequences (CFC-F)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8725] "Subscales: Agreeableness; Conscientiousness; Extraversion; Openness; Emotional stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8726] "Subscales: Agreeableness; Conscientiousness; Extraversion; Openness; Emotional stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8727] "Factors: Approach-Oriented Death Acceptance; Fear of Death/Dying; Escape-Oriented Death Acceptance; Neutral Death Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8728] "Subscales: Economic and material; Daily activity-based; Emotional; Self-efficacy enhancement-oriented; Information; Community network connection-based."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8729] "Subscales: Work-Family Conflict; Family-Work Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8730] "Subscales: Neutral death acceptance; Perceived control; Depression; Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8731] "Subscales: Organization of care and availability of caregivers; Medical information provision; Confidence and involvement of relatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8732] "Subscales: Autonomous motivation; Controlled motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8733] "Factors: Honesty-Humility (H); Emotionality (E); Extraversion (X); Agreeableness versus Anger (A); Conscientiousness (C); Openness to Experience (O)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8734] "Factors: Emotional openness (EO); Emotional fulfillment (EF); Social belonging (SB); Stable attachment (SA); Success (SU); Optimism (OP); Healthy self-control (HSC); Developed self (DS); Empathic consideration (EC); Self-compassion and realistic expectations (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8735] "Factors: Ethical; Financial; Medical/Health; Recreational-safety; Recreational; Social."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8736] "Factors: State Cheerfulness; State Seriousness; State Bad Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8737] "Factors: Hedonic; Utilitarian."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8738] "Subscales: Individual level; Organizational level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8739] "Subscales: Positive and Negative Beliefs about Tobacco use; Positive and negative beliefs about alcohol use; Positive and negative beliefs about marijuana use; Positive and Negative Attitudes towards Drugs; Self-esteem; Future substance use; Poor problem-solving skills; Substance abuse index; Parental Involvement; Family functioning; School bonding; Risk Perception; Assertiveness; Normative beliefs; Refusal skills; Decision-making skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8740] "Factors: Awareness/Acceptance of Substance Use Disorder; Denial of Substance Use Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8741] "Factors: Cognitive crafting; Seeking social support; Seeking challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8742] "Subscales: Communication and imagination; Social skills; Special attention-interest; Detailed awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8743] "Subscales: Autonomous decision-making; Autonomous regulation; Autonomous protection; Autonomous problem-solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8744] "Factors: Biospheric values; Altruistic values; Egoistic values; Hedonic values; Eudaimonic values; Private sphere behaviors; Public sphere behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8745] "Factors: Creating a safe workplace through head nurse; Creating a safe workplace through the organization manager; Perception of interaction with colleagues; Experience of clinical jobs hindering the use of personal protective equipment (PPE); Perception of comfort using PPE; Easy usage of PPE."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8746] "Factors: Academic Achievement Motivation; Athletic Motivation; Learning Outcome Motivation; Career Athletic Motivation; Academic Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8747] "Factors: Student athletic motivation (SAM); Career athletic motivation (CAM); Academic motivation (AM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8748] "Factors: Social Status; Competence; Professional Impact; Autonomy; Meaningfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8749] "Factors: Strengths use for tasks; Strengths use for relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8750] "Factors: Positive adaptation; Withdrawal; Problem-solving; Prosocial focus; Seeking Emotional support; Disengagement; Self-regulation. Constructs: Opportunities for Growth (Growth); Identifying Alternatives (Alt); Problem Solving (Prob); Prosocial Focus (Prosoc); Seeking Professional Help (Prof); Seeking Emotional Support (Emot); Self-Regulation (Sreg); Disengagement (Diseng); Denial (Denial); and Withdrawal (WithD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8751] "Subscales: Family Relationships; Peer Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8752] "Subscales: Situational Interest; Individual Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8753] "Factors: Close relationships; Casual interactions; Family relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8754] "Factors: Marginalization (M); Victim Culpability (VC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8755] "Factors: Visual Aesthetics; Operating Elements; Logo; Feedback Sounds; Operating Sounds; Haptic; Interaction Aesthetics; Impression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8756] "Subscales: Preconditions; Rationale; Nonverbal behaviors; Influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8757] "Factors: Observing; Describing; Acting with awareness; Non-judging; Non-reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8758] "Subscales: Agentic Adjustment Beliefs; Dutiful Adjustment Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8759] "Factors: Psychological support; Educational support; Play support; Life support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8760] "Factors: Intrinsic cognitive load; Gameplay interest; Flow experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8761] "Scales: Senior-leader commitment to change capability; Visible senior-leader sponsorship of change; Capability development; Change-conducive culture and climate; Change-management infrastructure; Portfolio management; Capacity management; Change accountability; Skilled change leaders; Supportive frontline leaders; Ready and willing people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8762] "Subscales: Faculty Interactions; Advisor Interactions; Culture of Sexism; Lab Culture."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8763] "Subscales: Empathy; Reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8764] "Factors: Concern about Physical Unattractiveness; Concern about Social Disapproval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8765] "Subscales: Power process; Communication skills; Responses to bids."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8766] "Constructs: Transactional Psychological Contracts (TPC); Relational Psychological Contracts (RPC); Community Identification (CI); Knowledge Sharing Self-efficacy (KSS); Knowledge Contribution (KC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8767] "Subscales: Mental purity; Respect for religion; Bodily purity; Pathogen avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8768] "Subscales [Factors]: Sleep Scale–Short version [Sleep quality; Sleep quantity; Sleep latency]; Psychological Functioning at Work Scale [Self-regulatory failures; Negative affectivity; Resilience]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8769] "Subscales: Negative experiences; Positive experiences; Lifestyle consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8770] "Factors: Social distancing and Protection (SDP); Perceived psychological impact (PPI); Skepticism (S); Credibility of perceived information (CPI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8771] "Constructs: Behavioral Intention of LMS; Corona Fear; Effort Expectancy; Facilitating Conditions; Performance Expectancy; Social Influence; Social Isolation; Use Behavior of LMS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8772] "Subscales: General Wellbeing; Resilience and Confidence; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8773] "Subscales: Affect; Preferred Difficulty; Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8774] "Factors: Checking; Image management; Physical protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8775] "Subscales: Educationally defensible practices; Educationally indefensible practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8776] "Factors: Physical (sense of effort); Psychological (sense of anxiety); Reflecting the uncomfortable feeling at rest (sense of discomfort)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8777] "Constructs: COVID-19 risk perception and fear (Perceived susceptibility to COVID-19; Perceived severity of COVID-19; Fear); COVID-19 vaccines attitudes and beliefs (Attitude toward COVID-19 vaccines; Perceived individual benefits of COVID-19 vaccines; Perceived community benefits of COVID-19 vaccines; Perceived barriers of getting COVID-19 vaccines (safety concerns); Perceived barriers of getting COVID-19 vaccines (cost concerns)); Self-efficacy; Social and psychological contexts (Cues to action (COVID-19 exposure); Cues to action (served as essential worker); Subjective norm (descriptive norm); Subjective norm (injunctive norm); Baseline vaccine hesitancy (attitude toward vaccines in general); Baseline vaccine hesitancy (vaccination history)); Intention to receive a COVID-19 vaccine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8778] "Factors: Building connections with staff; Being dependable; Being empathic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8779] "Factors: Respects Uniqueness; Being Reliable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8780] "Factors: Major depressive disorder (MDD); Panic disorder (PD); Social phobia (SP); Separation anxiety disorder (SAD); Generalized anxiety disorder (GAD); Obsessive-compulsive disorder (OCD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8781] "Subscales: Major depressive disorder (MDD); Panic disorder (PD); Social phobia (SF); Separation anxiety disorder (SAD); Generalized anxiety disorder (GAD); Obsessive-compulsive disorder (OCD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8782] "Factors: Self-consciousness; Competing interests; Lack of resources; Weather; Personal expectations and familial influences; Lack of motivation; Competing priorities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8783] "Factors: Efficacy for instructional strategies (IS); Efficacy for classroom management (CM); Efficacy for student engagement (SE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8784] "Subscales: Care competence and patient/older adult and family empowerment; Ethical and compassionate care competence; Patient safety competence; Continuous professional development and self-care competence; Collaborative and team care competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8785] "Factors: Emotional functioning; Interpersonal functioning; Cognitive functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8786] "Subscales: Emotion; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8787] "Mother Form Subscales: [Core Neglect] Physical neglect; Emotional neglect; Failure to protect; General neglect; Cognitive neglect; Supervisory deficiencies. Father Form Subscales: [Core Neglect] Physical neglect; Emotional neglect; Supervisory deficiencies; Failure to protect. Criterion-Related Subscales: Depression; Social Desirability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8788] "Subscales: Cognitive neglect; Emotional neglect; Supervisory neglect; Physical neglect; Failure to protect; General neglect; Abandonment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8789] "Subscales: Acceptance; Defusion & Self as context; Being Present; Values & Committed Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8790] "Factors: I-Position; Emotional Reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8791] "Subscales: Functional; Physical; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8792] "Subscales: Process; Methods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8793] "Subscales: Emotional Support; Instrumental Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8794] "Factors: Social recognition anxiety; Interaction anxiety; Privacy concern anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8795] "Subscales: Primary milestones; Current first language abilities; Behavioral patterns and activity preference; Family history."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8796] "Factors: Perceived self-efficacy in managing fear (FEA); Anxiety (ANX); Despondency (DES); Anger (ANG); Expressing positive affect (POS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8797] "Factors: Fitness-related guilt; Shame; Authentic/hubristic pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8798] "Factors: Engagement; Perseverance; Optimism; Connectedness; Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8799] "Subscales: Zero tolerance of all forms of abuse; Show people respect; Treat each person as an individual by offering a personalized service; Enable people to maintain the maximum possible level of independence, choice and control; Listen and support people to express their needs and wants; Respect people's privacy; Ensure people feel able to complain without fear of retribution; Engage with family members and carers as care partners; Assist people to maintain confidence and a positive self-esteem; Act to alleviate people’s loneliness and isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8800] "Subscales: Causes & Characteristics; Risk & Health Promotion; Communication & Behavior; Care Considerations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8801] "Dimensions: Anthropomorphism; Psychological distance; Evaluation of the AI assistant (Attitude toward the AI assistant; Satisfaction with the AI assistant)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8802] "Dimensions: Information and data literacy (INFO; Searching); Communication and collaboration (COMM); Digital content creation (CREAT); Safety and security (SAFE); Problem solving (PROBL; Operation and usage, Comprehension and development); Analyzing and reflecting (ANALY; Analysis of distribution and risks, Analysis of business activities)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8803] "Factors: Self-Regulation; Work engagement; Parallel Communication; Perceived performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8804] "Factors: Leader-member exchange (LMX) ambivalence; Organizational embeddedness; Career commitment; Job strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8805] "Factors: Autonomy; Interaction; Intensity; Meaningful."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8806] "Subscales: Potential absorptive capacity; Realized absorptive capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8807] "Subscales: Acceptance of relationship aggression (AGGR); Willingness to compromise oneself to attract/keep a partner (COMP); Confidence in one's knowledge about and ability to cope with relationship problems (COPE); Overreliance on emotions for relationship decisions (EMOT); Confidence in one's knowledge about what a healthy relationship is and one's ability to manage relationships (MANAGE); Beliefs that any relationship can work if you love someone enough or work hard enough (WORK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8808] "Subscales: Pain; Specific Function; Usual Function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8809] "Subscales: Worry; Danger public policies; Danger media communication; Usefulness public policies; Usefulness media communication; Protective behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8810] "Subscales: Yielding; Withdrawing; Confronting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8811] "Factors: Attitudes; Beliefs; Learner Emotions; Negative Emotions; Values; Willingness to Act."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8812] "Subscales: Domestic chores; Work/leisure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8813] "Subscales: Compassion; Social engagement; Body sensations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8814] "Factors: Vestibular Modality; Somatosensory Modality; Proprioceptive Modality; Visual Modality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8815] "Constructs: Perceived usefulness (USE); Perceived playfulness (PLA); Personalization (PER); Satisfaction (SAT); Continuous use intention (CON)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8816] "Subscales: Perceived Stressors (PS); Stress Related Cognition (SRC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8817] "Subscales: Caring for the person; Caring for the environment and the family; Caring presence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8818] "Factors: Physical functioning; Psychological functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8819] "Factors: Discouraged adolescents; Shame avoiders; Dependent adolescents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8820] "Subscales: Shared problem-solving (SPS); Shared decision-making (SDM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8821] "Factors: Physical and financial resources; Social and family resources; Received support; Emotional and cognitive resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8822] "Subscales: Frugality/ecocentrism; Spending dysregulation; Investment; Sharing/borrowing; Sanctified thrift."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8823] "Subscales: Eudaimonic motivation; Hedonic pleasure motivation; Hedonic comfort motivation; Extrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8824] "Factors: Physicians’ bioethics practice; Incentive related bioethics; Medical law awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8825] "Subscales: Eudaimonia scale; Hedonia scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8826] "Factors: 24-Item MWCQ-brief (Effective coping; Optimistic coping; Unpractical coping; Escape coping); 18-Item MWCQ-brief (Active coping; Avoidance coping; Minimizing the situation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8827] "Factors: Disorders in initiating sleep (DIS); Disorders of maintaining sleep (DMS); Sleep breathing disorders (SBD); Parasomnias (PAR); Disorders of excessive somnolence (DOES); Sleep hyperhidrosis (SHY)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8828] "Subscales: Playful guiding; Enthusiastic guiding; Creative guiding; Engaged guiding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8829] "Subscales: Worry about one's employment future; Reduction in my job's returns; Increase in the seriousness of incidences; Increase in the workload; Psychological and relationships impact; Changing job."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8830] "Subscales: Avoidance; Cognitive fusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8831] "Subscales: Sleep paralysis and hallucinations; Excessive daytime sleepiness (EDS) and nighttime sleep; Cataplexy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8832] "Subscales: Reinitiating Sleep; Going to Bed; Returning to Wakefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8833] "Constructs: Altruism; Pro-ecological Behavior; Sustainable Travel Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8834] "Constructs: Community Attachment; Environmental Attitude; Cultural Attitudes; Economic Gain; Involvement; Economic Perceptions; Environmental Perceptions; Socio-Cultural Perceptions; Support for Tourism Development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8835] "Subscales: Career Maturity (Concern; Planning; Autonomy); Job Search Effort; P-O Fit Perceptions; Perceived Supervisor Support (PSS); Perceived Coworker Support (PCS); Organizational Commitment; Turnover Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8836] "Subscales: Confidence; Responsibility; Assurance; Empathy; Tangibles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8837] "Subscales: QbActivity; QbInattention; QbImpulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8838] "Factors: Re-experiencing (R); Avoidance (A); Negative Affect (NA); Anhedonia (An); Externalizing Behaviors (EB); Anxious Arousal (AA); Dysphoric Arousal (DA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8839] "Factors: Resourcefulness; Connectedness and integration; Systems thinking; Goal structure; Tension management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8840] "Subscales: Practices; Impact; Challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8841] "Subscales: Attitudes; Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8842] "Subscales: Presence of the meaning of sex (MOS-P); Search for the meaning of sex (MOS-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8843] "Subscales: HPV Knowledge; HPV Vaccination Knowledge; HPV Vaccination Intentions and Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8844] "Subscales: Verbal humor; Non-verbal humor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8845] "Subscales: Helplessness; Acceptance; Perceived Benefit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8846] "Subscales: Lack of Safety; Negative Cognitions; Difficulty Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8847] "Subscales: Attitude; Perceived Usefulness; Perceived Relative Advantage; Social Influence; Perceived Security; Trust; Personal Innovativeness in IT; Intention to Adopt a Mobile Wallet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8848] "Factors: Not Self; Active Karmic View; Interconnectedness; Meditation; Punishing Karmic View; Embracing Contradiction; Wu-Wei/Non-Interference; Zi-Ran; Cyclic Nature; Tranquility; Propriety Pressure; Intrinsic Propriety; Relational Hierarchy; Interpersonal Harmony; Conforming to Social Norms; Self-Cultivation; Leading by Example; Human Heartedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8849] "Subscales: Reflective practices; Self-directed learning competencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8850] "Subscales: Psychological demands; Control; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8851] "Constructs: Perceived comprehensibility; Perceived specificity; Perceived exaggeration; Perceived tentativeness; Open-ended; Epistemic belief: Perceived reliability of knowledge; Epistemic belief: Perceived justification for knowing; Internet anxiety; Website familiarity; Attitude toward reviews."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8852] "Subscales: Being reliable; Respecting uniqueness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8853] "Factors: Self-presentational desire; Advertising acceptance; Advertising engagement; Social networking involvement; Social networking norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8854] "Subscales: Clinical assessment and pharmacological knowledge; Supplementary prescribing and evidence-based practice; Independent prescribing and patient education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8855] "Constructs: Telecommuting System Use; Telepresence; Social presence; Leader Member Exchange; Perceived Organizational Support; Organizational Commitment; Job Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8856] "Subscales: Number of Atypical Responses; Therapist Rating of Magnitude; Child Rating of Magnitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8857] "Factors: Emotion; Cognition; Dexterity; Mobility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8858] "Constructs: Linkages to community resources; Self-management support; Decision support; Delivery system design; Clinical information systems; Organization of the health system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8859] "Dimensions: Pain; Fatigue; Nausea; Sleep; Work; Social Support; Sadness; Future Health Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8860] "Factors: Communication; Sensitivity; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8861] "Subscales: Teamwork and Communication; Ethics and Attitudes; Roles and Responsibilities; Reflection and Learning; Patient-Centered Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8862] "Factors: Caregiver support CS); Disease-related support/medical care (DSMC); Family interactions (FI); Well-being (WB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8863] "Subscales: Dignity; Indignity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8864] "Subscales: Lapses (LP); Disorganization-errors (DE); Temporal-errors (TE); Procedural-violations (PV); Non-compliance-violations (NV); Risks (RK)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8865] "Subscales: Communication; Sensitivity; Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8866] "Constructs: Positive attitude toward GBA cities; Situational concerns (Relationship concerns; Financial concern; Lifestyle concern; Child education concern); Employment concerns; Visiting GBA cities; Intention to migrate to a GBA city."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8867] "Factors: Government/political ties; Regulatory ties; Local community ties; Business ties; Corporate proactive sustainability strategies; Corporate responsive sustainability strategies; Financial resource slack; Market performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8868] "Constructs: Institutional pressure; Coercive pressure; Mimetic pressure; Normative pressure; Environmental management strategy; Environmental management accounting; Organizational performance; Environmental performance; Economic performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8869] "Subscales: Oral defense; Hygiene; Spoilage; Body fluids; Death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8870] "Subscales: Lack of internalization (INL); Partial ego internalization (INPE); Partial guilt internalization (INPG); Identified internalization (INID); Integrated internalization (ININ)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8871] "Subscales: Competence Doubt; Working Style; Alienation; Other-Self Divergence; Frugality; Need for Sympathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8872] "Factors [Subscales]: Negative Affectivity (NA) [Discomfort; Fear; Anger/Frustration; Sadness; Soothability]; Effortful Control (EC) [Inhibitory Control; Low-intensity Pleasure; Perceptual Sensitivity; Attentional Focusing]; Extraversion/Surgency (ES) [Positive Anticipation/Approach; High-intensity Pleasure; Impulsivity; Activity Level; Smiling/Laughter; Shyness]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8873] "Factors: Tactics of interpersonal manipulation; Cynical view of humanity; Lack of morality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8874] "Subscales: Tactics; Views."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8875] "Factors: Tactics of interpersonal manipulation; Cynical view of humanity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8876] "Factors: Academic Related Stressors (ARS); Teaching and Learning Related Stressors (TLRS); Staff and Students Related Stressors (SSRS); Intrapersonal and Expectations Related Stressors (IERS); Patients Related Stressors (PRS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8877] "Factors: Threat; Deprivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8878] "Subscale: Emotional support; Blame/doubt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8879] "Factors: Emotion Regulation; Social Skills; Equanimity; Distress Tolerance; Taking Responsibility; Interpersonal Effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8880] "Subscales: Quality of life; Lower extremity function; Upper extremity function; Cervical spine function; Bladder function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8881] "Factors: Gender-based victimization; Sexual orientation victimization; Unwanted sexual attention; Sextortion; Revenge porn."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8882] "Factors: Voice Humanness; Understanding Humanness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8883] "Subscales: Being Caught in the Mind; Mindful Responding; Body-Anchored Presence; Attention to and Awareness of the Other Person."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8884] "Subscales: Communication Competency; Fidelity; Systems Trust; Confidentiality; Fairness; Global Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8885] "Subscales: Communication Competency; Fidelity; Systems Trust; Confidentiality; Fairness; Stigma-based Discrimination; Global Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8886] "Subscales: Communication Competency; Fidelity; Systems Trust; Confidentiality; Fairness; Stigma-based Discrimination; Global Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8887] "Subscales: Observe; Describe; Distract; Autopilot; Nonjudge; Nonreact."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8888] "Subscales: Warmth; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8889] "Factors: Non-planning impulsivity; Motor impulsiveness; Lack of self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8890] "Subscales: Attention; Inhibition/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8891] "Subscales: Parental concerns; Parenting practices; Stressors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8892] "Subscales: Prosocial; Antisocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8893] "Subscales: Trust and Confidence (TC); Lack of Perspective (LP); Positive Future Orientation (PFO); Relationships and Personal Value (RPV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8894] "Factors: Corporate moral responsibility; Consumer moral responsibility; Corporate hypocrisy; Consumer attitude; Engagement intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8895] "Factors: Awareness of climate change (AWARENESS); Perceived climate risk exposure (RISK EXP); Internally oriented climate action (INTERNAL ACT); Supply-chain climate action (SUPPLYCHAIN ACT); Risk tolerance (RISK TOLERANCE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8896] "Constructs: Proactive environmental strategy; Internal green integration; Greening the supplier; Environmental collaboration with supplier; Environmental performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8897] "Subscales: Green new product development; Green supply chain management; Green production; Waste management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8898] "Subscales: Engine levels; Speedometer; Touch tools; Mouth tools; Move/body; Listen tools; Look tools."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8899] "Constructs: We-intention; Social identity (Cognitive social identity; Affective social identity; Evaluative social identity); Media richness (Immediacy of feedback; Multiplicity of cues; Language variety; Personal focus)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8900] "Factors: Role ambiguity (RA); Role conflict (RC); Job satisfaction (JSA); Task-oriented social media use (TSM use); Relationship-oriented social media use (RSM use); Employee creativity (ECR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8901] "Factors: Involvement; Innovation; Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8902] "Components: General use of SDM; Incongruent patient choice; External evaluation. Domains: Necessity in practice; Patient desirability; Effective resource use; Confidence in skill; Importance despite clinical preference; Comfort with incongruent patient choice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8903] "Factors: Support through additional language programs (ALP); Language education embedded into daily routines (LEI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8904] "Subscales: Verbal test; Figural test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8905] "Subscales: Verbal problems; Figural problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8906] "Subscales: Verbal; Figural."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8907] "Subscales: Connectedness; Government and infrastructure; Caring for others; Civil rights; Legal rights; Choice; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8908] "Subscales: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8909] "Subscales: Emotional empathy; Cognitive empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8910] "Subscales: Disorders of initiating and maintaining sleep (DIMS); Sleep breathing disorders (SBD); Disorders of arousal (DA); Sleep-wake transition disorders (SWTD); Disorders of excessive somnolence (DOES); Sleep hyperhidrosis (SHY)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8911] "Factors: Positive metacognitions concerning emotional and cognitive regulation and social advantages of smartphone use (MSUQ-PM); Negative metacognitions about the uncontrollability and cognitive harm of smartphone use (MSUQ-NM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8912] "Subscales: Seizures; Impact of Medication Side Effects; Impact of Comorbidities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8913] "Subscales: Continuity; Ownership; Responsibility; Curiosity; Education; Help-Seeking; Blame; Cause; Optimism; Impact; Fear; Liking; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8914] "Subscales: Child impact scale (CIS); Family impact scale (FIS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8915] "Factors: Basic needs (BN; Physical Needs, Emotional Needs, Self-Security); Activities of daily living (Self-care; Connect, Time for Self)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8916] "Factors: Fluid and rhythmic movement; Emotional expression in movement; Pattern of foot placement; Lack of stability and weightiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8917] "Subscales: Family; Retention; Curiosity; Food Enjoyment; Morality; Sex; Social Participation; Idealism; Dominance; Structure; Physical Exercise; Status; Autonomy; Revenge; Social Acceptance; Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8918] "Subscales: Subjective Success; Positive Effects; Negative Effects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8919] "Factors: Withdrawal; Loss of control; Increase of priority; Negative consequences; Mood modification; Salience; Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8920] "Subscales: Emotional domain; Personal and social life domain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8921] "Constructs: Online gaming addiction; Psychological ownership; Primary control; Secondary control; Achievement motivation; Social motivation; Escapism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8922] "Factors: Personal development; Desire to win; Enjoyment of competition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8923] "Scale: Perceived Infectability (“Personal Susceptibility”)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8924] "Subscales: Fears of getting sick; Fears that others may get sick; Fears of concrete limitations; Fears of not being able to meet the basic needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8925] "Factors: Physical Infrastructure; Family Support; Social Support; Self-care; Threat Perception; Social Pressure; Information; Legitimacy of Authorities; Precautionary Behaviors Against COVID; Staying at home; Hedonic Wellbeing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8926] "Factors: Coronavirus Fear; Perceived Coronavirus Prevalence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8927] "Factors: Perceived knowledge; Perceived knowledge insufficiency; Risk perception; Affective risk response; Attitude toward seeking; Informational subjective norms; Perceived seeking control; Seeking intention; Information avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8928] "Factors: General; Somatic; Cognitive/affective; Concentration/motor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8929] "Categories: Complexity; Conflicts; Insecurity; Invasion; Overload; Safety; Social environment; Usefulness; Technical support; Unreliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8930] "Subscales: Physical outcomes; Psychological outcomes; Social outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8931] "Subscales: Past life satisfaction; Present life satisfaction; Future life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8932] "Factors: Worry; Opposition; Calm; Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8933] "Factors: Accepting changes; Decision making; Creating Transparency; Collaboration; Reflection; User centricity; Iteration; Testing; Self-organization; Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8934] "Factors: Planning; Effort; Self-Efficacy; Self-Monitoring; Reflection; Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8935] "Subscales: Social interaction; Self-efficacy; Embodiment; Intuitiveness; Wellbeing; Self-consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8936] "Factors: Planning; Self-Supervision; Effort; Reflection; Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8937] "Factors: Positive beliefs; Negative beliefs; Permissive beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8938] "Constructs: Affective Professional Commitment; Continuance Professional Commitment; Normative Professional Commitment; Intention to Improve Professional Capabilities; Action to Improve Professional Capabilities; Assurance; Reliability; Responsiveness; Empathy; Tangibles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8939] "Factors: Contamination; Responsibility for harm/injury; Unwanted thoughts; Symmetry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8940] "Subscales: Time management; Effort regulation; Cognitive strategy; Critical thinking; Help seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8941] "Constructs: Ethical Leadership; Distributive Justice; Procedural Justice; Interpersonal Justice; Informational Justice; Organizational Justice; Ethical behavior; Social Desirability Bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8942] "Subscales: Unnecessary tasks; Unreasonable tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8943] "Subscales: Body-image impairment; Social isolation; Discrimination; Internalized stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8944] "Subscales: [Three-Factor Model] Intrusive symptoms; Reflections on climate anxiety; Functional impairment; [Two-Factor Model] Cognitive impairment; Functional impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8945] "Factors: Sleep Scheduling; Non-Physical Stimulating Behavior Before Bedtime; Sleeping Environment; Physical Activity Before Bedtime."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8946] "Factors: Discovering and Understanding Your Child; Knowing Your Rights; Helping Your Child Develop and Learn; Communicating Your Child’s Needs; Integrating the Community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8947] "Subscales [Factors]: Family Outcome Indicators [Understanding strengths; Knowing rights; Helping child develop and learn; Having support systems; Accessing the community]; Helpfulness Indicators [Knowing rights; Communicating child’s needs; Helping child develop and learn]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8948] "Subscales: Computer-related knowledge; Cognitive ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8949] "Factors: Citizenship safety communication (CSC); Self-needed safety communication (SSC); Participatory safety communication (PSC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8950] "Dimensions: Moral emotions; Moral cognitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8951] "Subscales: Altered visual perceptions submodality; Altered body perceptions submodality; Altered auditory perceptions submodality; Automatic mental processes modality; Actions and behaviors modality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8952] "Factors: Forward focus; Trauma focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8953] "Subscales: Single-task gait velocity; Dual-task gait velocity; Single-task digit span; Dual-task digit span."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8954] "Subscales: Defender; Passive; Pro-bully."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8955] "Subscales: Intentional awareness (IA); Disinhibition (DI); Attentive eating (AE); Emotional response (ER); Distraction (DT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8956] "Subscales: Conceptions of the Academic Elite; Conceptions of the Ordinary People; Demands for Decision-Making Sovereignty; Demands for Truth-Speaking Sovereignty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8957] "Subscales: Intention to quit; Turnover thinking; Opportunities for new job."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8958] "Factors: Pro-bully behavior; Outsider behavior; Defender behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8959] "Subscales: Emotional Support (ES); Interpersonal Skills (IS); General Coping (GC); Spirituality (S); Personal Growth and Autonomy (PGA); Global Affect (GA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8960] "Subscales: Processing Speed Test; Working Memory Test; Visual Processing Test; Logic and Reasoning Test; Auditory Processing Test (Sound blending task; Sound deletion task; Sound segmenting task); Word Attack Test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8961] "Factors: Career Identity; Career Decision; Expanded Exploration; Professional Self-Efficacy; Professional Locus of Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8962] "Subscales: Adherence; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8963] "Factors: Negative self-concept; Anxious appearance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8964] "Factors: Job Success; Personal Success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8965] "Subscales: Significant others; Family; Friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8966] "Factors: Home-school communication; School-based activities; Home-based activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8967] "Factors: Emotional regulation; Emotional awareness; Creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8968] "Factors: Defense; Poor Parenting; Inadequate Environment; Emotional Reaction; Evil/Madness; Adolescence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8969] "Constructs: Ethical leadership; Employee creativity; Organizational ethical climate (OEC); Leader-member exchange (LMX)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8970] "Subscales: Conservative/authoritarian; Progressive/democratic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8971] "Factors: Salience/withdrawal; Conflict; Mood modification; Tolerance/relapse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8972] "[Factors were unnamed.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8973] "Subscales: Readiness to explore; Assignment alacrity; Negative-reaction tendency; Support dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8974] "Constructs: Attitude; Habit; Hardiness; Perceived Severity; Perceived Vulnerability; Subjective Norm; Intention to Comply."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8975] "Constructs: Perceived usability; Interactivity; SNS games involvement; Online self-presentation norms; Desire for online self-presentation; Intention to purchase virtual goods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8976] "Subscales: Team member boundary-spanning behavior; Information sharing; Team goal interdependence; Team creativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8977] "Subscales: Autonomy Satisfaction; Autonomy Frustration; Relatedness Satisfaction; Relatedness Frustration; Competence Satisfaction; Competence Frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8978] "Components: Teacher Support; Adaptive Cognition; Adaptive Behaviour; Peer Support; Maladaptive Factors; Parent Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8979] "Subscales: Dispositional benign envy; Dispositional malicious envy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8980] "Subscales: Appearance; Fitness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8981] "Subscales: Dysregulation-Directed Knowledge; Regulation-Directed Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8982] "Subscales: Dispositional benign envy; Dispositional malicious envy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8983] "Factors: Negative Affectivity; Detachment; Antagonism; Disinhibition; Psychoticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8984] "Subscales: Mindless eating; Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8985] "Subscales: Re-experiencing (Rexp); Avoidance (Avoid); Negative alterations in cognitions and mood (NACM); Anhedonia (Anhed); Dysphoric arousal (DysphA); Anxious arousal (AnxA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8986] "Subscales: Internal awareness; External awareness; Acting with awareness; Decentering and non-reactivity; Openness to experience; Relativity of thoughts; Insightful understanding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8987] "Subscales: Parental investment; Authoritative parenting; Authoritarian parenting; Child anxious symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8988] "Factors: Positive Perception; Negative Perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8989] "Subscales: Responses to Moral Adversity; Personal Integrity; Moral Efficacy; Relational Integrity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8990] "Constructs: Perceived ease of use; Computer self-efficacy; Technological complexity; Facilitating condition; Perceived enjoyment; Perception of external control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8991] "Factors: Intrusive thoughts; Dissociative experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8992] "Constructs: Self-construal (interdependent construal; individual construal; independent construal); Level of usage; Advertisement involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8993] "Factors: Emotional and functional value; Social value (friends); Monetary value; Social value (parents); Curiosity value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8994] "Factors: Core Generic Skills (CGS); Communicative Expression Skills (CES); Practical Hands-on Skills (PHS); MICE Professional Skills (MPS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8995] "Subscales: Higher‑order thinking; Real‑world relevance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8996] "Subscales [Factors]: Method checklist; Function checklist [Emotion regulation; Attention seeking; Social avoidance]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8997] "Subscales: Presence; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8998] "Subscales: Perspective Taking; Online Simulation; Emotion Contagion; Proximal Responsivity; Peripheral Responsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8999] "Subscales: Behavioral Inhibition System (BIS); Flight; Fight; Freeze; Behavioral Activation System (BAS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9000] "Subscales: Appeal; Requirements; Openness; Divergence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9001] "Factors: Interference with freedom; Transmission of COVID-19 virus; Anxiety/apprehension; Changes in lifestyle factors; Education routine; COVID-19-related media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9002] "Factors: General Factor; Aggression; Reality Testing; Moral Functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9003] "Subscales: Externalizing; Internalizing; Prosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9004] "Subscales: Internal domain - Self confidence; Negative cognition; Empathy/Tolerance; Emotional insight; Social skills; Family domain - Connectedness; Availability; Peers domain - Connectedness; Availability; School domain - Supportive environment; Connectedness; Community domain - Connectedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9005] "Constructs: Actual behavior (AB); Behavioral intention (BI); Attitude (ATT); Self-efficacy (SE); Self-regulation skills (SRL); Subjective norms (SN)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9006] "Subscales: Cyber privacy; Computer ethics; Academic integrity; Intellectual property; Netiquette; Cyber safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9007] "Subscales: Sense of moral burden; Moral strength."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9008] "Subscales: General Sound Intolerance Symptoms; Anger Reaction: Presence; Irritation Reaction: Presence; Disgust Reaction: Presence; Anxiety Reaction: Presence; Physical Reaction: Presence; Anger Reaction: Anticipation; Irritation Reaction: Anticipation; Disgust Reaction: Anticipation; Anxiety Reaction: Anticipation; Physical Reaction: Anticipation; Recognition of Excess; Recognition of Disproportionality; General Dysregulation; Behavioral Dysregulation; Cognitive Dysregulation; Emotional Dysregulation; Reactive Avoidance Behavior; Anticipatory Avoidance Behavior; Distress; Functional Impairment. Factors: Aversive reactions to the presence; Anticipation of sounds; Clinical insight; Dysregulation; Avoidance behavior; Clinical significance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9009] "Subscales: Isolation and mental health; Virus; Academic; Living situation; Financial; Concerns about racism and prejudice; Family and caregiving; Healthcare access."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9010] "Components: Family & Friends; Work Colleagues; Healthcare Workers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9011] "Factors (Facets): Intrapersonal (Perseverance and Determination; Self-Efficacy and Independence; Purpose and Meaning; Positive Perspective); Interpersonal (Sense of Community; Family Support; Friend/Neighbour Support); Spiritual (Faith; Prayer); Experiential (Previous Adversity; Proactivity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9012] "Subscales: Positive belief; Negative belief; Lack-of-access belief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9013] "Factors: Enjoyment; Ease of use; Escapism; Loyalty intention toward the traditional retailer; Personalization; Satisfaction with the app user experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9014] "Subscales: High-volume analytic problem-solving; Low-volume analytic problem-solving; Rapid problem-solving; Practical problem-solving; Ambivalent acquiescence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9015] "Subscales: Amotivation; External Regulation; Introjected Regulation; Integrated Regulation; Intrinsic Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9016] "Subscales: Recovery; Triad; Organization of care; Team culture and vision; Professionalization; Healing environment; Safety and coercion; Team structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9017] "Subscales: Knowledge; Attitude; Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9018] "Subscales: Avoidance behavior; Control behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9019] "Factors: Insight into company problems and their causes; Company values employees’ ideas; Idea communication; Interest in company improvements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9020] "Domains: Carbohydrate recognition; Carbohydrate-counting in individual food items; Carbohydrate-counting in meals; Nutrition information panel reading; Use of insulin-to-carbohydrate ratio; Calculation of whole meal insulin dose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9021] "Factors: Attitude and Subjective Norm; Perceived External Behavior Control; Perceived Internal Behavior Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9022] "Factors: Cardiac Risk Factors; Adherence to Therapy; Symptom Recognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9023] "Factors: Meaning of the Significant Other; Being Present; Coping and Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9024] "Factors: Anergia and anhedonia; Death sadness; Other death; Death emptiness; Death vacuum."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9025] "Factors: Death Sadness; Anergia; Existential Vacuum; Anhedonia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9026] "Subscales: Instrumental assistance; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9027] "Factors: Responsiveness; Reliability; Personalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9028] "Subscales: Inhibit; Shift; Emotional control; Self-Monitor; Initiate; Working memory; Plan/organize; Task Monitor; Organization of Materials. Factors: Metacognition; Behavioral Regulation; Emotional Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9029] "Factors: Resource manipulation/violence (RM/V); Commitment manipulation (CM); Defection threat (DT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9030] "Factors: Positive symptoms; Negative symptoms; Disorganization symptoms; General symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9031] "Factors: Importance of positional goods; Interest in positional goods; Status symbol role of positional goods; Willingness to buy positional goods."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9032] "Domains: Cognitive proficiency; Technical proficiency; Ethical proficiency; Health information literacy. Indicators: Health information system knowledge; Health information system skills; General computer skills; Office application skills; Network skills; Security and Legal Knowledge; Health information access; Health information management; Health information integration; Health information evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9033] "Factors: Learning and making connections; Analyzing thoughts and feelings; Facilitator skill in conducting the debriefing; Appropriate facilitator guidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9034] "Subscales: Frontal-subcortical; Cortical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9035] "Subscales: Physical environment; Social support; Attitudes. Factors: Home; School; Community; Transport; Family and friends; Teachers and therapists; Classmates."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9036] "Constructs: Belief in Conspiracy Theory (BC); Awareness (AW); Perceived Usefulness (PU); Perceived Ease of Use (EU); Attitude toward behavior (AB); Subjective Norm (SN); Acceptance of COVID-19 vaccine (AV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9037] "Subscales: Health Provider Relationship/Communication; Treatment/Adherence/Barriers; Social/Family Support; MS Knowledge and Information; Health Maintenance Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9038] "Domains: Cognitive (Subdomains: Disorientation; Disorganized thinking); Level of Consciousness; Inattention; Psychiatric-Behavioral (Subdomains: Delusion; Inappropriate behavior; Hallucination/perceptual disorder/distortion); Emotional Dysregulation (Subdomains: Apathy/withdrawal and anger/hostility/irritability); Psychomotor Features (Subdomains: Psychomotor agitation; Psychomotor retardation); Functional (Subdomains: Sleep disorder with its own subdomains of Insomnia; Hypersomnolence; sleep–wake cycle reversal; and decline or low performance in self-care activities with its own subdomains of Poor postural control; Poor oral intake; Self-care/appearance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9039] "Subscales: Implications; Social behavior; Self-control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9040] "Factors: Worry; Sexual Practices; Condom Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9041] "Subscales: Prevention of fall; Prevention of interruption or interference in treatment; Providing a safe environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9042] "Factors: Meaningfulness; Self-actualization; Community (professional); Community (familiar)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9043] "Subscales: Dietary Restraint; Eating Concern; Appearance Concern; Shape and Weight Overevaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9044] "Subscales: Break; Overadhere."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9045] "Subscales: Connectedness; Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9046] "Subscales: Perceived Severity; Perceived Susceptibility; Perceived Barriers (Clinical barrier; Access barrier; Registration barrier; Religion barrier); Perceived Benefits (Individual benefits; Community benefits); Attitude; Subjective norms; Trust (Vaccine; Information)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9047] "Factors: Social; Coping; Confidence; Taste; Enhancement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9048] "Factors: Pain quality; Sensory examination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9049] "Components: Symptoms; Signs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9050] "Subscales: Perinatal bereavement support knowledge; Perinatal bereavement support skills; Self-awareness; Organizational support [Factors for subscales were unnamed]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9051] "Factors [Sub-factors]: Handedness [Fine motor/ballistic movements; Expressive/instrumental movements]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9052] "Factors: Job Satisfaction; Vigor at Work; Absorption at Work; Affective Organizational Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9053] "Factors: Engagement; Job satisfaction; Affective organizational commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9054] "Subscales: Develop an educational institution for all persons; Promote inclusive values; Organize support to attend to diversity; Build a collaborative community; Manage an inclusive educational process; Mobilize resources for inclusive formation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9055] "Factors: Orientation; Long-term memory/Concentration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9056] "General Factor [sub-factors]: Self-care [Professional support; Professional development; Life balance; Cognitive awareness; Daily balance]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9057] "Factors: Context for difference in perspective; Self-attributes; Outcomes of cultural humility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9058] "Factors: Social Skills; Group Processing; Positive Interdependence; Stimulating Interaction; Individual Responsibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9059] "Subscales: Suicidal ideation (ID); Emotional coping strategies (EAE); Self-esteem (Au); Perceived social support (ASP); Expectations towards the future (EHF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9060] "Factors: Information technologies usage skills in the classroom; Education material design and usage skills using information technologies; Information technology usage skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9061] "Factors: Theoretical and practical reasoning; Grasping the condition by observation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9062] "Factors: Severity; Susceptibility; Response."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9063] "Factors: Concern; Control; Curiosity; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9064] "Subscales: Positive emotions; Negative emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9065] "Subscales: Image agreement (IA); Picture-name agreement (PNA); Familiarity (FAM); Visual complexity (VC); Age of acquisition (AoA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9066] "Factors: Victimization (Emotional victimization; Verbal victimization; Physical victimization); Exposure to intimate partner violence (IPV) (Emotional IPV; Verbal IPV; Physical IPV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9067] "Factors: Psychosis; Negative/cognitive impairment; Emotional distress; Disorganization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9068] "Factors: Fear of Abandonment (FA); Negative Affect (NA); Boundary Violations (BV); Sex as Control (SC); Emotional Distancing (ED); Affect Regulation (AR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9069] "Subscales: Functional impact; Physical impairment; Emotional impairment. Factors: [Unnamed]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9070] "Factors: Open-engagement; Non-pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9071] "Constructs: Personalization; Learning; Branding uncertainty; Performance uncertainty; Transaction frequency; Searching costs; Monitoring costs; Adaptation costs; Number of users; Perceived complementarity; Behavioral intention; Switching costs (Searching costs; Monitoring costs; Adaptation costs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9072] "Subscales: Amnestic Dissociation; Depersonalization; Absorption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9073] "Constructs: Personal Focus; Immediate Feedback; Language Variety; Multiple Cues; Social Presence; Telepresence; Synchronicity; Two-way Communication; Active Control; Reciprocal Favor; Relationship Harmony; Mutual Understanding; Online Gamer Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9074] "Factors: Overall Gaming Team Participation; Gaming Norm Compliance; In-Game Relational Cohesion; In-Game Flow; Gamer Conative Loyalty; Gamer Action Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9075] "Subscales: Ability; Frequency. Factors: Attention; Working Memory; Retrieval; Semantic Memory; Episodic Memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9076] "Subscales: Psychological capability; Physical opportunity; Social opportunity; Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9077] "Subscales: Collect; Care plan; Collaborate; Cultural and social factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9078] "Subscales: Reliance on others and technology; Lack of time and interruptions; Ward culture; Lack of confidence; Lack of nursing role models; Lack of influence on patient care; Specialty area."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9079] "Factors: Relying on Others and Technology; Time Limitations and Interruptions; Ward Routines; Lack of Confidence; Lack of Nursing Role Models; Lack of Influence on Patient Care; Specialization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9080] "Subscales: Training and evaluation; Career planning and development; Rewards scheme; Recruitment and selection; Appraisal system."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9081] "Subscales: Respect for right to information and decision making; Providing fair care; Providing benefit-not harming; Respect for patient values and choices; Attention to privacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9082] "Factors:"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9083] "Constructs: Novelty; Relaxation; Self-Actualization; Self-Esteem; Intrapersonal Constraints; Interpersonal Constraints; Structural Constraints; Negotiation - Improving Intrapersonal Constraints; Negotiation - Improving Interpersonal Constraints; Negotiation – Improving Structural Constraints; Perceived Behavioral Control; Self-Construal – Autonomy; Self-Construal – Relatedness; Behavioral Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9084] "Subscales: Threat appraisal (risk perceptions); Maladaptive rewards; Efficacy; Response costs; Protection Motivation; Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9085] "Constructs: Accommodation; Connection; Physical; Self-loss; Time; Vastness; Satisfaction; Recommendation; Return."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9086] "Constructs: Burnout; Life satisfaction; Perceived organizational support; Quality of work life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9087] "Constructs: Communication; Place familiarity; Innovation; Marshaling; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9088] "Constructs: Member Credibility; Blockchain Certificate; Structural Assurance; Trust in Members; Trust in Technology; Trust in Platform; Behavioral Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9089] "Subscales: Comprehension; Reasoning; Retention; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9090] "Subscales: Competence and experience; Attractiveness; Control; Moral judgment; Capacity to adapt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9091] "Subscales: Perceptual; Verbal expression; Auditory comprehension; Reading; Writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9092] "Subscales: Interprofessional Teamwork and Team-Based Practice; Roles/Responsibilities for Collaborative Practice; Patient Outcomes from Collaborative Practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9093] "Subscales: Roles and responsibilities for collaborative practice; Patient outcomes from collaborative practice; Interprofessional teamwork and team-based practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9094] "Subscales: Immigrant scale 1; Immigrant scale 2; Refugees scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9095] "Factors: Transactional distance between student and instructor; Transactional distance between student and content; Transactional distance between student and student; Transactional distance between student and technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9096] "Subscales: Openness to multiple perspectives; Openness to new learning; Openness to collaboration; Openness to sharing; Openness to change; Openness to diversity and inclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9097] "Subscales: Skills schools must target to qualify students with disabilities for work; Practical strategies to improve training for students with disabilities; Employers' contribution to the training and employment of students with disabilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9098] "Factors: [Victim] Controlling behavior; Verbal aggression; Sexual abuse; Physical abuse; [Perpetrator] Physical Abuse; Verbal/Emotional Abuse; Sexual abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9099] "Constructs: Interest type curiosity (ITC); Deprivation type curiosity (DTC); Presence (P); Control and active learning (CAL); Positive emotional engagement (PEE); Negative emotional engagement (NEE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9100] "Factors: Resistance; Confidence; Pleasure; Relaxation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9101] "Factors: Confirmation; Invalidation; Indifference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9102] "Factors: General Occupational Depression factor; Anhedonic-Somatic bifactor; Dysphoric bifactor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9103] "Constructs: Game-brand fit; Perceived interactivity; Involvement; Escapism; Entertainment; Receptiveness; Attitude toward advergame; Attitude toward brand; Brand familiarity; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9104] "Scales: Valuing physics; Physics stereotypes; Picture child in physics; Parent enjoyment of physics; Gender stereotypes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9105] "Factors: Organizational/Management; Individuals/Nonmanagement; Online."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9106] "Factors: Lack of femininity; Lack of sociability; Lack of gaming competence; Reliance on men in gaming; Gaming preference."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9107] "Factors: Confidence; Constancy; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9108] "Scales: Academic Perceptions-Expectations Questionnaire (QPA-EXP; Almeida et al., 2017); Job Satisfaction Perceptions Questionnaire (QPSE; Alves, 2007); Self-efficacy in the Transition to Work (AETT; Vieira & Coimbra, 2005); Facilitating Variables in the Transition to Employment (VFTE; Vieira, 2012); Inhibiting Variables in the Transition to Employment (VITE; Vieira, 2012). Subscales: International Mobility; Personal and Social Development; Training for Employment and Career; Dynamics in the Workplace; Benefits Associated with the Career; Adaptation to Work; Emotional Self-Regulation in the Face of Job Search; Job Search Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9109] "Factors: Social identification; Homophily; Confirmation bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9110] "Subscales: Good experiences; Bad experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9111] "Factors: Agreeableness; Extroversion; Neuroticism; Conscientiousness; Openness to Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9112] "Factors: Functionality; Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9113] "Factors: Bodily integrity; Fear of death; Familial beliefs; Altruism; Medical mistrust; Trust in the health institution; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9114] "Subscales: Everyday; Scholarly; Performance; Science; Artistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9115] "Cognitive Engagement; Behavioral Engagement; Emotional Engagement; Social Engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9116] "Constructs: Attitude (A); Direct Social Norms (DSN); Indirect Social Norms (ISN); Perceived Behavioral Control (PBC); Perceived Threat (PT); Intention to be Vaccinated (INT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9117] "Subscales: Adventurer; Fellow traveler; Leader; Drifter; Misfit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9118] "Factors: Stress communication; Emotion-focused supportive dyadic coping; Problem-focused supportive dyadic coping; Delegating dyadic coping; Negative dyadic coping; Problem-focused common dyadic coping; Emotion-focused common dyadic coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9119] "Factors: Community Resilience; Community Inequity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9120] "Factors: Intimidation; Shaming and blaming; Paternalism; Neglect; Financial exploitation; Physical behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9121] "Factors: Spousal support and control; Medical support and environment; Labor pain and distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9122] "Subscales: Initiative; Basic skills; Interpersonal relationships; Teamwork and social skills; Adult networks and social capital; Stress; Social exclusion; Inappropriate adult behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9123] "Scales [Subscales]: Post-traumatic stress disorder [Re-experiencing; Avoidance; Sense of threat]; Disturbances in self-organization [Affective dysregulation; Disturbances in relationships; Negative self-concept]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9124] "Subscales: Communication features; Professional features; Responsibility aspects; Physical-mental aspects; Social aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9125] "Factors: Dominance; Anti-egalitarianism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9126] "Subscales: Transformation leadership; Felt obligation to leader; Safety risk tolerance; Safety climate; Safety compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9127] "Factors: Sense of cost; Symbol of incompetence; Duty, of course; Environmental dependency; External criteria; Emphasis on efficiency; Important/necessary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9128] "Factors: Self-distance (SDi); Self-transcendence (STr); Freedom (Fr); Responsibility (Re)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9129] "Factors: Employment stability; Working environment; Skill development; Workforce diversity; Work-life balance; Tangible employee involvement; Empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9130] "Subscales: Physical and role functioning; Mental wellbeing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9131] "Factors: Employment stability; Working environment; Skill development; Workface diversity; Work-life balance; Tangible employee involvement; Empowerment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9132] "Subscales: Body Image Shame; Body Image Guilt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9133] "Factors: IFO-Night; IFO-Daytime."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9134] "Factors: Satisfaction with the SDM process; Adverse events with the disease modifying treatment (DMT); Convenience of the chosen-DMT; Information reliability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9135] "Subscales: Autonomy; Resilience; Self-Esteem; Purpose in Life; Enjoyment; Optimism; Curiosity; Creativity; Humor; Environmental Mastery; Vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9136] "Subscales: Autonomy; Resilience; Self-Esteem; Purpose in life; Enjoyment; Optimism; Curiosity; Creativity; Humor; Environmental mastery; Vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9137] "Subscales: Self-kindness; Common Humanity; Mindfulness; Self-judgment; Isolation; Over-identification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9138] "Factors: Finding your calling (FYC); Interacting cooperatively (IC)/Living authentically (LA); Managing stress (MS); Building networks (BN); Maintaining perspective (MP); Staying healthy (SH)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9139] "Factors: Nighttime sleep; Daytime sleepiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9140] "Subscales: Physical well-being; Psychological well-being; Social well-being; Educational well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9141] "Factors: Self-Efficacy; Physician-Patient Communication; Diet (indicators); Effects of Treatment; Social Support; Treatment; Strategies to Manage Barriers; Fighting Spirit (indicators); Improvement and Comorbidity (indicators); Oral Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9142] "Factors: Somatic symptoms; Non-somatic symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9143] "Factors: Outlook; Resilience; Sensitivity to context; Social Intuition; Self-awareness; Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9144] "Subscales: Use of social media; Research interest; General attitude towards OS; General OS knowledge; Attitudes against OS; Attitudes towards participation in OS; Openness in areas; Negative attitudes towards OS; OS dimension knowledge; OS knowledge rating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9145] "Subscales: Constructivism; Understanding; Relevance and real-life; Motivation and interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9146] "Factors: Ease of Excitation (EOE); Aesthetic Sensitivity (AES); Low Sensory Threshold (LST)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9147] "Constructs: Performance Expectancy; Social Influence; Facilitating Conditions; Perceived Credibility; Anxiety; Intention to Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9148] "Subscales: Beliefs; Emotions; Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9149] "Subscales: Nighttime Sleep (NS); Daytime Sleepiness (DS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9150] "Factors: Initiative; Basic Skills; Interpersonal Relationships; Teamwork and Social Skills; Adult Networks and Social Capital; Stress; Negative Peer Interactions; Social Exclusion; Inappropriate Adult Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9151] "Factors: Stimulating companionship; Help; Intimacy; Emotional security; Reliable alliance; Self-validation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9152] "Subfactors: Dependence; Perfectionism; Entitlement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9153] "Subscales: Parental Physical Maltreatment; Parental Verbal Abuse; Non-Verbal Emotional Abuse; Peer Emotional Abuse; Peer Physical Bullying; Sexual Abuse; Witnessing Violence To Siblings; Witnessing Interparental Violence; Emotional Neglect; Physical Neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9154] "Subscales: Competence; Confidence; Character; Caring; Connection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9155] "Subscales: Physical Well-Being (PWB); Social/Family Well-Being (SWB); Emotional Well-Being (EWB); Functional Well-Being (FWB); Colorectal Cancer Subscale (CCS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9156] "Subscales: Colorectal Cancer Subscale (CCS); Physical well-being (PWB); Functional well-being (FWB); Social/family well-being (SWB); Emotional well-being (EWB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9157] "Factors: Physical and role functioning; Pain; Fatigue; Emotional functioning; Social functioning; Systemic therapy side effects; Body image; Sexual functioning and enjoyment; Arm and breast symptoms; Endocrine therapy symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9158] "Subscales: Timeline-Chronic; Consequences Positive; Negative Aging Control Emotion and Consequences; Control Positive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9159] "Constructs: Perceived Learning (PL); Exploratory Technology Adaptation (R-TECH); Exploratory Task Adaptation (R-TASK); Exploitive Task Adaptation (I-TASK); Exploitive Technology Adaptation (I-TECH); Compatibility of Contextual (CC); Perceived Pressure (PP); Special Computer Self-Efficacy (CSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9160] "Factors: Programming Self-efficacy (S); Programming Utility (U); Social Needs (N); Perceptions of Programmers (P); Programming Interest (I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9161] "Subscales: Basic System Performance (BSP); Task-Technology Fit (TTF); Interface Design (ID); Navigation & Structure (NS); Information & Terminology (IT); Guidance & Support (GS); Satisfaction (SAT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9162] "Stages: Victim selection; Gaining access and isolation; Trust development; Desensitization to sexual content and physical contact; Post-abuse maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9163] "Factors: Person-centred attitude; Introspection for improvement; Symptom occurrence analysis; Application of various strategies; Awareness of symptoms; Caring for one’s own mind and body."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9164] "Subscales: Professional competencies; Emotional-cognitive characteristics; External support; Behavioral strategies; Cognitive strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9165] "Factors: Physical and Mental Reaction; Behavioral Manifestation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9166] "Factors: Navigating Gendered Racial Oppressive Contexts; Enhancing Intraracial Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9167] "Subscales: Sextortion victimization; Sextortion perpetration; Nonconsensual sexting victimization; Nonconsensual sexting perpetration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9168] "Subscales: Autonomy satisfaction; Autonomy frustration; Competence satisfaction; Competence frustration; Relatedness satisfaction; Relatedness frustration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9169] "Subscales: Positive Masculinity (MAS+); Negative Masculinity (MAS-); Positive Femininity (FEM+); Negative Femininity (FEM-)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9170] "Subscales: Fearlessness about Death (FAD); Pain Tolerance (PT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9171] "Factors: Openness; Self-Awareness; Ego-Less; Self-Reflection and Critique; Supportive Interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9172] "Factors: Positive feminine (Fem+); Negative feminine (Fem-); Positive masculine (Mas+); Negative masculine (Mas-)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9173] "Factors: Indirect Exposure School; Direct Exposure School; Indirect Exposure Community; Direct Exposure Community; Indirect Exposure Household; Direct Exposure Household; Indirect Exposure TV."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9174] "Factors: Observation of violence at school; Observation of violence in the neighborhood; Observation of violence at home; Observation of violence in the TV; Victimization at school; Victimization in the neighborhood; Victimization at home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9175] "Subscales: Subjective sport well-being; Social sport well-being; Psychological sport well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9176] "Subscales: Pronunciation significance; Interest in English sounds; Confidence in pronunciation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9177] "Factors: Sport emotional well-being; Sport social well-being; Sport psychological well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9178] "Subscales: Avoidant; Dependent; Passive-aggressive; Obsessive; Antisocial; Narcissistic; Histrionic; Schizoid; Paranoid; Borderline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9179] "Subscales: Self Insecurity; Meaning Insecurity; Relationship Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9180] "Factors: Social engagement; Sociability; Social etiquettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9181] "Subscales: Verbal received; Nonverbal received; Support received; Verbal expressed; Nonverbal expressed; Support expressed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9182] "Subscales: Support seeking; Information seeking; Internet as a supplement or alternative to offline medical care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9183] "Factors: Problem Solving; Mindfulness; Maladaptive Coping; Social Support; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9184] "Subscales: Personal Causation (PC); Societal Causation (SC); Affiliation (AFFIL); Solutions (SOLNS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9185] "Constructs: Ability-enhancing HR practices; Motivation-enhancing HR practices; Opportunity-enhancing HR practices; Knowledge Sharing Behavior; Innovation Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9186] "Constructs: Customer-driving capability; Supplier encroachment; Supplier relationship exploration; Distributor relational embeddedness; Customer service excellence; Firm performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9187] "Factors: Insistence; Threats; Dissemination of content."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9188] "Constructs: Promotion focus; Prevention focus; Supervisors' organizational embodiment; Psychological ownership; Work engagement; Emotional exhaustion; Depersonalization; Reduced personal accomplishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9189] "Factors: Face; Pursuit for global myth; Susceptibility to normative influence; Social aggrandizement; Attitudes toward Global consumer culture positioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9190] "Subscales: Entrapment; Loss; Social marginalization; Shame; Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9191] "Factors: Shame; Loss; Entrapment; Control; Social marginalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9192] "Subscales: Health anxiety and Sleeping/eating disturbance; Social distancing/home isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9193] "Factors: Access; Task-Technology-Fit; Perceived Ease of Use; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9194] "Subscales: Job satisfaction; Stress; Communication; Agency quality; Organizational support; Innovation & flexibility; Supervisory support (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9195] "Factors: Fear related to epilepsy; Fear related to epilepsy treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9196] "Subscales: Receptivity; Physical environment; Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9197] "Factors: Progressive orientation to prosecution; Traditional orientation to prosecution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9198] "Factors: Involvement in Food Allergy; Worry about Food Allergy; Autonomy Promotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9199] "Factors: Clarity; Congruency of Supervisors; Discussability; Sanctionability; Feasibility; Supportability; Transparency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9200] "Subscales: Well-being; Self-regulation; Commitment; Meaningful experience; Self-efficacy; Social contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9201] "Subscales: Bothersome Ocular Symptoms; Impact on Daily Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9202] "Factors: Cognitive and social skills; Affective skills; Sleep; Nutrition; Use of Screens; Physical exercise."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9203] "Factors: Anti-Hierarchical Aggression; Anti-Conventionalism; Top-Down Censorship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9204] "Subscales: Expressive empathy; Receptive empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9205] "Factors: Knowledge; Comfort; Approach; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9206] "Factors: Knowledge; Comfort; Approach; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9207] "Subscales: Severity; Susceptibility; Internal and external rewards; Response efficiency; Response cost; Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9208] "Factors: Virtual tolerance; Virtual problems; Virtual information; Virtual communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9209] "Subscales: Heard and Understood; Pain Help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9210] "Factors: Adaptability (A) Coordination (CO); Decision making (TD); Leadership (L); Skills interpersonal (ID); Communication (C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9211] "Subscales: Access to social care; Relational exclusion; Economic hardship; Social participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9212] "Factors: Clarity; Congruency of supervisors; Congruency of management; Feasibility; Supportability; Transparency; Discussability; Sanctionability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9213] "Factors: Grit; Teamwork; Resilience; Curiosity; Leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9214] "Subscales: Reduced responsibility of negative behavior; Facilitated communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9215] "Factors: Conservatism; Traditionalism; Authoritarianism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9216] "Subscales: Speech hearing; Spatial hearing; Qualities of hearing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9217] "Factors: Clarity (Claridad); Consistency (Consistencia); Constraints (Restricciones); Consequences (Consecuencias)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9218] "Subscales: Physical; Psychosocial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9219] "Categories: Uses eye-pointing; Shifts gaze to face; Fixes, disengages and shifts gaze; Fixes gaze; Other visual behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9220] "Factors: Although factors were unnamed by the authors, it was observed that the items with preferential loading were “patient care equipment” and “mobility” in the first factor, “fall history” and “elimination, bowel and urine” in the second factor, “age” and “medications” in the third factor, and “cognition” in the fourth factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9221] "Subscales: Practical management; Psychological aspect; Services and assistance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9222] "Factors: Emotional well-being; Functional engagement; Recovery/resilience; Peritraumatic experience; Physical well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9223] "Subscales: Q1 Cervical spine function; Q2 Upper extremity function; Q3 Lower extremity function; Q4 Bladder function; Q5 Quality of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9224] "Subscales: Conceptualization; Mental Flexibility; Motor Programming; Sensitivity to Interference; Inhibitory Control; Environmental Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9225] "Factors: Director evaluation; General evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9226] "Subscales: Treated Differently; Blame and Judgement; and Identity Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9227] "Subscales: Student Cohesiveness; Teacher Support; Equity; Young Adult Ethos; Formative Assessment; Assessment Criteria; Involvement; Task Orientation; Personal Relevance; Collaboration; Differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9228] "Subscales: Awareness; Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9229] "Subscales: Interpersonal; Community; Occupational; Physical; Psychological; Economic; Overall."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9230] "General Factor: Experiential Avoidance. Specific Factors: Behavioral Avoidance; Distress Aversion; Procrastination; Distraction/Suppression; Repression/Denial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9231] "Domains: Intellectual Ability; Social Dominance; Communal Care; Physical Attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9232] "Factors: Negative Affectivity; Detachment; Antagonism; Disinhibition; Constraint; Psychoticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9233] "Factors: Past-Negative, Past-Positive, Present-Hedonistic, Present-Fatalistic and Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9234] "Factors: Positive Past; Negative Past; Hedonistic Present; Fatalistic Present; Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9235] "Factors: English learning anxiety; Epistemic curiosity (IEC; DEC); Attitude toward gamification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9236] "Domains; Start-up pitches; In-class oral presentations; Start-up video pitches vs in-class oral presentations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9237] "Subscales: Rigid persistence; Flexible persistence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9238] "Factors: Security; Privacy; Reputation; Cognitive trust; Perceived Risk; Attitude towards online purchases; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9239] "Subscales: Threatening Events; Anomalous Perceptions; Intentionalising; Catastrophising; Dichotomous Thinking; Jumping to conclusions; Emotional Reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9240] "Subscales: Delay; Subjective discomfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9241] "Factors: Expression of positive emotions; Expression of negative emotions; Dysregulation of positive emotions; Dysregulation of negative emotions; Strength of positive emotions; Strength of negative emotions; Dimorphous expressions of positive emotions; Dimorphous expressions of negative emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9242] "Subscales: Memory; Orientation; Judgment and problem solving; Community affairs; Home and hobbies; Personal care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9243] "Subscales: Personnel resources; Physical resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9244] "Domains: Active coping; Self-confidence; Learning/meaning–making/recharging; Cognitive flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9245] "Factors: Behavioral control; Coercive control; Nurturance; Overprotection; Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9246] "Factors: Promoting Oral Hygiene; Providing Mouth Care; Obtaining Cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9247] "Factors: Care of Residents’ Teeth; Care of Own Teeth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9248] "Factors: Attitudes toward transpersonal caring relationship between the home care team and the patients; Attitudes toward the experienced support in home care; Attitudes toward comparing hospital health care and home care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9249] "Subscales: Knowledge of ACP; Attitudes-Benefits of ACP; Attitudes-Burdens of ACP; Behavioral intentions for ACP; Factors affecting ACP; Subjective norm."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9250] "Factors: Behaviours; Knowledge; Skills; Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9251] "Subscales: Exploratory; Intimate; Impersonal; Sadomasochistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9252] "Factors: Exploratory; Intimate; Impersonal; Sadomasochistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9253] "Factors: Internalization of facial features that highlight thinness; Internalization of the ideal body considered sexy and attractive; Internalization of the general attractiveness ideal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9254] "Subscales: Radio; Television; Print."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9255] "Factors: Climate; Training; Motivation; Culture; Pressure to Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9256] "Subscales: Anxiety disorder (Separation anxiety disorder; Selective mutism; Social anxiety disorder; Panic disorder; Generalized anxiety disorder); Phobia (Specific phobia—animal type; Specific phobia—natural environment type; Specific phobia—blood–injection–injury type; Specific phobia—situational type/Agoraphobia; Specific phobia—other type)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9257] "Subscales: Avoidance; Overdoing; Pacing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9258] "Constructs: System quality; Information quality; Services quality; Task characteristics; Structural assurance; Trust; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9259] "Factors: Role Engulfment; Loss of Shared Identity; Family Obligation; Extension of Former Role; Master Identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9260] "Factors: Brand trust; Brand performance; Brand reputation; Brand acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9261] "Subscales: Eros; Ludus; Sorge; Pragma; Mania; Agape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9262] "Factors: Self-private body odor; Others’ body odor; Self-common body odor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9263] "Subscales: Spirituality; Language; Pride; Preparation for bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9264] "Subscales: Rapport building; Evidence-based; Social and psychological manipulation; Consequence-based; Minimization; Suspect behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9265] "Subscales: Social/Activity; Popularity; Personal Fulfilment; Fitness; Novelty/Release."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9266] "Subscales: Falls; General Injuries; Burns; Medical Devices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9267] "Factors: Residents’ attitude toward tourism development (ATT); Perceived resident-brand value consistency (PCV); Emotional labor - deep acting (RDT); Resident-tourist interaction quality (QUAL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9268] "Factors: Social; Play; Efficiency; Effort and time spent; Utilitarian; Volunteer attitude; Global life satisfaction; Ascribed responsibility; Short-term intention; Mid-term intention; Long-term intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9269] "Constructs: Information sharing; Information seeking; Perceived media richness; Vividness; Interactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9270] "Factors: Corporate social responsibility; Safety compliance; Safety participation; Safety adaptation; Negative emotion; Belief restoration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9271] "Subscales: Workplace Ostracism; Resilience; Openness to Experience; Turnover Intention; Neuroticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9272] "Factors: Self-leadership (second-order construct); Visualizing successful performance; Self-goal-setting; Self-talk; Self-reward; Role identity; Brand knowledge; Brand commitment; Brand citizenship behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9273] "Transactional-leadership (Contingent-Reward; Management-by-Exception); Transformational-leadership (Idealize Influence (Attribute); Idealize-Influence (Behaviour); Inspirational-Motivation; Intellectual-Stimulation); Laissez-faire-Leadership (Management-by-Exception-Passive) Culture (Market-Culture; Adhocracy-Culture); Organizational-effectiveness; Communication-Method."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9274] "Factors: Workplace experience; Workplace happiness; Creativity and knowledge; Self-actualization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9275] "Factors: Similarity to female gender (SFG); Similarity to male gender (SMG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9276] "Factors: Behavioral Inhibition System (BIS); Fight-Flight-Freeze System (FFFS); Behavioral Approach System (BAS) [Reward Reactivity (RR); Goal-Drive Persistence (GDP); Reward Interest (RI); Impulsivity (IM)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9277] "Subscales: Substance Use; Psychological Health; Physical Health; Community Involvement; Social Support; Meaningful Activity; Home Safety; Risk Taking; Life Functioning; Recovery Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9278] "Subscales: Emotional Support (ES); Interpersonal Skills (IS); General Coping (GC); Spirituality (S); Personal Growth and Autonomy (PGA); Global Affect (GA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9279] "Subscales: Solicitousness; Discouragement; Promotion of well-behaviors and coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9280] "Constructs: Leader humility; SRHR practices (Legal compliance HR practices; Employee-oriented HR practices; General CSR facilitation HR practices); Expansive job crafting (Increasing structural job resources; Increasing social job resources; Increasing challenges); Service-oriented organizational citizenship behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9281] "Factors: Emotional; Seductive-Exotic; Surrender; Sensation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9282] "Subscales: Perceptions; Training; Resources; Barriers; Training Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9283] "Factors: Analyze; Evaluate; Comprehend."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9284] "Subscales: Intrusion; Negative Mood; Dissociation; Arousal; Functional Impairment; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9285] "Domains: Lack of confidence; Aimless future; Work/Study competence; Financial; Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9286] "Factors: Quality; Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9287] "Factors: Psychological; Physical/Activities of Daily Living; Obsessive-compulsive; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9288] "Subscales: Victimization; Witnessing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9289] "Subscales: Intolerance of failure; Hypersensitivity to evaluation; Self-competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9290] "Factors: Too much emotion; Too little emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9291] "Subscales: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9292] "Subscales: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9293] "Subscales: Depression; Anxiety; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9294] "Factors: Family as partner in care; Family as resource in nursing care; Family as their own resource; Family as burden."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9295] "Subscales: Positive Messages; Negative Messages."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9296] "Factors: Sleep‐disrupting behaviors; Cognitive activation; Bedroom comfort; Sleep/wake time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9297] "Subscales: Reference to death; Derealization; Depersonalization; Flashbacks; Unspeakability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9298] "Factors: Motivation to Approach New Foods (AppNF); Motivation to Avoid New Foods (AvdNF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9299] "Scales: Sexual Excitation (SE); Sexual Inhibition (SI). Factors: Arousability; Partner Characteristics; Smell; Sexual Power Dynamics; Relationship Importance; Concerns about Sexual Function; Arousal Contingency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9300] "Subscales: Intra-exploration; Inter-exploration; Identification of commitment; Flexibility; Self-doubt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9301] "Factors: Hope; Self-reflection; Self-clarity; Visioning; Goal setting/planning; Implementing; Adapting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9302] "Factors: Economic satisfaction (ES); Social satisfaction (SS); Information exchange (IE); Flexibility (FLE), Solidarity (SOL); Supplier’s trust (ST); Supplier’s dependence (SD); Buyer’s trust (BT); Buyer’s dependence (BD); Buyer’s embeddedness (BE); Buyer’s opportunism (BO); Organizational similarity (OS); Relational risk (RR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9303] "Constructs: Residents’ Cultural Intelligence; Foreign Tourist Attractiveness; Residents’ Place Image; Support for Tourism Development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9304] "Factors: Attitude; Social norms; Awareness of consequences; Perceived behavioral control; Personal norms; Binning behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9305] "Factors: Identification; Enthusiasm; Attention; Absorption; Interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9306] "Factors: Sense of Inner Emptiness (SIE); Sense of Absence of Relatedness (SAR); Sense of Meaninglessness (SM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9307] "Factors: Hedonic Affect Regulation; Task-Related Affect Regulation; Social Affect Regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9308] "Subscales: Move; Rest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9309] "Factors: Social media; Connections; Heterogeneous agents; Innovativeness; Dissipative structures; Organizational performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9310] "Constructs: Reactance; Choice difficulty; Choice confidence; Perceived performance; Choice satisfaction; User experience; Familiarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9311] "Constructs: Value; Reasons for (Perceived personalization; Convenience; Superior functionality; Ubiquitous); Reasons against (Tradition barrier; Privacy concerns; Technology anxiety; Need for personal interaction); Perceived value co-creation; Behavioral intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9312] "Subscales: Perceived severity; Perceived vulnerability; Response efficacy; Self-efficacy; Altruistic fear; Attitude toward channel switching; Perceived behavioral control; Subjective norm; Channel switching intention; Actual channel switching behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9313] "Factors: Difficulty of present moment awareness and emotional unacceptance; Distractibility; Autopilot."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9314] "Subscales: Self-efficacy psychological capital; Hope psychological capital; Resilience psychological capital; Optimism psychological capital; Structural social capital; Relational and cognitive social capital; Self-reported job performance; Supervisor-rated job performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9315] "Subscales: Clinical emphasis; Prevention emphasis; Policy emphasis; Clinical preparedness; Prevention preparedness; Policy preparedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9316] "Factors: Emotional relationship orientation; Instrumental relationship orientation; Rent-seeking relationship orientation; Strong opportunistic behavior; Weak opportunistic behavior; Distributive justice; Procedural justice; Interactive justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9317] "Domains: Medico-legal; Social; Psychological Well-being; Planning; Enrichment; Positive Health Behaviors; Negative Health Behaviors; Late-life Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9318] "Scales: Intention to Try (ITT); Intention to Use (ITU); Intention to Dual Use (ITDU); Intention to Switch (ITS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9319] "Factors: Antagonism; Agentic extraversion; Neuroticism. Subscales: Distrust; Lack of empathy; Manipulativeness; Reactive anger; Thrill-seeking; Arrogance; Entitlement; Exploitativeness; Authoritativeness; Grandiose fantasies; Acclaim-seeking; Exhibitionism; Indifference; Shame; Need for admiration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9320] "Factors: Awareness; Attitude; Self-efficacy; Access to resources; Skills of using resources; Social support; Important others; Behavioral consequences; Social comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9321] "Subscales: Psychological distress scale; Esteem scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9322] "Subscales: Inhibition (INH); Working Memory (WM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9323] "Subscales: Cheating; Aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9324] "Subscales: Knowledge & awareness; Attitude; Practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9325] "Factors: Four-Factor Model: Repetitive motor; Ritual and routine; Restricted; Self-directed. Three-Factor Model: Repetitive motor; Ritual and routine; Restricted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9326] "Subscales: Cognitive; Language; Motor; Social and self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9327] "Constructs: Entertainment; Customization; Trendiness; Interaction; Word of Mouth; Brand Awareness; Brand Image; Repurchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9328] "Subscales: Personal control of symptoms; Overall care; Preparation for death; Family care; Moment of death."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9329] "Factors: Teaching and curriculum; Course assessment; Practical activity; Academic support; Professional quality; Individual development."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9330] "Subscales: Evaluative Concerns; Striving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9331] "Factors: Roles and Leadership Capacity (RaR); Communication (Cmm); Use of Resources (UoR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9332] "Factors: Relational expectation; Relational empowerment; Relational selflessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9333] "Factors: General; Health and Vitality; Performance and Productivity; Learning and Growth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9334] "Factors: Emotional and behavioral control; Emotional awareness and comprehension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9335] "Factors: Impact of care-giving; Social and healthcare interactions; Meaning of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9336] "Subscales: Efficacy in Internal Competence (EIC); Psycho-physiological Components (PPC); Efficacy in External Competence (EEC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9337] "Subtests: Probabilistic and Statistical Reasoning; Scientific Reasoning; Reflection vs Intuition; Syllogisms; Ratio Bias; Disjunctive Reasoning; Probabilistic Numeracy; Superstitious Thinking; Anti-Science Attitudes; Conspiracy Beliefs; Dysfunctional Beliefs; Actively Open-Minded Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9338] "Subscales: Food responsiveness (FR); Emotional overeating (EOE); Enjoyment of food (EF); Desire to Drink (DD); Satiety responsiveness (SR); Emotional undereating (EUE); Food fussiness (FF); Slowness in eating (SE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9339] "Factors: Self-blame; Acceptance; Rumination; Positive refocusing; Refocusing on planning; Positive reappraisal; Putting into perspective; Catastrophizing; Blaming others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9340] "Factors: Generativity; Method-effect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9341] "Factors: Tenacity; Self-Composure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9342] "Factors: Internal; External; Need for change and excitement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9343] "Factors: Emotional Symptoms; Physiological Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9344] "Factors: Objective strain; Subjective internalized strain; Subjective externalized strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9345] "Factors: Gameplay anxiety; Gameplay interest; Flow experience; Perceived learning value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9346] "Subscales: Fear; Grief; Physical Distress; Insanity; Isolation; Death; Paranoia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9347] "Factors: Consistency of interest; Perseverance of effort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9348] "Factors: Partner upgrading; Mate seeking; Partner investment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9349] "Factors: Merit; Oppression; Representation; Outsider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9350] "Subscales: Event-based leisure; Media-based leisure; Basic leisure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9351] "Subscales: Shopping satisfaction; Leisure travel satisfaction; Leisure life satisfaction; Subjective well-being; Overspending on shopping; Money management stress; Future Financial security."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9352] "Subscales: Collective efficacy; Community belonging; Traditional social regulation; Community cohesion; Social network; Community competency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9353] "Subscales: Competitive psychological climate; Knowledge hiding; Optimism; Organizational justice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9354] "Subscales: Rejection; Misconceptions; Judgements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9355] "Subscales: Physical function; Role function; Emotional function; Cognitive function; Social function; Fatigue; Nausea and vomiting; Pain; Global quality-of-life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9356] "Constructs: Need for Approval; Impression Management; Lying self-presentation; Depression; Deletion; Perceived Popularity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9357] "Constructs: Communication; Participation; Well-being/Emotional state."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9358] "Subscales: Communication; Participation; Emotional state."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9359] "Factors: Roles and responsibilities; Communication; Patient-centered care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9360] "Subscales: Restraint; Eating concern; Shape concern; Weight concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9361] "Domains: Community; Rules; Division of Labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9362] "Factors: Fear and anxiety of COVID-19; Psychological distress; Sleep disturbance; Life satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9363] "Factors: Meaning-in-life (Coherence; Significance; Purpose)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9364] "Factors: Cognitive General (CG); Cognitive Specific (CS); Motivational General Arousal (MG-A); Motivational General Mastery (MG-M); Motivational Specific (MS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9365] "Subscales: Nonjudging; Patience; Beginner's Mind; Trust of Self; Non-striving; Acceptance; Letting Go; Noticing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9366] "Factors: Enacted stigma (family members); Enacted stigma (HCW); Internalized stigma; Anticipated stigma (family members); Anticipated stigma (HCW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9367] "Dimensions: Psychological abuse; Physical abuse; Negligence; Sexual abuse; Nonviolent discipline; Exposure to violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9368] "Subscales: Threat; Challenge; Centrality; Controllable-by-Self; Controllable-by-Others; Stressfulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9369] "Scales: Control of the run; Environment; Aversion; Physical discomfort associated with running; Physical pleasure drawn from the running; Mind-wandering (Future-related; Others)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9370] "Subscales: CRI-Education; CRI-Working Activity; CRI-Leisure Time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9371] "Subscales: Emotional; Physical; Social and Quality of Care Issues/Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9372] "Dimensions: Novelty value; Risk avoidance; Familiarity; Hedonic value; Togetherness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9373] "Subscales: Frequency; Guilt. Factors: Care recipient's criticism of the caregiver's role; Personal disparagement; Accusations of harming the care recipient; Shifting responsibility onto the caregiver."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9374] "Factors: Positive social perceptions; Spirituality; Overcoming adversity; Confidence in self among others; Greater good; Supporting loved ones: Happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9375] "Subscales: Work Context; Work Capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9376] "Subscales: Negative-difficulty identifying feelings; Positive-difficulty identifying feelings; Negative-difficulty describing feelings; Positive-difficulty describing feelings; General-externally orientated thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9377] "Constructs: Performance Expectancy; Effort Expectancy; Social Influence; Facilitating Conditions; Trust; Perceived Value; Hedonic Motivation; Perceived Privacy Concerns; Perceived Privacy Risk; Behavioral Intention; Adoption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9378] "Factors: Novelty; Technology; Perceived competence; Perceived autonomy; Perceived relatedness; Well-being; Satisfaction; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9379] "Subscales: English; Math; Sciences; Spanish."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9380] "Factors: Self-oriented reasons; Child-centered reasons; Family-related reasons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9381] "Factors: Autonomy Satisfaction; Frustration Autonomy; Affiliation Satisfaction; Affiliation Frustration; Competence Satisfaction; Frustration Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9382] "Components: Finding; Understanding; Judging; Applying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9383] "Factors: MENA cultural affiliation; MENA media use; Multicultural affiliation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9384] "Subscales: Self-Awareness of Bias Subscale (CCGIS-B); Gaining Knowledge/Skills to Counsel Gender Diverse Individuals Subscale (CCGIS-KS); Awareness of Barriers to Gender Diverse Practice Subscale (CCGIS-AB); Professional Exposure to Gender Diverse Counselees Subscale (CCGIS-PE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9385] "Factors: Self-existence of mind and body; Relaxation of mind and body; Balance of mind and body; Sense of independence; Sense of physical stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9386] "Subscales: Avoidance of Negative Affect; Weight Control Exercise; Mood Improvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9387] "Amount of information; Customer gender congruence; Engagement Cognitive; Affective; Activation; Customer attitude; Customer visiting intentions; Experience with smart speakers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9388] "Domains: Biological; Psychological; Social; School/Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9389] "Domains: Insight; Learning; Mutuality; Emotion regulation; Global."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9390] "Factors: Direct fear; Indirect fear; Physiological response; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9391] "Factors: Policy; Program design; Curriculum/instruction; Capacity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9392] "Subscales: Emotional reactivity (APS-ER); Trait anxiety (APS-TA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9393] "Subscales: Activity; Sleep/Feeding; Social life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9394] "Factors: Role of instructors (Instructor performance; Instructional support; Instructor innovation); Academic self-efficacy; Students’ perceived outcomes; Students’ learning satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9395] "Factors: Staying Connected; Following Etiquette."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9396] "Subscales: Ethical and Privacy Expectations; Service Feature Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9397] "Subscales: Ethical and Privacy Expectations; Service Feature Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9398] "Subscales: Ethical and Privacy Expectations; Service Feature Expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9399] "Factors: Affective; Behavioral; Cognitive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9400] "Dimensions: Cognition; Affective; Behavioral. Factors: Enjoyment of science learning (Enjoyment); Self-efficacy of science learning (Self-efficacy); Value of science learning (Value); Intention to learn and do science (Intention)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9401] "Subscales: Intention; Distress Tolerance; Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9402] "Subscales: Label; Match; Knowledge; Written."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9403] "Subscales: Trust in midwives; Birth-related shame and disgust sensitivity; Evaluation of vaginal birth; Drug support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9404] "Constructs: Collection (CO); Secondary usage (SU); Errors (ER); Improper access (IA); Control (CR); Awareness (AW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9405] "Factors: Mobile phone distraction; Cognitive emotion pre-occupation; Attention control; Psychological well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9406] "Factors: Sleep paralysis and hallucinations; Daytime sleepiness; Cataplexy; Refreshing effect of a sleep attack and on nighttime sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9407] "Constructs: Communication overload; Cyber violence; Digital distrust; Information inequality; Information overload; Negative emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9408] "Subscales: Abilities-demands organization (ADO); Abilities-demands technology (ADT); Needs-supplies organization (NSO); Needs-supplies technology (NST); Person-people misfit(PPF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9409] "Subscales: Physical functioning; Role functioning/physical; Role functioning/emotional; Vitality; Mental health; Social functioning; Pain; General health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9410] "Factors: Structure for activity; Autonomy support; Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9411] "Subscales: Introspectiveness and Reactivity; Neuroticism; Insomnia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9412] "Subscales: Glucose management (GM); Dietary control (DC); Physical activity (PA); Health-care use (HU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9413] "Subscales: Relationships and Academic Life; Isolation; Fear of Contagion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9414] "Factors: Social clumsiness type 1 (SCI1); Social clumsiness type 2 (SCI2); Intention attribution (Int At); Simple comprehension (SCO); Affective ToM (AToM); Epistemic ToM (EpToM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9415] "Dimensions: Knowledge; Skill; Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9416] "Factors: Interpersonal integration; Active coping strategies; Profession-related positive emotion; Competence for nursing work; Balance between work and life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9417] "Constructs: Brand psychological ownership; Value-congruity (brand); Brand community psychological ownership (Self-efficacy; Accountability; Belongingness; Self-identity); Value-congruity (brand community); Customer brand engagement with dual foci Brand community engagement (Cognitive engagement; Affective engagement; Behavioral engagement); Brand equity; Sense of community."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9418] "Factors: Perceived social media interactivity; Customer engagement behaviors (Customer purchases; Customer referrals; Customer influence; Customer knowledge)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9419] "Factors: Customer brand identification; Peer identification; Customer-to-customer value co-creation; Competitor brand hate; Customer social influence; Experiential hedonic value; Customer repurchase intentions; Individualism self-construal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9420] "Factors: Social orientation (Prosocial organizational identity; Prosocial impact); Environmental orientation (Internal; External); Economic performance (Financial performance; Market performance); Environmental performance (Environmental performance; Environmental competitive advantage); Organizational trust; Social value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9421] "Constructs: Customer brand engagement (Affective engagement; Cognitive engagement; Activation engagement); Brand love; Brand defense; Brand advocacy; Value co-creation coproduction (Interaction; Equity; Knowledge); Value co-creation value-in-use (Experience; Personalization; Relationship)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9422] "Constructs: Entertainment; Customization; Interaction; Trendiness; Consumers’ online brand-related activities-Consuming; Consumers’ online brand-related activities-Contributing; Consumers’ online brand-related activities-Creating; Repurchase intention; On-going search behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9423] "Factors: Material environment; Social environment; Regulation; Development; Organizational-individual adjustment; Individual-organization adaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9424] "Subscales: Vision; Sound; Smell; Taste; Touch; Bodily sensation; Emotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9425] "Subscales: Aloof personality; Pragmatic language; Rigid personality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9426] "Factors/Subscales: Acceptance of Coercive Measures Without Questioning; Meaningfulness and Legitimacy of Coercive Measures; Security and Order Through Coercive Measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9427] "Subscales: Viability challenges; Organizational challenges; Identity challenges; Emotional challenges; Relational challenges; Career-path uncertainty challenges."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9428] "Subscales: Joy of learning (JL); Academic efficacy (AE); School connectedness (SC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9429] "Subscales: Weight gain motivation; Motivation scale related to food and body concerns; Motivation scale linked to other characteristics characteristics of anorexia nervosa."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9430] "Subscales: Auditory–Oral; Auditory Awareness; Social/Conversational Skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9431] "Components: Organization and Method: Regulation; Organization and Method: Development; Organization and Material Environment; Organization and Social Environment; Organization and Person: Organization-Person Match; Organization and Person: Adaptation Person-Organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9432] "Factors: Material environment; Social environment; Regulation; Development; Organizational-individual adjustment; Individual-organization adaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9433] "Subscales: Cognitive Problems; Need for Control; Eating Problems; General Functioning; Hopelessness; Internal Avoidance; Irritability; Readiness for Recovery; Recovery Environment; Sad Affect; Self-Criticism; Situational Avoidance; Social Avoidance; Social Safety; Somatic Anxiety; Substance Recovery; Substance Use; Suicide Risk; Trauma Reactions; Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9434] "Subscales: Perceived burdensomeness (PB); Thwarted belongingness (TB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9435] "Subscales: Openness, Caring, and Support; Supervisor’s Knowledge and Expertise as Therapist; Supervision Planning and Management; Goal-Directed Supervision; Restorative Competencies; Insight into and Management of Therapist-Client Dynamics and Reflective Practitioner Competencies (A1-clusters); Supervisor as Person and Therapist; Competency-Based Supervision; Restorative, Relationship, and Reflective Practitioner Competencies (B1 clusters); Supervisor as Person and Therapist; Supervisory Competencies (C1 clusters)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9436] "Factors: Well-being; Certainty; Information; Trust in future perspectives; Goal clarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9437] "Subscales: Self-Care Maintenance; Self-Care Management; Self-Care Confidence. Factors: Consultative behaviors; Autonomous behaviors; Early recognition and response; Delayed response."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9438] "Subscales [Factors]: Self-care maintenance [Treatment adherence; Healthy lifestyle]; Self-care management [Recognition and early response; Delayed response]; Self-care confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9439] "Factors: Submission; Domination; Tender Sex."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9440] "Factors: Personal innovativeness (PINN); Compatibility; Perceived usefulness (PU); Continued intention; Learning performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9441] "Factors: Attitudes Predicting Avoidance; Beliefs About Danger/Unpredictability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9442] "Subscales: Attitudes; Behavioral intention; Workplace beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9443] "Domains: General; Personal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9444] "Subscales: Practice appraisal (PA); Family-nurse relationship (FNR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9445] "Subscales: FMA-UE - (A) Upper extremity; (B) Wrist; (C) Hand; (D) Coordination/Speed; (H) Sensibility; FMA-LE - (E) Lower extremity; (F) Coordination/Speed; (H) Sensibility; (I) Passive Range of Motion; (J) Pain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9446] "Subscales: Facilitator; Barrier. Factors: Activity preference; Health benefits; Physical environmental facilitators; Support from health professionals; Support from family and friends; Environmental barriers; Personal barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9447] "Subscales: Pain; Function; Active forward flexion; Strength of forward flexion; Overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9448] "Factors: Perceived difficulties in STEM teaching practices; Knowledge of interdisciplinary and related pedagogical strategies; Teachers' self-efficacy beliefs to perform STEM teaching; STEM teaching practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9449] "Subscales: Home management; Organizing at home; Community management; Work management; Community service management; Communication management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9450] "Subscales: Cognition; Mobility; Self-care; Getting along; Housework; Work or school activities; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9451] "Subcategories: Global; Pain; Daily activities; Sports/recreation; Work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9452] "Factors: Managing Home participation; Questions on Built Environment; Planning and managing community participation; Managing work and productivity; Managing communication; Advocating for resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9453] "Factors: Perceived efficacy; Behavior; Message Minimization and Perceived Manipulation; Defensive Avoidance of the Message; Nurture; Perceived Severity; Fear; Intention; Perceived Susceptibility in case of Insufficient Personal Protection; Individual Enablers; Environmental Enablers; Perception of the Possibility of Bites at Any Height."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9454] "Factors: Shame; Pleasure; Reliability; Negotiation; Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9455] "Factors: Non-affirming healthcare experiences; Gender-affirming healthcare experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9456] "Domains: Diabetes distress in general; Consequences of untreated diabetes distress; Diabetes distress management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9457] "Factors: Exhaustion (EXH); Cynicism (CYN) and Inadequacy (INAD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9458] "Factors: Obsessive Passion; Harmonious Passion; Non-judging; Pro-environmental behavior; Describing; Acting with awareness; Observing; Non-reactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9459] "Factors: Time constraint (CST); Cost constraint (CSF); Health constraint (CSW); Habit constraints (CSH); Transportation constraint (CSP); Interpersonal constraint (CSS); Behavior negotiation (BN); Cognitive negotiation (CN); Participation (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9460] "Subscales: Clothing in relation to self as structure; Clothing in relation to self as process; Clothing in relation to self as process-Response to judgments of others; Clothing in relation to self-esteem-Evaluative process dominant; Clothing in relation to self-esteem-Affective process dominant; Clothing in relation to body image and body cathexis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9461] "Factors: Perceived autonomy support (PAS) (Offering choice within certain limits; Explaining the reasons behind the demands, rules, and limits; Being aware of, accepting, and recognizing the child’s feelings); Perceived parenting control (PPC) (Threatening to punish the child; Inducing guilt; Encouraging performance goals)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9462] "Subscales: Object imagery; Spatial imagery; Verbal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9463] "Factors: Self; Others. Dimensions: Identification; Expression; Comprehension; Regulation; Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9464] "Factors: Involvement; Burden; Appropriateness; Concerns about stopping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9465] "Factors: Burden; Appropriateness; Concerns about stopping; Involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9466] "Subscales: Forcedness Locus of causality; Forcedness Options for choice; Pre-migration Perils; Migration Perils."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9467] "Subscales: Incongruity-resolution (INC-RES); Nonsense (NON)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9468] "Subscales: Healthy Lifestyle (HL); Joyful Activities (JA); Daily Structure (DS); Prevention Adherence (PA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9469] "Subscales: Negative stereotyping of women; Exclusion and discrimination; Fear of contagion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9470] "Subscales: Anticipating; Savoring the moment; Reminiscing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9471] "Factors: Intimacy; Passion; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9472] "Subscales [Factors]: Beliefs About People Suffering From Schizophrenia [Low social status of people suffering from schizophrenia; Rights of people suffering from schizophrenia; Superstitious beliefs; Negative features of people suffering from schizophrenia; Incurableness and aversion]; Causes of Schizophrenia [Social factors; Biological and behavioral factors; Genetic, chemical and mechanical factors]; Views on the Role of Psychiatric Hospitals and Society in the Treatment of Schizophrenia [Obligations of society; Functions of psychiatric hospitals; Distance and protective function of psychiatric hospitals; Respect for freedom; Treatment]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9473] "Subscales: Belonging; Autonomy; Accord; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9474] "Factors: Senior management (Sen); Organization as a whole (Org)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9475] "Factors: Appearance of a person; Sunrise; Shop; Landscape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9476] "Factors: Visual; Auditory; Gustatory; Olfactory; Tactile; Kinesthetic; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9477] "Factors: Abstraction; Decomposition; Algorithmic Thinking; Evaluation; Generalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9478] "Factors: Power; Specific Assets; Inter-organizational trust; Interpersonal trust; Opportunism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9479] "Factors: Pain; Cardiopulmonary; Fatigue."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9480] "Factors: Opportunity for Interprofessional Learning; Psychological Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9481] "Subscales: Parent/Family Activities; Child oral health-related quality of life (COHQoL); Family Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9482] "Factors: Somatization; Depression; Intrusive Memories; Dissociation; Anxiety; Mental Pain (total scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9483] "Subscales: Anxious Attachment; Exclusive Dependency; Emotional Dependency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9484] "Subscales: Anxious Attachment; Exclusive Dependence; Emotional Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9485] "Subscales: Task-approach; Task-avoidance; Self-approach; Self-avoidance; Other-approach; Other-avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9486] "Factors: General attitude to volunteering; Attitude to participating in volunteering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9487] "Factors: Abstinence; Recommendation; Precaution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9488] "Subscales: Knowledge and Skills (AIM-KS); Openness and Support (AIM OS); Oppression Awareness (AIM-OA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9489] "Factors: Circadian Regularity; Sleep Continuity Regularity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9490] "Scales: Instagram Feed Addiction (IFA) (Relapse/Withdraw Conflict; Mood Modification; Salience; Tolerance); Instagram Story Addiction (ISA) (Relapse/Withdraw Conflict; Mood Modification; Salience)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9491] "Factors: Athletic Shame-Proneness; Athletic Guilt-Proneness; Athletic No-Concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9492] "Subscales: Rejection; Emotional warmth; Overprotection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9493] "Constructs: Time per day (FB hours); Posts per day (FB posts); Sense of virtual Community; Self-Assertion; Addiction (Social Media disorder)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9494] "Factors: Neuroticism; Extraversion; Cyber danger belief; Online social anxiety; Cellphone addiction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9495] "Constructs: Social influence (SI); Loneliness (LON); Habit (HAB); Emotional gain (EG); Fear of missing out (FoMO); Self-control (SC) Problematic smartphone usage (PSU)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9496] "Subscales: Disruptive; Oppositional; Interpersonal Conflict; Conduct Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9497] "Subscales: Mirror Viewing Comfort; Mirror Viewing Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9498] "Factors: Personal and altruistic goals; Pride and personal satisfaction; Recognition and support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9499] "Subscales: Competence; Information; Access; Support; Global Medical Satisfaction; Global Psychosocial Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9500] "Factors: Aesthetic Appreciation (AA); Intense Aesthetic Experience (IAE); Creative Behavior (CB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9501] "Constructs: Socio-instrumental use of Enterprise Social Media; Interruption overload; Psychological transition; Enterprise Social Media-related exhaustion; Employee creativity; Promotion-focus; Prevention-focus; Positive affect; Negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9502] "Factors: Economic Barrier (EcB); Efficiency Barrier (EfB); Experience Barrier (ExB); Trust (TR); Negative word of mouth (NWOM); Positive word of mouth (PWOM); Advertisement overload (AO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9503] "Constructs: Reseller opportunism; Manufacturer’s coercive influence; Manufacturer’s noncoercive influence; Distributive fairness; Procedural fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9504] "Subscales: Affect; Beliefs; Behaviours."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9505] "Factors: Attitudes; Flow experience; Programming intentions; Teacher support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9506] "Factors: Epistemology; Anthropology; Teleology; Theology; Axiology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9507] "Constructs: Artificial Intelligence adoption; Psychological contract; Job engagement; Job trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9508] "Factors: Brand Enthusiasts; Brand Conformists; Brand Deviants; Brand Skeptics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9509] "Constructs: Overall CSR perceptions (OCSR); Customer-related CSR (CSR_C); Employee- & supplier-related CSR (CSR_ES); Environment- & community-related CSR (CSR_EC); Overall CSiR perceptions (OCSiR); Customer-related CSiR (CSiR_C); Employee- & supplier-related CSiR (CSiR_ES); Environment- & community-related CSiR (CSiR_EC); Corporate reputation (CR); Brand equity (BE); Customer trust (TRUST)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9510] "Domains: Knowledge; Application."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9511] "Subscales: Conflict Avoidance & Helplessness; Relationship & Obligation; Helping Recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9512] "Subscales: Hopelessness; Anxiety Sensitivity; Impulsivity; Sensation Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9513] "Subscales: Being in control; Avoidance of a loss frame; Efficiency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9514] "Factors: Conceptual Knowledge; Willingness; Self-efficacy (Capacity Expectations; Outcome Expectancy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9515] "Subscales: Family has a significant role in promoting an active lifestyle among their children; Parental awareness of community resources needed to promote active lifestyles in children; Effectiveness of community activities and awareness programs to promote children's active lifestyle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9516] "Factors: Consumption-reduction strategies; Health-focused strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9517] "Factors: Preoccupation with physical appearance; Dissatisfaction with strength-related aspects of one’s body; Dissatisfaction with complexion; Attractiveness; Prioritisation of appearance over function; Dissatisfaction with body parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9518] "Subscales: Appreciation; Positive Attitude; Traditional Attitude; Difficulty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9519] "Subscales: Respect Parents; Individual Contact; Classroom Information Sharing; Being Proactive; Facilitating Conversation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9520] "Factors: Socioeconomic well-being; Emotional well-being; Physical well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9521] "Subscales: Exercise Adherence Rating Scale; Reasons for adherence/non-adherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9522] "Subscales: Belong; Understand; Control; Esteem; Trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9523] "Components: Achievement/Recognition; Aesthetic Wonder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9524] "Scales: Instructional Beliefs; Instructional Practices. Subscales: Beliefs-Holism (BH) (Environmental, social and economic implications of sustainable development issues; Time perspectives of sustainable development issues; Place perspectives of sustainable development issues); Beliefs-Pluralism (BP); Practices-Holism (PH) (Environmental, social and economic implications of sustainable development issues; Time perspectives of sustainable development issues; Place perspectives of sustainable development issues); Practices-Pluralism (PP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9525] "Subscales: Nonclinging to Body and Physical Appearance; Nondwelling on Emotions; Nongrasping; Non-Self-Preoccupation; Non-Self-Defensiveness; Noncomparing and Competing; Noncontrolling of Self; Noncontrolling of Group; Nonclinging to Suffering-Inducing Thoughts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9526] "Subscales: Cognitive; Socio-emotional; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9527] "Constructs: Perceived Severity (PS); Perceived Vulnerability (PV); Self-efficacy (SE); Response Efficacy (RE); Perceived Usefulness (PU); Perceived Enjoyment (PE); Perceived Ease of Use (PEU); Attitude (AT); Behavior Intention (BI); Feeling Disconnected."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9528] "Factors: Verbal victimization; Physical victimization; Relational victimization; Cyber victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9529] "Factor: Cognitive; Emotional; Behavioural Intentional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9530] "Dimensions: Communicative effectiveness; Clinical competence; Intrapsychic competence; Relational competence; Affect regulation; Diagnostic skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9531] "Subscales: Childhood/Adolescent Touch Experience; Comfort with Interpersonal Touch; Fondness for Interpersonal Touch; Adult Touch Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9532] "Factors: Social Encouragements; Rules."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9533] "Subscales: Arrow; Silly Sound Game; Houses; Something's the Same; Pig; Pick the Picture; Farmer; Bubble."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9534] "Subscales: Family (FAM); Friend (FRI); Significant Other (SO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9535] "Subscales: Family and friends stigma; General community stigma; Anticipated health care stigma; Internalized sexual identity stigma; Experienced health care stigma; LGBTQ community engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9536] "Subscales: Critical reflection-perceived inequality; Critical action; Critical motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9537] "Constructs: Customer relationship proneness; Customer satisfaction; Customer trust; Purchase intent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9538] "Constructs: Value cocreation (VC); Entertainment (E); Social presence (SP); Self-reference (SR); Social influence (SI); Intention for continued use (UI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9539] "Constructs: Media richness; Brand attitude; Perceived information quality; Willingness to buy; Arousal; Pleasure; Brand Engagement (Cognitive Processing (CP); Affection (AF); Activation (AC))."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9540] "Constructs: Usage barrier; Value barrier; Risk barrier; Tradition barrier; Image barrier; Trust; Word of mouth (WOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9541] "Subscales: Inadequate Self; Hated Self; Reassured Self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9542] "Subscales: Emotionality; Purposefulness; Compulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9543] "Factors: Insight, planning, and control; General altruism; Religiosity; Romantic partner attachment; Mother/father relationship quality; Family social contact and support; Friends social contact and support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9544] "Subscales: Interpersonal skills (IS); Group processing (GP); Positive interdependence (PID); Promotive interaction (PI); Individual accountability (IA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9545] "Subscales: Promotive Interaction; Positive Interdependence; Individual Accountability; Group Processing; Interpersonal skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9546] "Factors: Efficacy for improving writer performance; Overall effectiveness; Efficacy in addressing writing difficulties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9547] "Subscales: Fear of Hurting Relationship; Intervening Anxiety; Help Not Needed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9548] "Subscales: Cognitive; Emotional; Social; Physical."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9549] "Factors: Self-Determination; Adaptability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9550] "Subscales: Physical health; Functionality-capacity; Mental health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9551] "Factors: Perceived connective affordances; Perceived utilitarian affordances; Perceived hedonic affordances; Social interactivity gratification; Informativeness gratification; Technology gratification; Functions gratification; Enjoyment gratification; Health empowerment (meaning, competence, self-determination and impact) Meaning; Competence; Self-determination; Impact; Continuance intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9552] "Factors: Evidence availability; Evidence accessibility; Nonevidenced use; Resource."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9553] "Factors: Problematic smartphone use; Technology concern."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9554] "Factors: Fatalism (General fatalism; Internality; Luck); Comparative optimism; Attitude toward COVID-19 health measures; Adherence to COVID-19 sanitary protocols."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9555] "Factors: Perceived Permission Sensitivity; Perceived App Popularity; Privacy Concerns related to Measure it!; Trust in Measure it!; Perceived Usefulness of Measurement Apps; Intention to Download Measure it!; (Mobile) Privacy Victim Experience; Privacy Concerns about Mobile Augmented Reality Apps in General; Trust in the App Store; Overall Preexisting Attitude Towards Augmented Reality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9556] "Factors: Belief in ENDS devices as a way to help people quit cigarettes; Belief that ENDS are healthier than cigarettes; Susceptibility to initiate ENDS use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9557] "Subscales: Testing and debugging; Algorithmic thinking; Reusing and remixing; Abstracting and modularizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9558] "Subscales: Internal Health Cues; Partner Cues; Health Professional Cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9559] "Factor Domains: Comfort; Social life; Usability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9560] "Factors: Directiveness; Closeness; Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9561] "Domains: Plan and Manage; Select; Prepare; Eat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9562] "Factors: Emotional Disturbance: Weight; Hirsutism; Acne; Infertility; Menstrual Symptoms; Menstrual Predictability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9563] "Constructs: Knowledge; Attitude; Practices. Variables: Causes of neonatal jaundice; Complications of neonatal jaundice; Danger signs of neonatal jaundice; Sites for checking neonatal jaundice; Treatment of neonatal jaundice; Prevention of neonatal jaundice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9564] "Subscales: Employee quality; Agents' quality; Product attributes; Infrastructure quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9565] "Constructs: Destination brand awareness; Perceived quality; Ideal self-congruence; Enduring culture involvement; Destination brand stereotypes; Warmth stereotype; Competence stereotype; Destination brand attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9566] "Constructs: Attitude (Att); Comprehension (Comp); Purchase intention (PI); Motivated consumer innovativeness (Social); Motivated consumer innovativeness (Functional); Motivated consumer innovativeness (Hedonic); Motivated consumer innovativeness (Cognitive)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9567] "Factors: Internal Protection; Emotional Stability; External Protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9568] "Factors: Affective energy; Cognitive energy; Behavioral energy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9569] "Subscales: Public health; Airway care; Urinary care; Defecation care; Nutrition and medicine; Mental health of the patient; Essential information; Self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9570] "Subscales: Exhaustion/emotional detachment; Rage/betrayal; Fear/helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9571] "Factors: Evaluative coping; Adaptive coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9572] "Subscales: Internal locus of control; External locus of control; Chance locus of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9573] "Subscales: Behavioral avoidance; Compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9574] "Factors: Social-related issues; Work-related issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9575] "Factors: Medication and treatment; Medical related; Daily self-health management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9576] "Subscales: Burdens; Benefit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9577] "Factors: Instructor social presence; Peer social presence; Perceived learning; Perceived competence; Class enjoyment; Active learning activities in synchronous classes Open-Ended Polling; Active learning in asynchronous classes Video Commenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9578] "Subscales: Urgency; Lack of premeditation; Lack of perseverance; Sensation seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9579] "Subscales: Parental physical abuse; Parental verbal abuse; Parental nonviolent emotional abuse; Sexual abuse; Emotional neglect; Physical neglect; Witnessed physical violence towards parents; Witnessed physical violence towards siblings; Peer emotional violence; Peer physical violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9580] "Factors: Media Interactivity; Perceived Value; Immersion Experience; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9581] "Subscales: Acceptability; Practicality; Technicality; Profession Specificity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9582] "Constructs: Spatial distance; Social distance; Temporal distance; Hypothetical distance; Immersion; Learning performance; Continuance intention; Recommendation intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9583] "Subscales: Work scheduling & output demands; Physical demands; Mental demands; Flexibility and social demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9584] "Subscale Domains: Managing home participation; Staying organised; Planning and managing community participation; Managing work and productivity; Managing communication; Advocating for resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9585] "Subscales: Sedentary; Light PA (LPA); Moderate-to-Vigorous PA (MVPA); Shade; Nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9586] "Subscales: Muscle Checking; Bodybuilding Dependence; Muscle Satisfaction; Substance Use; Injury."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9587] "Factors: Cognitive; Affective; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9588] "Subscales: Reactive; Proactive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9589] "Subscales: Affective; Cognitive; Behavioral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9590] "Subscales: Racism in LGBT communities; Heterosexism in Racial/Ethnic Minority Communities; Racism in Dating and Close Relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9591] "Constructs: Enhancement of personal significance; Enhancement of situational interest; Environmental control; Teacher-student relationship Mastery self-talk; Performance-approach self-talk; Performance-avoidance self-talk; Proximal goal setting; Self-consequating; Teacher humility; Motivational regulation strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9592] "Subscales: Information and data literacy (iSE); Communication and collaboration (cSE); Digital content creation (dSE); Safety (sSe); Problem-solving (pSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9593] "Subscales: Awareness of Self; Awareness of Others; Proactive Skills Development; Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9594] "Constructs: Supply chain learning (Supplier learning; Customer learning; Internal learning); Operational performance (Cost; Quality, Delivery; Flexibility); Financial performance; Firm size."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9595] "Dimensions: Cognitive; Behavioral; Perceptual; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9596] "Subscales: Usefulness; Social Presence; Preference for Distance Learning; Preference for Face to Face Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9597] "Subscales: Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9598] "Constructs: Attitude towards Battery Electric Vehicles; Subjective Norms; Environmental Concern; Adoption Intention for Battery Electric Vehicles; Perceived Incentives Policy; Perceived Battery Electric Vehicle Knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9599] "Scales: Workplace safety management practices (Management commitment; Safety training; Safety rules and procedures; Employee involvement); Perceived risk associated with COVID-19; Perceived job insecurity; Organizational citizenship behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9600] "Constructs: Privacy Concerns; Perceived Risk; Trust; Information Richness; Purchase Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9601] "Construct: Affect-based trust; Cognition-based trust; Evasive hiding; Knowledge complexity; Perceived organizational incentives; Playing dumb; Perceived losing face; Perceived loss of knowledge power; Perceived reciprocal benefits; Rationalized hiding; Self-efficacy; Task-relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9602] "Factors: Physical domain; Psychological domain; Social domain; Financial domain; Competent domain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9603] "Subscales: Transformational climate; Bureaucratic climate; Team climate; Strategic climate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9604] "Factors: Basic care need; Physiological index; Psychology and adaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9605] "Subscales: Degree of OBP usage; Contextual factors affecting OBP; Occupational therapists' attitudes toward OBP; Occupational therapists' knowledge of OBP; Occupational therapists' interest in OBP."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9606] "Scales: Argument strength; Negative affect; Positive affect; Ease of use; Trust; Information quality; Aesthetics; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9607] "Factors: Mental Workload; Verbal Demands; Information Load; Extended Job Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9608] "Factors: Gaining Status; Aggressive Protesting; Peacefully Protesting; Calling upon Representatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9609] "Factors: Cognitive self‐regulation; Emotional self‐regulation; Behavioral self‐regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9610] "Subscales: Recruiting; Training; Incentivizing; Applying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9611] "Factors: Shift; Weeks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9612] "Constructs: Intention to watch TV clips; Convenience of watching TV clips; Fandom in TV clips; Informativeness of TV clips; Enjoyment of watching TV clips; Social Viewing Offline; Social Viewing Online."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9613] "Factors: Negative Attitudes toward Black Lives Matter; Positive Attitudes toward Black Lives Matter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9614] "Factors: Systemic Oppression; Individual Acts of Prejudice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9615] "Factors: Concept of sexuality; Body Image and sexual communication; Sexual practices; Homosexuality; Dating, intimacy and assertiveness; Sexual health; General sexual knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9616] "Subscales: Identity & Ownership; Team & Respect; Accountability & Support; Reliability & Sustainability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9617] "Constructs: Business Process (ERPK-BP); Enterprise Systems Management (ERPK-ES); Transaction Skills (ERPK-TS); Perceived Ease of Use (PEOU); Perceived Usefulness (PU); Intention (INT); ERP Self-efficacy (ERPSE); Attitude/Feeling (ATT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9618] "Constructs: Performance expectancy (PE); Effort expectancy (EE); Social influence (SI); Facilitating conditions (FC); Perceived risk (PR); Perceived city smartness level (PCSL); Perceived technical information transparency (PTIT); Behavioral intention (BI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9619] "Factors: Innovation Competency (Product; Culture; Service; Esthetic; Technology); Foodstagramming benefit (Self-Expression; Enrichment of Dining Experience; Social Connection; Virtual Community Engagement; Special Occasion Memory); Identity-signaling; Food-related Personality Traits (Neophilic tendency; Neophobic tendency); Intention to Revisit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9620] "Factors: Moral Guilt Induction; Conventional Guilt Induction; Prudential Guilt Induction; Personal Guilt Induction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9621] "Subscales: Connectedness to self (CTS); Connectedness to others (CTO); Connectedness to world (CTW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9622] "Factors: Self-efficacy (general); Social self-efficacy; Self-management self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9623] "Subscales: Purpose; Assets; Heirs; Plan."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9624] "Subscales: General Stress; Specific Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9625] "Factors: Task cohesion; Social cohesion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9626] "Factors: Situation-specific beliefs (Factor 1; Communication skills; Factor 3; Actual preparation); General beliefs (Professionals; Alcohol/drugs; Victims)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9627] "Factors: Individual Attractions to the Group–Task (ATG-T); Individual Attractions to the Group-Social (ATG-S); Group Integration–Task (GI-T); Group Integration-Social (GI-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9628] "Factors: Attraction to Group-Social; Attraction to Group-Task; Group Integration-Social; Group Integration-Task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9629] "Subscales: Factual knowledge; Learning from Experience; Practical knowing-Talking support; Practical knowing-Hands on care; Community capacity-Accessing help; Community capacity-Support groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9630] "Subscales: Private behaviors; Public behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9631] "Subscales: Susceptibility; Seriousness; Benefits; Barriers; Health Motivation; Cue to Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9632] "Factors: Personal and Social Skills (PSS); Cognitive Skills (CS); Goal Setting (GS); Initiative (INI); Physical and Psychological Health (PPH); Negative Experiences (NE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9633] "Factors: COVID-19 challenges; Family-life disturbance; Work-life imbalance; Employees’ stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9634] "Factors: High-performance work systems; Safety climate; Risk-taking behavior; Organizational citizenship behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9635] "Subscales: Stereotype; Civil rights & distant contact; Medico-scientific discourse; Social norms; Close contact; Personal opinions; Campus activities; School life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9636] "Factors: Unnecessary and risky; Health benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9637] "Factors (Domains): Knowledge of mobile phone hazards while driving (Knowledge of Distracting Phone Activities, KDPA; Knowledge of Handheld/Hands-Free Phone Use, KHPU); Attitude towards mobile phone use while driving; Practice of mobile phone use while driving (Practice of Primary Phone Tasks, PPPT; Practice of Secondary Phone Tasks, PSPT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9638] "Factors: Enacted stigma; Internalised stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9639] "Subscales: Quality and nurse enhancement attributions; Cost reduction and nurse exploitation attributions; Compliance attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9640] "Subscales: Emotion vocabulary; Emotion identification; Emotion understanding; Emotion expression; Emotion regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9641] "Factors: Affective Symptoms; Fatigue, Sleep, and Anhedonia; Symptom Frequency; Impairment and Severity of Appetite Change and Physical Symptoms; Difficulty Concentrating. Subscales: Frequency, Impairment, Severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9642] "Factors: Student; Worker; Homemaker; Leisurite; Citizen."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9643] "Factors: Awareness of the Necessity for School Guidance Services; Awareness for Understanding of Guidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9644] "Factors: Interpersonal; Intrapersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9645] "Factors: Self-efficacy; Covered needs; Social support; Social integration; Job training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9646] "Factors: Relationship Threat; Masturbation Disgust; Self-Esteem Threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9647] "Subscales: Revenge; Avoidance; Benevolence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9648] "Factors: Feeling understood and supported by healthcare providers; Having sufficient information to manage my health; Actively managing my health; Social support for health; Appraisal of health information; Ability to actively engage with healthcare providers; Navigating the healthcare system; Ability to find good health information; Understand health information well enough to know what to do."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9649] "Factors: Difficulty concentrating; Procrastination; Communication problems; Insecurity; Perfectionism; Social anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9650] "Subscales: Visuospatial Working Memory Task; Mental Rotation Task; Space Rockets Cancellation Task; Houses Cancellation Task; Cats Cancellation Task; Space Orientation Task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9651] "Factors: Pedagogical skills; Close attention to the student; Working in a village school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9652] "Factors: Family belief system (Meaning-making of adversity; Positive outlook; Transcendence/spirituality); Family organizational processes (Flexibility; Connectedness; Social & economic resources); Communication and problem-solving processes (Clear, consistent messages; Open emotional expression; Collaborative problem-solving)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9653] "Factors: Belief systems (Making meaning of adversity; Positive outlook; Transcendence and spirituality); Organizational patterns (Flexibility; Connectedness; Social and economic resources); Communication/problem-solving (Clarity; Open emotional expression; Collaboration problem-solving)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9654] "Subscales: Sequences; Simple loops; Complex loops; Conditionals; While statements; Combinations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9655] "Subscales: Performance/competence; Interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9656] "Domains: Authors and audiences [vaping Authors and Audiences]; Messages and meanings [vaping Messages and Meanings]; Representation and reality [vaping Representation and Reality])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9657] "Constructs: Strategic partner; Change agent; Administrative expert; Employee champion; Internal efficiency; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9658] "Constructs: Content creation intention (INT); Perceived community support (PCS); Perceived identity verification (PIV); Self-efficacy of online presentation (SE); Norms of online presentation (NOR); Social involvement (SI); Vertical social involvement (VSI); Horizontal social involvement (HSI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9659] "Factors: Awareness and understanding of the high-risk pregnancy status; Fear of the negative influence of drugs and diseases on the health and safety of the fetus; Unpredictable health outcomes; Concern about the health and safety of the child and woman after birth; Economic burden; Changes in the lifestyle pattern; Need for information about the process of maternal care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9660] "Factors: Co-reflection; Co-brooding; Co-avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9661] "Factors: Deep approach; Surface approach."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9662] "Factors: Agency; Communion. Subscales: Sensitive to control; Sensitive to antagonism; Sensitive to remoteness; Sensitive to timidity; Sensitive to passivity; Sensitive to dependence; Sensitive to affection; Sensitive to attention-seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9663] "Factors: Pandemic Anxiety Travel; Tourism Ethnocentrism; Tourist Xenophobia; Support for Tourism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9664] "Factors: Face Concerns; Self-Stigma; Mental Health Problems (Depression; Anxiety); Perceived language discrimination (PLD); Perceived English proficiency (PEP); Help-Seeking Intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9665] "Factors: Ease/Familiarity with Postural Awareness; Need for Attention Regulation with Postural Awareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9666] "Subscales: Disease consequences; Perceived illness duration; Ability to control illness; treatment effectiveness; Understanding of illness; Cyclical nature of disease; Emotional experience of illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9667] "Factors: Symbolic; Psychological; Experiential; Functional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9668] "Subscales: Motor skills; Sensory skills; Computer Equipment; Computer Set Up."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9669] "Scales: High Socioeconomic Status Society Beliefs (HSB); Low Socioeconomic Status Society Beliefs (LSB). Subscale: Merit (Effort; Ability); Opportunity (Social connections; Privilege); Chance (Luck; Fate)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9670] "Factors: Limiting Communication; Empowering Communication. Subscales: Comprehensibility; Manner; Listening; Openness; Feedback; Empathy; Nonverbal; Paralanguage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9671] "Subscales: Impulse-control; Self-discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9672] "Factors: Exposure; Susceptibility; Severity; Affective response."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9673] "Dimensions: Emotional aspects; Social aspects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9674] "Subscales: Responsibility and Accountability; Shared Authority; Interdisciplinary Education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9675] "Factors: Organizational engagement; Affective engagement; Performance engagement; Cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9676] "Factors: Lifestyle management; Medical treatment compliance; Management of medication and dietary supplements; Alcohol consumption management; Sleep management; Family support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9677] "Subscales: Spiritual distress; Spiritual coping; Immanence; Transcendence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9678] "Subscales: Stress perception; Emotional control; Depression; Aggressiveness; Alcohol consumption; Risky behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9679] "Constructs: Facility Conditions; Social Influence; Effort Expectancy; Habit; Use Intention; Quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9680] "Constructs: Panic buying; Perceived vulnerability; Perceived resilience; COVID conspiracy; Perceived COVID threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9681] "Subscales: Severity; Vulnerability; Response efficacy; Self-efficacy; Response cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9682] "Factors: Brand experience (Sensory; Affective; Cognitive; Relational); Brand evaluations; Level of participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9683] "Factors: Horizontal Individualism (HI); Vertical individualism (VI); Horizontal Collectivism (HC); Vertical Collectivism (VC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9684] "Subscales: Positive Emotional Responses to Social Media; Negative Emotional Responses to Social Media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9685] "Factors: Home-School Communication; Home-Based Activities; School-Based Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9686] "Factors: Home-based Involvement; School-based Involvement; Home–School Communication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9687] "Subscales: Intentional Behavior; Using Resources; Planfulness; Readiness for Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9688] "Factors: Emotional Support and Empathy; Altruistic Love."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9689] "Subscales [Factors]: Eustress [Workload; Home-work balance; Relationship; Personal accountability]; Distress [Workload; Relationship; Home-work balance; Personal accountability]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9690] "Factors: Career; Community; Financial; Physical; Social; Spiritual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9691] "Factors: Self-efficacy; Career outcome expectations; Goals; Actions; Faculty barriers; Job sex discrimination barrier; Parental support; Faculty support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9692] "Subscales: Career Exploration (CIDI-E: career identity confusion; current career exploration in breadth; career exploration in depth; past career exploration in breadth); Career Commitment (CIDI-C: career commitment label; career commitment making; career commitment knowledge; career commitment quality)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9693] "Factors: Negative affectivity (NI); Commitment anxiety (CCA); Need for Information (NI); Lack of Readiness (LR); Interpersonal conflicts (IC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9694] "Subscales: Leisure activities; Household activities; Work-related activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9695] "Subscales: Neuroticism/Negative affectivity (NNA); Choice/Commitment anxiety (CCA); Lack of readiness (LR); Interpersonal conflicts (IC); Need for information (NI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9696] "Factors: Self-determination; Emotional self-regulation; Personal competence of disease management perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9697] "Subscales: Volition; Questioning; Literary production; Monitoring parent's reading; Cognitive reasons to read to children; Emotional reasons to read to children; Facilitation of reading comprehension; Alphabetical activities with the child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9698] "Factors: Mature; Mental inhibition and avoidance; Immature-depressive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9699] "Factors: Human agent (Trustworthiness; Trust; Fairness; Acceptance; Organizational attractiveness; Organizational support); Automated agent (Trustworthiness; Trust; Fairness; Acceptance; Organizational attractiveness; Organizational support); Controls (Propensity to trust; Trust in technology)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9700] "Subscales: Escapism and Dysfunctional Emotional Coping (EDEC); Withdrawal Symptoms (WS); Impairments and Dysfunctional Self-Regulation (IDSR); Dysfunctional Internet-related Self-Control (DISC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9701] "Subscales: Skills knowledge; Confidence; Preparedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9702] "Subscales: Skills, Confidence, Peparedness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9703] "Factors: Daily Care; Medical Care; Acquiring Information; Parent Advocacy; Time Spent with Infant; Closeness and Comforting the Infant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9704] "Factors: Patient-centered medication management; Improvement of safety problems; Management of effecting factors; Safety risk management; Multidisciplinary collaboration; Responsibility in the nursing profession."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9705] "Constructs: Fear of COVID-19 (FCV19 S); Future career anxiety (FCA); Depression from COVID-19 (DEP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9706] "Constructs: Opportunism; Reward magnitude; Competition intensity; Outcome-based rewards; Process-based rewards. Control variables: Market uncertainty; Monetary reward; Non-monetary reward; Relationship length; Dependence; Firm size."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9707] "Factors: Emotional Support for Nurses; Palliative Values; Patient and Family Preferences; Resources; Organizational Support; Care Planning; Knowledge and Preparedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9708] "Subscales: Knowledge; Preparedness; Patient and Family Preferences; Organisational Culture; Resources; Palliative Values; Emotional Support; Care Planning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9709] "Factors: Collaborative consumption; Frugality; Trust; Excitement seeking; Sociability; Eco-consciousness; Prosumption; Online relationship seeking; Subjective norms; Past experience with collaborative consumption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9710] "Subscales: Maintaining Activity and Independence; Seeking and Understanding Medical Information; Managing Stress and Distress; Managing Side-Effects; Accepting Cancer/Maintaining a Positive Attitude/Making Decision; Seeking Support; Using Spiritual Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9711] "Subscales: Task undergraduate socialization domain (USQ-T); Group undergraduate socialization domain (USQ-G); Organization undergraduate socialization domain (USQ-O)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9712] "Subscales: Dysphoria; Lassitude; Insomnia; Suicidality; Appetite Gain; Appetite Loss; Well-Being; Ill Temper; Mania; Euphoria; Social Anxiety; Claustrophobia; Traumatic Intrusions; Traumatic Avoidance; Ordering; Cleaning; Checking; Panic. Factors: Distress; Obsessions/Fear; Positive Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9713] "Factors: Importance; Demand; Competence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9714] "Factors: Commitment, Capitulation, Resistance, Disengagement and Game Playing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9715] "Factors: Optimism; Communication; Self-esteem/evaluation; Self-awareness; Trustworthiness; Self-regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9716] "Relapse; Avoidance urge; Approach urge; Negative affect; Negative affect tolerance; Self-control; Non-reactivity to inner experience; Observing; Acting with awareness; Describing; Non-judging of inner experience; Smartphone game addiction; Social desirability bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9717] "Factors: Attitude; Disposition to Value Privacy; Internet Risk Perception; Perceived Cyber Attack Exposure; Perceived Social Networking Site Risk; Privacy Breach Concern; Social Networking Site Use; Trust in Social Networking Site Members; Trust in Social Networking Site."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9718] "Focus (Scales): Content (Pedagogy of teacher education; Curriculum; Research); Activity (Getting input from others; Learning through academic engagement; Learning through reflective activity); Reason (Personal ambition; External requirement; Professional role transition)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9719] "Factors: Vibrant; Authentic; Rebellious; Original."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9720] "Factors: Servant leadership; Customer orientation; Service innovative behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9721] "Factors: Needs fulfillment; Influence; Shared emotional connection; Rule compliance; Membership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9722] "Factors: Client focus; Rapport."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9723] "Subscales: Cognitive; Emotional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9724] "Factors: Reenactment; Remorse; Revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9725] "Factors: Intrinsic Motivation For Knowledge; Intrinsic Motivation For Stimulation; Integrated-Identified Regulation; Introjected Regulation; External Regulation; Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9726] "Factors: Academic Support; Financial Support; Support From Family; Support From Friends; Practical Support; Emotional Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9727] "Subscales: TNCM avoidant coping scales: (Strategic gender expression; Behavioral avoidance; Identity nondisclosure); TNCM facilitative coping scales: (Social support/Connection; Social activism; Hope)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9728] "Factors: Dominance; Deficient Attachment; Disinhibition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9729] "Subscales: Hopkins Verbal Learning Test-Revised (HVLT); Wechsler Adult Intelligence Scale-III (WAIS-III) Symbol Search; Grooved Pegboard; Wechsler Memory Scale-III (WMS-III) Spatial Span; Controlled Oral Word Association (COWAT-FAS); Stroop Task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9730] "Subscales: Boundarylessness; Multitasking; Demand for constant learning; Non-work-related interruptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9731] "Constructs: Perceived susceptibility and severity of influenza; Perceptions related to IV (Perceived self-efficacy; Perceived benefit; Perceived barrier; Cues to action; Subjective norms); Parental exposure to related media messages."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9732] "Factors: Entrepreneurial passion; Entrepreneurial orientation (Innovativeness; Proactiveness; Risk-taking); Strategic entrepreneurial behavior; Linear thinking; Nonlinear thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9733] "Constructs: Alert scanning and search (SS); Alert association and connection (AC); Evaluation and judgment (EJ); Entrepreneurial Self-Efficacy (ESE); Market knowledge (PMK); Networking (NET); Promotion (PR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9734] "Constructs: Agreeableness; Conscientiousness; Extraversion; Neuroticism; Openness; Buyer–Seller Interaction; Shopping Enjoyment; Compulsive Buying."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9735] "Factors: Universalism (Un); Environmental unconcern (EU); Pro-environmental purchasing behaviour (PPB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9736] "Subscales: Avoidance; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9737] "Subscales: Avoidance (PAQ-avo); Anxiety (PAQ-anx)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9738] "Factors: Dissolution intention; Conflict; Trust; Solidarity; Flexibility; Mutuality; Unfairness; Dependence; Termination cost."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9739] "Factors: Suboptimal patient care due to organizational restrictions; Inadequate emotional support for patients and their families; Fear of contamination; Collaboration with patients and their families; Culture of fear and hierarchy; Administrative burden; Disproportional and aimless care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9740] "Subscales: Self-care in management of signs and symptoms; Self-care in prevention of complications."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9741] "Factors: Overdose risks; Overdose signs; Rescue/advanced knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9742] "Constructs: Perceived Quality (Facilities; Service staff; Teachers' attitudes and behavior; Competence of teachers; Career opportunity); Perceived value; Expectation; Satisfaction; Loyalty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9743] "Subscales: Idealism; Relativism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9744] "Domains: Numeracy (Measurement vocabulary; Shape naming; Spatial vocabulary; Numerical identification; Operations with sets); Vocabulary; Executive function (Inhibitory control; Memory)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9745] "Factors: Practice and culture of ethical awareness and support; Self-reflective and empowering leadership by physicians; Culture of not avoiding end-of-life decisions; Practice and culture of open interdisciplinary reflection/discussion; Active involvement of nurses in end-of-life care and decision making; Relaxation after or during work; Culture of mutual respect within the interdisciplinary team; Active decision making by physicians."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9746] "Factors: Client-empathetic; Development-oriented; Patient-focused; Client-devolved."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9747] "Subscales: Don’t Exist; Don’t Be You; Don’t Be a Child; Don’t Grow Up; Don’t Succeed; Don’t Be Important; Don’t Be Close; Don’t Belong; Don’t Be Well; Don’t Be Sane; Don’t Think; Don’t Feel."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9748] "Subscales: SI: Self-identity; SB: Social bonding; UT: Utilitarian; HUM: Humor; AEST: Aesthetic; AWE: Awe-inspiring; DISC: Discerning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9749] "Factors: Health status; Belonging; Psychological relief; External appearance; Enjoyment/entertainment; Competitiveness; Competences/abilities; Expectations of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9750] "Factors: Excessive use of networks; Modification of the state of mind; Need/obsession for being connected to social networks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9751] "Factors: Supervisor prescriptive norm of employee green behaviors; Supervisor descriptive norm of employee green behaviors; Promotion focus of employee green behaviors; Prevention focus of employee green behaviors; Voluntary employee green behaviors; Required employee green behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9752] "Factors: Suspicion of sellers; Anticipated aversive emotions; Deception detection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9753] "Subscales: Help seeking; Positive outlook; Spiritual support; Continuing Bond; Compassionate outreach; Social support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9754] "Factors: Information and Communication With Patients; Time Constraints of Health-care Professionals; Diagnosis and Treatment; Hygiene and Communication Among Health-care Professionals; Knowledge and Operational Procedures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9755] "Factors: Behaviour ‘destination specific pro-environmental; Socially responsible behaviour; Environmental learning behaviour; Culturally favourable behaviour; Economically favourable behaviour."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9756] "Factors: Entrepreneurial alertness (Scanning and searching; Association and connection; Evaluation and judgement); Entrepreneurial learning; Risk perception; Business model innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9757] "Subscales: Fear of or Unawareness of Treatment; Doubt or Inefficiency; Social Stigma."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9758] "Constructs: Unit-level workload; Job-level workload; Task-level workload; Noise; Layout; Ease of locating a call light; Staff perceptions about the system; Autonomy; Supervisor support; Job satisfaction; Job stress and burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9759] "Subscales: Negative questions/Perceived distress; Positive questions/Perceived coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9760] "Subscales: Open Data; Preprinting; Open peer review in small scientific communities; Open Peer-review."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9761] "Factors: Intrusion; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9762] "Factors: Social comfort; Distraction; Overuse; Preoccupation; Lack."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9763] "Subscales: Pro-intervention; Lack of capacity; Chronicity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9764] "Factors: Exhaustion; Disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9765] "Subscales: Fear and avoidance (AV); Unpredictability (UN); Authoritarianism (AU); Resentment (MG)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9766] "Dimensions: Anticipated stigma; Emotional distress; Sexuality; Social support; Material deprivation; Sleep and fatigue; Cognitive problems; Physical symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9767] "Subscales: Self-efficacy; Emotional readiness; Motivational readiness; Partner abuse knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9768] "Factors: School Self-Esteem; Body Self-Esteem; Family Self-Esteem; Interpersonal Self-Esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9769] "Subscales: Self-functioning; Interpersonal functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9770] "Subscales: Clarity; Congruency of Supervisors; Congruency of Management; Feasibility; Supportability; Transparency; Discussability; Sanctionability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9771] "Subscales: Religiosity; Perceived aesthetic; Perceived comfort; Perceived compatibility; Attitude; Subjective norm; Perceived behavioral control; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9772] "Factors (Attitudes): Facemask avoidance; Concerned adherence; Vexed faultfinding; Statement making; Fashion enthusiasm; Hygiene adherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9773] "Factors: Pandemic Fear (PF); Attitude Toward Online Purchasing Toward Exercise Apparel (ATT); Subjective Norms (SN); Perceived Behavioral Control (PBC); Online Purchase Intentions Toward Exercise Apparel (OPI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9774] "Domains: Child; Family; Caregiver; Financial; Social Network; Partner Relationship; Coping; QoL Change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9775] "Subscales: Symptom Checklist; Severity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9776] "Subscales: Symptom Checklist; Severity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9777] "Subscales: Part I (Rejection sensitivity; Anxiety; Expectancy); Part II (Resignation and self-attribution; Anger and aggression; Disappointment and grief)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9778] "Sections: Supervisor-related, Team-member related, and Supervisor-reported team organizational citizenship behavior and interpersonal deviance Constructs: Employee knowledge hiding (EKH); Perceived organizational politics (POP); Leader knowledge hiding (LKH); Team interpersonal deviance (TIPD); Team organizational citizenship behavior (TOCB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9779] "Constructs: Environmental Concern; Health Concern; Environmental Attitude; Eco-Friendly Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9780] "Subscales: General behavior (GenBehav); Sexual behavior (SexBehav); Socioecological intervention needs (SocioE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9781] "Factors: Knowledge of mental health problems; Erroneous beliefs/stereotypes; First-aid skills and help-seeking behavior; Self-help strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9782] "Factors: Perceived performance shock (PPS); Perceived task shock (PTS); Perceived occupational shock (POS); Perceived mental shock (PMS); Perceived health shock (PHS); Perceived family and life shock (PFLS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9783] "Factors: Perceived knowledge; Attitudes; Behavioral intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9784] "Factors: Impairment; Symptom Severity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9785] "Constructs: External influencer (EXI); Experience (EXP); Hedonic value (HED); Service quality (SQ); Economic appeal (ECA); Peer influencer (PEI); Loyalty (LOY); Social appeal (SOA); Intention (INT); Utility (UT); Word of mouth (WOM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9786] "Subscales: Trust; Supplier innovativeness; Customer integration; Supplier integration; Internal integration; Sustainable performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9787] "Factors: Goal and Success Orientation; No Domination by Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9788] "Subscales: Clinical; System; Team-Personal; Team-Patient."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9789] "Factors: High-commitment work system (HCWS); Leader Trust; Psychological empowerment; Work well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9790] "Factors: Team performance; Team learning; Team voice; Contingent reward transactional (CRT) leadership."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9791] "Factors: Positive emotions due to gaming; Impaired gaming control; Problems with time-management while gaming; Gaming priority; Emotional engagement in gaming; Conflicts with others due to gaming; Gaming regardless of own well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9792] "Factors: Pandemic Concern; Pandemic Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9793] "Factors: Doubts; Sexual intrusions; Aggressive intrusions; Contamination intrusions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9794] "Factors: Bad-self; Bad-outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9795] "Factors: Psychological violence; Physical violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9796] "Constructs: Psychological violence; Physical violence; Sexual violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9797] "Subscales: Personal competence; Planned future; Social competence; Family cohesion; Social resources; Structured style."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9798] "Factors: Taboo; Oral sex; Promiscuity; Hygiene; BDSM; Same-sex attraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9799] "Subscales: Tinnitus; Hearing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9800] "Domains: Sociodemographic characteristics; Screen-time exposure and Home media environment; Level of physical activity; Media related behaviors; Media literacy of the parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9801] "Subscales: Life Satisfaction; Acceptance of Hearing Loss; Social Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9802] "Factors: Parental Stressors; Parental Benefits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9803] "Factors: Caregiver Contribution to Self-care Maintenance; Caregiver Contribution to Self-care Management; Caregiver Confidence in Contributing to Self-care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9804] "Subscales: Perceived Threat of COVID-19 (Perceived susceptibility; Perceived severity); Preventive behavior (Handwashing; Cough etiquette; Social distancing behavior); Social media use (Medical use; General use); Self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9805] "Factors: Behavioral skills; Interpersonal skills; Mindfulness skills; Cognitive skills; Emotionally impaired coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9806] "Constructs: Propensity to take risk; Entrepreneurial self-efficacy; Self-confidence; Tolerance to ambiguity; Innovativeness; Individualism; Collectivism; Power distance; Entrepreneurial intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9807] "Subscales: Trust; Anxiety; Acceptance of Self-Quarantine; Essential Knowledge of COVID-19; Self-Health Perception; Preventive Measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9808] "Subscales: Stress; Right; Right to Respect; Hidden; Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9809] "Subscales: General beliefs; Causes; Cures. Factors: Dangerousness of people with schizophrenia; Superstitious beliefs; Abnormality of schizophrenia; Norms; Rights of people with schizophrenia; Social status; Sociological; Biological; Cognitive; Functions of mental hospitals; Care for people with schizophrenia; Society's duty; Respect to people with schizophrenia; Acceptability of people with schizophrenia by the public; Treatment for people with schizophrenia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9810] "Subscales: Uncontrolled eating behavior; Cognitive rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9811] "Subscales: Risk Seeking (RS); Experience Seeking (ES)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9812] "Subscales: Social EcoWellness; Environmental EcoWellness; Mental EcoWellness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9813] "Subscales: Positive attitude; Subjective norm; Perceived behavioral control; Risk-susceptibility; Risk-severity; Obedience to advice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9814] "Subscales: Provider Belief; Provider Awareness; Provider Self-Efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9815] "Factors: Dispositional; Situational."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9816] "Factors: Victimizing; Blaming."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9817] "Subscales: Physical fatigability; Mental fatigability. Categories of fatigability: Social; Sedentary; Lifestyle or light intensity; Moderate to high intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9818] "Subscales: FACT-General (FACT-G) (Physical well-being (PWB); Social well-being (SWB); Emotional well-being (EWB); Functional wellbeing (FWB); Friends’ support; Illness acceptance; Fear of death); Melanoma scale (MS) (Symptoms yes; Symptoms no); Melanoma surgery scale (MSS) (Pain; Skin problems; Abdominal metastases; Other problems)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9819] "Subscales: Physical well-being (PWB); Social/family well-being (SWB); Emotional well-being (EWB); Functional well-being (FWB); Melanoma; Melanoma surgery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9820] "Factors (Prevention Behaviors): Distancing; Hygiene."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9821] "Subscales: General emotion; Constructive versus unconstructive; Cognitive/motivational versus affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9822] "Constructs: Employer event communication; Resilience; Intrusive rumination; Deliberate rumination; Customer demandingness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9823] "Constructs: Behavioral control; Outcome control; Franchisee dependence; Environmental uncertainty; Perfunctory compliance; Consummate compliance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9824] "Constructs: Coopetitive relationship (Cooperative engagement; Competitive engagement); Trust (Goodwill trust; Competence trust); Distrust (Malevolence; Discredibility); Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9825] "Constructs: Work overload; Product complexity; Work meaning; Capability control; Turnover intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9826] "Constructs: Inter-organizational coordination (IC); Alliance portfolio coordination (APC); Inter-organizational learning (IL); Alliance pro-activeness (AP); Alliance transformation (AT); Artificial intelligence powered supply chain analytics capability (AI-SCAC); Environmental dynamism (ED); Operational performance (OP); Financial performance (FP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9827] "Constructs: Use intensity; Salesperson Performance; Value-Oriented Prospecting; Adaptive Selling; Proactive Servicing; Peer Social Media Usage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9828] "Constructs: Surface Acting; Deep Acting; Revenge; Avoidance; Forgiveness; Customer Loyalty to the Salesperson."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9829] "Factors: Caring Taking Procedures; Evoking Behaviors; Reading Behaviors; Situational Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9830] "Factors: Speaking in Public/talking With People in Authority; Interaction With the Opposite Sex; Assertive Expression of Annoyance, Disgust or Displeasure; Criticism And Embarrassment; Interactions With Strangers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9831] "Subscales: Physical limitations; Symptom frequency; Symptom severity; Symptom stability; Self-efficacy; Social limitations; Quality of life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9832] "Engagement with parents (Factors): Emotional support; Sideline behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9833] "Subscales: Green supplier integration; Green customer integration; Green internal integration; Manufacturer financial performance; Information sharing with suppliers; Information sharing with customers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9834] "Constructs: Green expertise; Green creativity skills; Green task motivation; Leader smart technologies, artificial intelligence, robotics and algorithms competency; Green organizational innovative evidence; Environmental dynamism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9835] "Constructs: Dominant regulatory focus; Green IT strategies; Corporate performance; Regulatory stakeholder influence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9836] "Factor: Psychological recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9837] "Factors: Cognitive Process; Affective Process; Behavioral Process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9838] "Factors: Brand importance; Brand consistency; Brand differentiation; Brand intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9839] "Factors: Preparation (planning and arrangements prior to FC); Discussion (during FC); Follow-up (after FC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9840] "Subscales: Caregiver self-esteem; Impact on health; Lack of family support; Impact on schedule; Impact on finances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9841] "Subscales: Compassion and True Presence; Moral Responsibility; Moral Integrity; Commitment to Good Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9842] "Subscales: Practice; Application; Collaboration; Comprehension; Analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9843] "Factors: Maintenance; Management; Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9844] "Factors: Advanced self-management skills; Adverse health behaviors; Medication adherence; Diet-related knowledge regarding hypertension; Information skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9845] "Factors: Promotes supportive and meaningful interactions; Promotes connections with others; Acts on behalf of others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9846] "Factors: Emotional burden due to end-of-life discussions (EB); Negative attitudes towards end-of-life discussions (NA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9847] "Domains: Human factors (HF); Product practices (PDPRC); Logistics practices (LGPRC); Process practices (PROPRC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9848] "Constructs: Internalization (Daily practices; Continuous improvement); Environmental practices; Environmental performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9849] "Constructs: Company staff; Internal capabilities; Environmental awareness; Norms and regulations; Environmental performance; Economic performance; Proximity to intermediaries; Customers, suppliers, and competitors; Incentives; Environmental innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9850] "Constructs: Relational governance; Contract utilization; Alliance performance; Previous alliance experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9851] "Dimensions: Severity; Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9852] "Factors: Information persuasiveness; Information completeness; Information credibility; Eco-label credibility; Consumer knowledge; Green brand credibility; Green brand evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9853] "Dimensions: Adoption intention (AI); Perceived usefulness (PU); Perceived risk (PR); Purchase intention; Perceived time pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9854] "Factors: Time, Effort and Desire; Peace, Bliss and Silence; Self-Knowledge, Autonomous Cognizance and Insight; Wakeful Presence; Pure Awareness in Dream and Sleep; Luminosity; Thoughts and Feelings; Emptiness and Non-egoic Self-awareness; Sensory Perception in Body and Space; Touching World and Self; Mental Agency; Witness Consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9855] "Constructs: Attitudes; School climate; Technological Pedagogical Content Knowledge (TPACK); Technology integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9856] "Subscales: Team performance; Pre-existing resources; Team leader performance; Anticipation; Changes in activity; Changes in operating procedures; Development of new resources; Team cohesiveness; Satisfaction with how the problematic situation was managed; Risk exposure; Skill development; Quality control and stress control; Stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9857] "Factors: Quantity of Intimate Peer Relationship; Quantity of Non- Intimate Peer Relationship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9858] "Subscales: Low tolerance of distress; Rigid adherence to therapeutic model; Responsibility to outcome; Need for control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9859] "Subscales: Positive Meaning Scale; Vulnerability Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9860] "Domains: Family health; Financial well-being; Family relationships; Support from others; Support from services; Influence of Values; Careers; Leisure and recreation; Community interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9861] "Subscales: Passive risk corona behaviors (PRCB); Active risk corona behaviors (ARCB)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9862] "Factors: Make Money; Fun; Socialization; Recreation/Escape; Knowledge of the game; Interest in the Sports; Being in the game."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9863] "Subscales: Fear; Depression; Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9864] "Factors: Need for Clarity/Familiarity (CLS1); Susceptibility to Load (CLS2); Conceptual Relations (CLS3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9865] "Factors: Instructional Practices; Language Modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9866] "Subscale: Daily life disturbance; Positive anticipation; Withdrawal; Cyberspace oriented relationship; Overuse; Tolerance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9867] "Factors: Trust; Reciprocity; Network."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9868] "Factors: Neglect; Boredom."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9869] "Constructs: Tax Benefits; Functional and Social Benefits; Social Recognition; Guilt Mitigation; Attitude towards Charitable Organization; Attitude towards Helping Others; Donor's Perceived Value."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9870] "Factors: Self-efficacy in self-care maintenance and monitoring; Self-efficacy in self-care management."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9871] "Constructs: Recognition; Prediction; Recommendation; Decision-making."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9872] "Categories: Crime-related events; General disasters and traumas; Relationship issues; Physical and sexual experiences; Homeless experiences; Mental health experiences; Other events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9873] "Subscales: Devaluing Women; Distrust of Women; Gender Bias in Favor of Men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9874] "Factors: Musical communication; Enthusiasm and motivation; Analytical understanding of music; Musical abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9875] "Factors: Patriotism; Prosocial; Protectionism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9876] "Factors: Learning Environment/Academic Performance; Relationships; Health; Lack of time; Learning issues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9877] "Factors: Responsive Communication During Feeding; Attentive to Child’s Signals and Appropriate Feeding; Proactive Preparation of the Feeding Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9878] "Factors: Willingness to accommodate learning disabilities; Willingness to accommodate deaf or blind; Willingness to accommodate emotional problems; Willingness to accommodate physical disabilities; Assumptions about students with disabilities; Professional development; Friendships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9879] "Constructs: Perspectives on accommodations for students with visual impairments; Assumptions about students with visual impairments; Professional development to instruct students with visual impairments."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9880] "Factors: Health behavior; Social support; Substance use; Avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9881] "Factors: Personal Satisfaction; Societal Satisfaction; Community Satisfaction; Health Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9882] "Factors: Health care; Social integration; Contribution; Enjoyment; Security; Restriction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9883] "Subscales: Technical Skills; Attitude and Behaviours; Estimation Capacity; Foreign Language Skill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9884] "Factors: Principles of Cooperative Relationship; Formal Regulation of Cooperation; Cooperation Focused on Organisational Mission."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9885] "Subscales: Use of OER; Publishing of OER."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9886] "Subscales: Efficacy for Student Engagement (ESE); Efficacy for Instructional Strategies (EIS); Efficacy for Classroom Management (ECM)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9887] "Factors: Dependence; Negative Consequences; Withdrawal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9888] "Factors: Loss of Control; Withdrawal; Negative Life Consequences; Craving; Peer Dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9889] "Factors: Fatigue; Immuno-cardiovascular; Cognition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9890] "Subscales: Self-Efficacy; Positive Thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9891] "Factors: Loss of Health Status and/or Physical Capacity; Loss of Significant Affective Relationships; Loss Due to the Death of Loved Ones; Loss of Social Integration; Loss of Material Living Conditions; Cognitive Loss."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9892] "Subscales: Perceived academic competency; Time management; Preferred tutor's characteristics; Use of technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9893] "Subscales: Activation of experiential marketing; Sponsorship satisfaction; Brand equity of the sponsoring company; Purchase intention regarding the sponsoring products."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9894] "Factors: Conscientiousness; Extraversion; Neuroticism; Agreeableness; Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9895] "Factors: Concentration; Enjoyment in Solitude; Sense of Humor; Imagination; Interest; Irrational Beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9896] "Subscales: Chronic (Relationship; Self; Communication; Environment); Acute (Relationship; Self; Communication; Environment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9897] "Factors: Management commitment; Communication and use of products; Tolerance to risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9898] "Constructs: Brand social power (BSP); Desire to gain mian-zi; Fear of losing lian; Purchase intention toward counterfeit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9899] "Constructs: Social media marketing activities; User experience; Martial arts attachment; Attitudes toward martial arts; Subjective norms; Intention to participate in martial arts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9900] "Factors: Ease of access to bicycles; Perceived risk; Environmental awareness; Psychological benefits; Managerial provision; Perceived rule adherence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9901] "Constructs: Health Consciousness; Competition; Socializing; Customizing; Training; Expected Utilitarian Benefits; Expected Hedonic Benefits; Privacy Concerns; Unacceptance of Cheating; Continuance Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9902] "Factors: Cognitive; Affective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9903] "Subscales: Culture; Exports; Governance; Immigration and investments; People; Tourism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9904] "Subscales: Family rejection; Family acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9905] "Factor Constructs: Meeting productivity; Personal productivity; Effectiveness; Efficiency; Certainty; Satisfaction; Advantage; Experience; Complexity; Learnability; Intention; Actual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9906] "Constructs: Subjective learning outcomes; Learner–learner interactions; Learner–teacher interactions; Learner–content interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9907] "Factors: Extraversion; Neuroticism; Insect phobia; Gameplay interest; Self-confidence enhancement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9908] "Subscales: Psychological Safety; Educational Alliance; Empathy; Feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9909] "Domains: Interpersonal; Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9910] "Constructs: Avoidance intentions; Revenge intentions; Customer entitlement; Locus of causality; Status demotion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9911] "Subscales: Emergent Social Presence; Transcendent Social Presence; Trust; Perceived Ease of Use; Perceived Usefulness; Intentions to Use the App."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9912] "Factors: Self-efficacy; Innovativeness; Ease of understanding; Ease of incorporating; Student value; Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9913] "Constructs: Military animosity beliefs; Anger, Fear; negative word of mouth (NWOM); Product avoidance; Product quality perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9914] "Constructs: Radical innovation performance; Organizational unlearning; Information search; Knowledge creation; Dysfunctional competition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9915] "Constructs: Ideation performance (IP); Customer collaboration in ideation (CCI); Partner collaboration in ideation (PCI); Development performance (DVP); Customer collaboration in development (CCII); Partner collaboration in development (PCII); Deployment performance (DPP); Customer collaboration in deployment (CCIII); Partner collaboration in deployment (PCIII)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9916] "Constructs: Relational ties; Accommodative behaviors; Satisfaction; Willingness for investment on the relationship; Customer-specific capabilities; Retailer’s cooperation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9917] "Subscales: Work-family interference (WF); Family-work interference (FW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9918] "Factors: Work interfering with family; Family interfering with work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9919] "Factors: Enhancing positive affect; Perspective-taking; Soothing; Social modeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9920] "Constructs: Perceived inequity; Revenge intentions; Avoidance intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9921] "Subscales: Section 1 - Students' learning experiences in time of COVID-19; Section 2 - Students' interactions with online technologies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9922] "Subscales: Educational Environment quality (EEQ) [Physical environment; Psychological environment]; Teaching Quality (TQ) [Teachers’ attitude and skills; Teaching adjustment; Teaching evaluation; Learning outcomes]; Educational Relationship Quality (ERQ) [Family-school Cooperation; Parent-parent Cooperation; Student-peer cooperation]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9923] "Constructs: Absorptive capacity; Trust; Social interaction; Knowledge sharing behavior; Knowledge sharing opportunity; Collectivism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9924] "Constructs: Self-efficacy; Reputation; Reciprocity; Online knowledge sharing behavior; Individual innovation capability; Top management support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9925] "Constructs: Organizational Ambidexterity; Knowledge Creation; Knowledge Transfer; Organizational Innovation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9926] "Subscales: Knowledge; Practice roles; Screening; Stigma; General attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9927] "Subscales: Sense of belonging; Civic effects; Political effects; Economic effects; Cultural effects; Social effects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9928] "Subscales: Positive Impact-Self; Positive Impact-Other; Negative Impact-Self; Negative Impact-Other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9929] "Subscales: Timing; Routines/Consistency; Room Environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9930] "Factors: Teacher appreciation; Personal enjoyment; Social enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9931] "Factors: Peer norms (PEER); Minimization of men's sexual behavior (MIN); Sexual deception (DEC); Gender essentialism (ESS); Prioritizing sexual needs of self (PRIO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9932] "Factors: Everyday-Interpersonal; Everyday-Intrapersonal; Scholarly; Performance-Literary; Performance-Music; Mechanical/Scientific; Mathematical; Artistic-Drawing; Artistic-Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9933] "Subscales: Internal political efficacy; External political efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9934] "Factors: General avoidance; Practice and control; Rehearsal; Choosing safe and easy people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9935] "Factors: Religious faith; Family responsibility; Community respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9936] "Factors: General Safety Behaviors; Practice and Rehearsal; General Avoidance; Choosing Safe and Easy People; Control-Related Safety Behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9937] "Subscales: Understanding one's emotions/motives (UEM); Reflecting on one's past (ROP); Exploring one's identity and purpose (EPI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9938] "Factors: Emotional consequences (HHIE-E); Social or situational effects (HHIE-S)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9939] "Subscales: Understanding; Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9940] "Subscales: Mindfulness; Over-identification; Self-Kindness; Self-Judgment; Common Humanity; Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9941] "Subscales: Optimism and Hope (CECC-OH); Distraction and Suppression (CECC-DS); Uncontrollable Thoughts (CECC-UT); Cognitive Reappraisal (CECC-CR); Cognitive Avoidance (CECC-CA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9942] "Factors: Cognitive-Affective; Somatic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9943] "Factors: Exploration; Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9944] "Factors: Supporting group members; Shares decision-making; Ensuring justice and equity; Encouraging diverse contributions; Helping group members fully contribute."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9945] "Subscales: At school; At home/family; In social situations (outside of school)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9946] "Subscales: NE-YBOCS-Urge; NE-YBOCS-Behavior; NE-YBOCS-Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9947] "Factors: Modification and facilitation; Participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9948] "Constructs: Market orientation (MO); Market Distance (MD); Market Capability (MC); Profitability; Proactive Orientation (PO); Innovation (I)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9949] "Subscales: Emotion; Play; Empathy; Control; Discipline and setting boundaries; Pressures of parenting; Self-acceptance; Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9950] "Subscales: Depressive; Generalized anxiety; Separation anxiety; Social phobia; Panic disorders."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9951] "Factors: Ease of excitation (EOE); Low sensory threshold (LST); Esthetic sensitivity (AES); General sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9952] "Subscales: Ease of Excitation (EOE); Low Threshold of Sensitivity (LTS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9953] "Subscales: Digital strategy; Digital integration; Digital control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9954] "Subscales: Creativity; Curiosity; Judgment; Learning; Perspective; Bravery; Perseverance; Honesty; Zest; Love; Kindness; Social intelligence; Teamwork; Fairness; Leadership; Forgiveness; Humility; Prudence; Self-regulation; Appreciation of beauty and excellence; Gratitude; Hope; Humor; Spirituality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9955] "Subscales [Factors]: Basic Human Values: Growth values [Universalism; Benevolence; Self-direction; Stimulation; Hedonism]; Self-protection values [Achievement; Power; Security; Tradition; Conformity]; Higher-Order Values: Self-transcendence; Openness to Change; Conservation; Self-enhancement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9956] "Factors: Unnerved."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9957] "Factors: Beyond-the-self; Meaningfulness; Goal orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9958] "Subscales: Social Support; Companionship; Social Distress. Factors: Emotional Support; Friendship; Loneliness; Perceived Rejection; Perceived Hostility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9959] "Subscales: Analytics for Pipeline & Territory Management; Analytics for Customer Insight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9960] "Factors: Visibility affordance (VA); Communication affordance (CA); Transaction affordance (TA); Persistence affordance (PA)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9961] "Constructs: Commitment; Destination distinctiveness; Destination evangelism; Information seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9962] "Constructs: Normative community pressure (NCP); Brand credibility (CRE); Perceived value (VAL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9963] "Factors: Soft Skill (SS); General Business Requirements (GBR); Audit and Assurance (AA); Conceptual Knowledge (CK); Special Topics in Accounting (STA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9964] "Domains: Built environment; Equipment; Programmes/Services; Staff; Policies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9965] "Subscales: Socialization; Isolation; Emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9966] "Factors: Craving Control; Craving for Savory; Craving for Sweet; Positive Mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9967] "Constructs: Continuity; Credibility; Integrity; Symbolism; Consumer-brand relationship; Participation intentions; Self-congruence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9968] "Constructs: Own Work Interfering with Family (OWIF); Spouse’s Work Interfering with Family (SWIF); Family Interfering with Work (FIW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9969] "Subscales: Ideal; Gain; Advancement; Ought; Non-loss; Security; Promotion; Prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9970] "Subscales: Eating behaviors; Sedentary behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9971] "Subscales: Perceived general realistic threat; Perceived general symbolic threat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9972] "Factors: Nonbinary Gender Diversity (NGD); Female–Male Continuum (FMC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9973] "Factors: Resentment of Paternalism/Hostile Heterosexuality; Intimate Heterosexuality; Compensatory Gender Differentiation; Complementary Gender Differentiation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9974] "Factors: Retrieving; Processing; Generating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9975] "Subscales: Pleasure; Arousal; Dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9976] "Constructs: Tourist Destination Online Content (Online Information Quality; User-friendly Accessibility); Satisfaction; Tourists’ Behavioral Intentions (Intentions to Visit a Tourist Destination; Electronic Word-of-mouth)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9977] "Factors: Negative Feeling; Public Perception; Future Success."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9978] "Subscales: Ostracism experience; Psychological effect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9979] "Factors: Disturbance; Nighttime; Parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9980] "Factors: Attention to Others’ Emotions; Personal Distress; Personal Distress–Fictional Characters; Prosocial Behavior; and Sympathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9981] "Factors: Status; Sex; Competition; Exclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9982] "Subfactors: Status; Sex; Competition; Exclusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9983] "Factors: Grandiose–manipulative (GM); Callous–unemotional (CU); Daring–impulsive (DI); Conduct Disorder (CD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9984] "Factors: Internal Protection; Emotional Stability; External Protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9985] "Factors: Emotion recognition (Happiness; Sadness; Fear; Anger); Social perspective taking (False belief; Real-apparent emotion); Social problem solving (Positive attribution; Positive social goal; Positive solution selection; Self-control (Delay of gratification; Frustration tolerance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9986] "Subscales: Family; Peers; Lie; Religion; Lie to Religion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9987] "Subscales: Attitudes Toward Breastfeeding; Attitudes Toward Feeding Formula; Attitudes Toward Breastfeeding in Public."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9988] "Factors: Motivational drive (ME); Evaluation of available resources (MA); Cognitive orientation (C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9989] "Subscales: Empathy; Activism Orientation; Size Acceptance; Attractiveness; Critical Health; General Complexity; Socioeconomic Complexity; Responsibility; Body Acceptance. Components: Fat Acceptance; Attribution Complexity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9990] "Subscales: Emotional; Personal and social life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9991] "Factors: Cultural Knowledge; Cultural Awareness; Cultural Skills; Cultural Appreciation; Respect for Cultural Differences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9992] "Subscales: Symptom Checklist; Severity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9993] "Subscales: Family-Based Treatment Consistent; Family-Based Treatment Inconsistent; Neither Consistent nor Incompatible with Family-Based Treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9994] "Factors: Love and esteem; Caring; Memories and humor; Celebratory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9995] "Constructs: Severity of service failure; Recovery efforts (Distributive justice; Procedural justice; Interactional justice); Regret; Anger; Frustration; Complaint; Negative word-of-mouth (nWOM);"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9996] "Factors: Material satisfaction; Belief in material fate; Spiritual identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9997] "Factors: Stereotype Endorsement; Righteous Anger; Non-Disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9998] "Factors: Dysfunctional ERS; Distraction; Problem-Solving; Social Support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9999] "Factors: Anhedonia; Asociality; Avolition; Blunted affect; Alogia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10000] "Subscales: Work stress; Family stress; Social stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10001] "Factors: Metacognitive cultural intelligence; Cognitive cultural intelligence; Motivational cultural intelligence; Behavioral cultural intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10002] "Factors: Metacognitive cultural intelligence; Cognitive cultural intelligence; Motivational cultural intelligence; Behavioral cultural intelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10003] "Factors: Information evaluation; Reading skills; Perception of information; Decision making and using information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10004] "Factors: Emotional well-being; Social well-being; Psychological well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10005] "Factors: Increasing Structural Leisure Resources; Increasing Social Leisure Resources; Increasing Challenging Leisure Demands; Decreasing Leisure Barriers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10006] "Components were unnamed as the research goal was to develop a one-factor solution consistent with the original measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10007] "Quadrants: Low registration; Sensation seeking; Sensory sensitivity; Sensation avoiding."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10008] "Constructs: Source expertise; Source trust; Source attractiveness; Band attitude; Purchase intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10009] "Subscales: Warmth/affection or coldness/lack of affection (C/LA); hostility/aggression (H/A); Indifference/neglect (I/N); Undifferentiated rejection (UR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10010] "Factors: Warmth/ affection or coldness/ lack of affection (C/LA); Hostility/aggression (H/A); Indifference/neglect (I/N); Undifferentiated rejection (UR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10011] "Factors: Play; Nurturance; Discipline; Routine."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10012] "Factors: Grandiosity-shame (GH); Indifference-anger (IC); Affirmation-insecurity (AI); General."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10013] "Subscales: Push motivations; Pull motivations; Constraints; Behavioral intention. Factors: Search for novelty and emotional experience; Search for cognitive experience; Core attraction of the ghost tours; Extra attraction of the ghost tour; Organization of the ghost tour; Intrapersonal constraint; Interpersonal constraint; Structural constraints; Intention to participate in ghost tourism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10014] "Subscales: Complementary and alternative medicine (CAM); Psychology-related pseudoscience (PRP); Causes of harm-related pseudoscience (CHRP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10015] "Subscales: Denial; Minimize."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10016] "Factors: Performance expectation (PE); Effort expectation (EE); Perceived risk (RISK); Social influence (SOC); VA usage experience (EXPVA); Anthropomorphism (ANTH); Engagement (ENG); Intention to re‐use (INT); Actual usage (AUSE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10017] "Factors: Birth-related symptoms (BRS); General symptoms (GS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10018] "Factors: Role Adequacy; Role Support; Role-Related Self-Esteem; Emotional Response; Job Satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10019] "Factors: Attitude to school (AttSc); Learning difficulties (LDiff); Structural support (ScSup); Simplifying support (SiSup); Relational support (ReSup)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10020] "Factors: Impermanence; Market-focused Strategic Flexibility; Competitive Intensity; Technological Turbulence; Demand Uncertainty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10021] "Subscales: Anxiety and hopelessness; Boredom and anger; Effort-related emotions; Negative social emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10022] "Factors: Affective empathy; Cognitive empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10023] "Factors: Affective empathy; Cognitive empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10024] "Subscales: Sexual assertiveness; Sexual control; Sexual esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10025] "Factors: Separation; Discrimination; Stereotype; Ignorance/Labeling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10026] "Constructs: Purchase intentions; Engagement intentions; Ad attitudes; Brand attitudes; Self-brand connections; Congruence (brand-celebrity); Congruence (self-brand); Congruence (self-celebrity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10027] "Factors: Accessibility: Personal issues; Transportation concerns to physical activity engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10028] "Domains: Social distancing adjustment; Self-prioritization; Prosocial behaviors; Belief in conspiracies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10029] "Subscales: Preparation and departure from country of origin (PSP); Socioeconomic concerns (PES); Adaptation to the recipient society (ASR)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10030] "Domains: Accommodation. Subscales: Participation; Modification; Consequence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10031] "Factors: Learning goal orientation; Performance-prove; Performance-avoid."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10032] "Factors: Social avoidance; Alienation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10033] "Constructs: Corporate Association; Corporate Activities; Corporate Values; Corporate Personality; Emotional Attachment; Corporate Brand Perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10034] "Factors (Subcomponents): Negative affect (Childbirth; Pregnancy); Partner involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## attr(,"na.action")
##     [1]     1     2     3     4     5     6     7     8     9    10    11    14
##    [13]    17    19    20    21    22    24    25    26    27    28    29    30
##    [25]    31    32    33    34    35    36    37    38    39    40    41    42
##    [37]    43    44    45    46    47    48    49    50    51    52    53    54
##    [49]    55    56    57    58    59    60    61    62    63    64    66    67
##    [61]    68    69    70    71    72    73    74    75    76    77    78    79
##    [73]    80    81    82    83    84    85    86    87    88    89    90    91
##    [85]    92    93    94    95    96    97    98    99   100   101   102   103
##    [97]   104   105   106   107   108   109   110   111   112   113   114   115
##   [109]   116   117   118   119   120   121   122   123   124   125   126   127
##   [121]   128   129   130   131   132   133   134   135   136   137   138   139
##   [133]   140   141   142   143   144   145   146   147   148   149   150   151
##   [145]   152   153   154   155   156   157   158   159   160   161   162   163
##   [157]   164   165   166   167   168   169   170   171   172   173   174   175
##   [169]   176   177   178   179   180   181   182   183   184   185   186   187
##   [181]   188   189   190   191   192   193   194   195   196   197   198   200
##   [193]   201   202   203   205   206   207   208   209   210   211   212   213
##   [205]   214   215   216   217   218   219   220   221   223   224   225   226
##   [217]   227   228   229   230   231   232   233   234   235   236   237   238
##   [229]   239   240   241   243   244   245   246   247   248   249   250   251
##   [241]   252   253   254   255   256   258   259   260   261   262   263   264
##   [253]   265   266   267   268   269   270   271   272   273   274   275   276
##   [265]   277   278   279   280   281   282   283   284   285   286   287   288
##   [277]   289   290   291   292   293   294   295   296   297   298   299   300
##   [289]   301   302   303   304   305   306   307   308   309   310   311   312
##   [301]   313   314   315   316   317   318   319   320   321   322   323   324
##   [313]   325   326   327   328   329   330   332   333   334   335   337   338
##   [325]   339   340   341   342   343   344   345   346   347   348   349   350
##   [337]   351   352   353   354   355   356   357   358   359   360   361   362
##   [349]   363   364   365   366   367   368   369   370   371   372   373   374
##   [361]   375   376   377   378   379   380   381   382   383   384   385   386
##   [373]   387   388   389   390   391   392   393   394   395   396   397   399
##   [385]   400   401   402   406   407   408   409   410   411   412   413   414
##   [397]   415   416   417   418   419   420   421   422   423   424   425   426
##   [409]   427   428   429   430   431   432   433   434   435   436   437   438
##   [421]   439   440   441   442   443   444   445   446   447   448   449   450
##   [433]   452   453   454   455   456   457   458   460   461   462   463   464
##   [445]   465   466   467   468   469   470   471   472   473   475   476   477
##   [457]   478   479   480   481   483   484   485   486   487   488   489   490
##   [469]   491   492   493   494   495   496   497   498   499   500   501   502
##   [481]   503   504   505   506   507   508   510   511   512   513   514   515
##   [493]   516   518   519   520   521   522   523   524   525   526   527   528
##   [505]   529   530   531   532   533   534   535   536   537   538   539   540
##   [517]   541   542   543   544   545   546   548   549   551   552   553   554
##   [529]   555   556   557   558   559   561   562   563   564   565   566   567
##   [541]   568   569   570   571   572   573   574   575   576   577   578   579
##   [553]   580   581   582   583   584   585   586   587   588   589   590   591
##   [565]   592   593   594   595   596   597   598   599   600   601   603   604
##   [577]   605   606   607   608   609   610   611   612   613   614   615   616
##   [589]   617   618   619   620   621   622   623   624   626   627   628   629
##   [601]   630   631   632   633   634   635   636   637   638   639   640   641
##   [613]   642   643   644   645   646   647   648   649   650   651   652   653
##   [625]   654   655   656   657   658   659   660   661   662   663   664   665
##   [637]   666   667   668   669   670   671   672   673   674   675   676   677
##   [649]   678   679   680   681   682   683   684   685   686   687   688   689
##   [661]   690   691   692   693   694   695   696   697   698   699   700   701
##   [673]   702   703   704   705   706   707   708   709   710   711   712   713
##   [685]   715   716   718   719   720   721   722   723   724   725   726   727
##   [697]   729   730   731   732   733   734   735   736   737   738   739   740
##   [709]   741   742   743   744   745   746   747   748   749   750   751   752
##   [721]   753   754   755   756   757   758   759   760   761   762   763   765
##   [733]   766   767   768   769   770   771   772   773   774   775   777   778
##   [745]   779   780   781   782   783   784   785   786   787   788   790   791
##   [757]   792   793   794   795   796   797   798   799   800   801   802   803
##   [769]   804   805   806   807   808   809   811   812   813   815   816   817
##   [781]   818   819   820   821   822   823   824   825   826   827   828   829
##   [793]   830   831   832   833   834   835   836   837   838   839   840   841
##   [805]   842   843   844   845   846   847   848   849   850   851   852   853
##   [817]   854   855   856   857   858   859   860   861   863   864   865   866
##   [829]   867   868   869   870   871   872   873   874   875   876   877   878
##   [841]   879   880   881   882   883   884   886   887   888   889   890   891
##   [853]   892   893   894   895   896   897   898   899   900   901   902   903
##   [865]   904   905   906   907   908   909   910   911   912   913   914   915
##   [877]   916   917   918   919   920   921   922   923   924   925   926   927
##   [889]   928   929   930   931   932   933   934   935   936   937   938   939
##   [901]   940   941   942   943   944   945   946   947   948   950   951   952
##   [913]   953   954   955   956   957   958   959   960   961   962   963   964
##   [925]   965   966   968   969   970   971   972   973   974   975   977   978
##   [937]   979   980   981   983   984   985   986   987   988   989   991   992
##   [949]   993   994   995   996   997   998   999  1000  1001  1002  1003  1004
##   [961]  1005  1006  1007  1008  1009  1010  1012  1013  1014  1016  1017  1018
##   [973]  1019  1020  1021  1022  1023  1024  1025  1026  1027  1029  1030  1031
##   [985]  1032  1033  1034  1035  1036  1037  1038  1039  1040  1041  1042  1043
##   [997]  1044  1045  1046  1047  1048  1049  1050  1051  1053  1054  1055  1056
##  [1009]  1057  1058  1059  1060  1061  1062  1063  1064  1065  1066  1067  1068
##  [1021]  1069  1070  1071  1072  1073  1074  1075  1076  1077  1078  1079  1080
##  [1033]  1081  1082  1083  1084  1085  1086  1087  1088  1089  1090  1092  1093
##  [1045]  1094  1095  1096  1097  1098  1099  1100  1101  1102  1103  1104  1105
##  [1057]  1106  1107  1108  1109  1110  1111  1112  1114  1115  1117  1118  1119
##  [1069]  1120  1121  1122  1123  1124  1125  1126  1127  1128  1129  1130  1131
##  [1081]  1132  1133  1134  1135  1136  1137  1138  1139  1140  1141  1142  1143
##  [1093]  1144  1145  1146  1147  1148  1149  1150  1151  1152  1153  1154  1155
##  [1105]  1156  1157  1158  1159  1160  1161  1162  1163  1164  1165  1166  1167
##  [1117]  1168  1169  1170  1171  1172  1173  1174  1175  1176  1177  1178  1179
##  [1129]  1180  1182  1183  1184  1185  1186  1187  1188  1189  1190  1192  1193
##  [1141]  1194  1195  1196  1197  1198  1199  1200  1201  1202  1203  1204  1205
##  [1153]  1206  1207  1208  1209  1210  1212  1213  1214  1215  1216  1217  1218
##  [1165]  1221  1222  1223  1224  1225  1226  1227  1228  1229  1230  1231  1232
##  [1177]  1233  1234  1235  1236  1237  1238  1239  1240  1241  1242  1243  1244
##  [1189]  1245  1246  1247  1248  1249  1250  1251  1252  1253  1254  1256  1257
##  [1201]  1258  1259  1260  1261  1262  1263  1264  1265  1266  1267  1268  1269
##  [1213]  1270  1271  1272  1273  1274  1275  1276  1277  1278  1279  1280  1281
##  [1225]  1282  1283  1284  1285  1287  1288  1289  1290  1291  1292  1293  1294
##  [1237]  1295  1296  1297  1298  1299  1301  1302  1303  1304  1305  1306  1307
##  [1249]  1308  1309  1310  1311  1312  1313  1314  1315  1316  1317  1318  1319
##  [1261]  1320  1321  1322  1323  1325  1326  1327  1328  1329  1330  1331  1332
##  [1273]  1333  1334  1335  1336  1337  1338  1339  1340  1341  1342  1343  1344
##  [1285]  1345  1346  1347  1348  1349  1350  1351  1352  1353  1354  1355  1356
##  [1297]  1357  1358  1359  1360  1361  1362  1363  1364  1365  1366  1367  1368
##  [1309]  1369  1370  1371  1372  1373  1374  1375  1376  1377  1378  1379  1380
##  [1321]  1381  1382  1383  1384  1385  1386  1387  1388  1389  1390  1391  1392
##  [1333]  1393  1394  1395  1396  1397  1398  1399  1400  1401  1402  1403  1404
##  [1345]  1405  1406  1407  1408  1409  1410  1411  1412  1413  1414  1416  1417
##  [1357]  1418  1419  1420  1421  1422  1423  1424  1426  1427  1428  1429  1430
##  [1369]  1431  1432  1433  1434  1435  1436  1437  1438  1439  1440  1441  1442
##  [1381]  1443  1444  1445  1446  1447  1448  1449  1451  1452  1453  1454  1455
##  [1393]  1456  1457  1458  1459  1460  1461  1462  1463  1465  1466  1467  1468
##  [1405]  1469  1470  1471  1472  1473  1474  1475  1476  1477  1479  1480  1481
##  [1417]  1482  1483  1484  1485  1486  1487  1488  1489  1490  1491  1492  1493
##  [1429]  1494  1495  1496  1497  1498  1499  1500  1502  1503  1504  1505  1506
##  [1441]  1507  1508  1509  1511  1512  1513  1514  1515  1516  1517  1518  1519
##  [1453]  1520  1521  1522  1523  1524  1525  1526  1527  1528  1529  1530  1531
##  [1465]  1532  1533  1534  1535  1536  1537  1538  1539  1540  1541  1542  1543
##  [1477]  1544  1545  1546  1548  1549  1550  1551  1552  1553  1554  1555  1556
##  [1489]  1557  1558  1560  1561  1562  1563  1564  1565  1566  1567  1568  1569
##  [1501]  1570  1571  1572  1573  1574  1575  1576  1577  1578  1579  1581  1582
##  [1513]  1583  1584  1585  1586  1587  1588  1589  1590  1591  1592  1593  1594
##  [1525]  1595  1596  1597  1598  1599  1600  1601  1602  1603  1604  1605  1606
##  [1537]  1607  1608  1609  1610  1611  1612  1613  1614  1615  1616  1617  1618
##  [1549]  1619  1620  1621  1622  1623  1625  1626  1627  1628  1630  1631  1632
##  [1561]  1633  1634  1635  1636  1637  1638  1639  1640  1641  1642  1643  1644
##  [1573]  1645  1646  1647  1648  1649  1650  1652  1653  1655  1656  1657  1658
##  [1585]  1659  1660  1661  1662  1663  1664  1665  1666  1667  1668  1669  1670
##  [1597]  1671  1672  1673  1675  1676  1677  1678  1679  1680  1681  1682  1683
##  [1609]  1685  1686  1687  1688  1689  1690  1691  1692  1693  1694  1695  1696
##  [1621]  1697  1698  1699  1700  1701  1702  1703  1704  1705  1706  1707  1708
##  [1633]  1709  1710  1711  1712  1713  1714  1715  1716  1717  1718  1719  1720
##  [1645]  1721  1722  1723  1724  1725  1726  1727  1728  1729  1730  1731  1732
##  [1657]  1733  1734  1735  1736  1737  1738  1739  1740  1741  1742  1743  1744
##  [1669]  1746  1747  1749  1750  1751  1752  1753  1754  1755  1756  1757  1758
##  [1681]  1759  1760  1761  1762  1763  1764  1765  1766  1767  1769  1770  1771
##  [1693]  1772  1773  1774  1775  1776  1777  1778  1779  1780  1781  1782  1783
##  [1705]  1784  1785  1786  1787  1788  1789  1790  1791  1792  1793  1794  1795
##  [1717]  1796  1797  1798  1799  1800  1801  1802  1803  1804  1805  1806  1807
##  [1729]  1808  1809  1810  1811  1812  1813  1814  1815  1816  1817  1818  1819
##  [1741]  1820  1821  1822  1823  1824  1825  1826  1827  1829  1830  1832  1833
##  [1753]  1834  1835  1836  1837  1838  1839  1840  1841  1842  1843  1844  1845
##  [1765]  1846  1847  1848  1850  1851  1852  1853  1854  1855  1856  1857  1858
##  [1777]  1859  1860  1861  1862  1864  1865  1866  1867  1868  1869  1870  1871
##  [1789]  1872  1873  1874  1875  1876  1877  1878  1879  1881  1882  1883  1884
##  [1801]  1885  1886  1887  1888  1889  1890  1891  1892  1893  1894  1895  1896
##  [1813]  1897  1898  1899  1900  1901  1902  1903  1905  1906  1907  1908  1909
##  [1825]  1910  1911  1912  1913  1914  1915  1916  1917  1920  1921  1922  1923
##  [1837]  1924  1925  1926  1927  1928  1929  1930  1931  1933  1934  1935  1936
##  [1849]  1937  1938  1939  1940  1941  1942  1943  1944  1945  1946  1947  1948
##  [1861]  1949  1950  1951  1952  1953  1954  1955  1956  1957  1958  1959  1960
##  [1873]  1961  1962  1963  1964  1965  1966  1967  1968  1969  1970  1971  1972
##  [1885]  1973  1974  1975  1976  1977  1978  1979  1980  1981  1982  1983  1984
##  [1897]  1985  1986  1987  1988  1989  1990  1991  1992  1993  1994  1995  1996
##  [1909]  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008
##  [1921]  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020
##  [1933]  2021  2022  2023  2024  2025  2026  2027  2028  2029  2030  2031  2032
##  [1945]  2033  2034  2035  2036  2037  2038  2039  2040  2041  2042  2043  2044
##  [1957]  2045  2046  2047  2048  2049  2050  2051  2052  2053  2054  2055  2056
##  [1969]  2057  2058  2059  2060  2061  2062  2063  2064  2065  2066  2067  2069
##  [1981]  2070  2071  2072  2073  2074  2075  2076  2077  2078  2079  2080  2081
##  [1993]  2082  2083  2084  2085  2086  2087  2088  2089  2090  2091  2092  2093
##  [2005]  2094  2095  2096  2097  2098  2099  2100  2101  2102  2103  2104  2105
##  [2017]  2106  2107  2108  2109  2110  2111  2112  2113  2114  2115  2116  2117
##  [2029]  2118  2119  2120  2121  2122  2123  2124  2125  2126  2127  2128  2129
##  [2041]  2130  2131  2132  2133  2134  2135  2136  2137  2138  2139  2140  2141
##  [2053]  2142  2143  2144  2145  2146  2147  2148  2149  2150  2151  2152  2153
##  [2065]  2154  2155  2156  2158  2159  2160  2161  2163  2164  2165  2166  2167
##  [2077]  2168  2169  2170  2171  2172  2173  2174  2175  2176  2177  2178  2179
##  [2089]  2180  2181  2182  2183  2184  2185  2186  2187  2188  2189  2190  2191
##  [2101]  2192  2193  2194  2195  2196  2197  2198  2199  2200  2201  2202  2203
##  [2113]  2204  2205  2206  2207  2208  2209  2210  2211  2212  2213  2214  2215
##  [2125]  2216  2217  2218  2219  2220  2221  2222  2223  2224  2225  2226  2227
##  [2137]  2228  2229  2230  2231  2232  2233  2234  2235  2236  2237  2238  2239
##  [2149]  2240  2241  2242  2243  2244  2245  2246  2247  2248  2249  2250  2251
##  [2161]  2252  2253  2254  2255  2256  2257  2258  2259  2260  2261  2262  2263
##  [2173]  2264  2265  2266  2267  2268  2269  2270  2271  2272  2273  2274  2275
##  [2185]  2276  2277  2278  2279  2280  2281  2282  2283  2284  2285  2286  2287
##  [2197]  2288  2289  2290  2291  2292  2293  2294  2295  2296  2297  2298  2299
##  [2209]  2300  2301  2302  2303  2305  2306  2307  2308  2309  2310  2311  2312
##  [2221]  2313  2314  2315  2317  2318  2319  2320  2321  2322  2323  2324  2325
##  [2233]  2326  2327  2329  2330  2331  2332  2333  2334  2335  2336  2337  2338
##  [2245]  2339  2340  2341  2342  2343  2344  2345  2346  2347  2348  2349  2351
##  [2257]  2352  2353  2354  2355  2356  2357  2359  2360  2361  2362  2363  2364
##  [2269]  2365  2367  2368  2369  2370  2371  2372  2373  2374  2375  2376  2377
##  [2281]  2378  2379  2380  2382  2383  2384  2385  2386  2387  2388  2389  2390
##  [2293]  2391  2392  2393  2394  2395  2396  2398  2399  2400  2401  2402  2403
##  [2305]  2404  2405  2406  2408  2409  2410  2411  2412  2413  2414  2415  2416
##  [2317]  2417  2418  2419  2420  2421  2423  2424  2425  2426  2427  2428  2429
##  [2329]  2430  2431  2432  2433  2434  2435  2436  2437  2438  2439  2440  2441
##  [2341]  2442  2443  2444  2445  2446  2447  2448  2449  2450  2451  2452  2453
##  [2353]  2454  2455  2456  2457  2458  2459  2460  2462  2464  2465  2466  2467
##  [2365]  2468  2469  2470  2471  2472  2473  2474  2475  2476  2477  2478  2479
##  [2377]  2480  2481  2482  2483  2484  2485  2486  2487  2488  2489  2490  2491
##  [2389]  2492  2493  2494  2495  2496  2497  2498  2499  2500  2501  2502  2503
##  [2401]  2504  2505  2506  2507  2508  2509  2510  2511  2512  2513  2514  2515
##  [2413]  2516  2517  2518  2519  2520  2521  2522  2523  2524  2525  2526  2527
##  [2425]  2528  2529  2530  2531  2532  2533  2534  2535  2536  2537  2538  2539
##  [2437]  2540  2541  2542  2543  2544  2545  2546  2547  2548  2549  2550  2551
##  [2449]  2552  2553  2554  2555  2556  2557  2559  2560  2561  2562  2563  2564
##  [2461]  2565  2566  2567  2568  2569  2570  2572  2573  2574  2575  2576  2577
##  [2473]  2578  2579  2580  2581  2582  2583  2584  2585  2586  2587  2588  2589
##  [2485]  2590  2591  2592  2593  2594  2595  2596  2597  2598  2599  2601  2602
##  [2497]  2603  2604  2605  2606  2608  2609  2610  2611  2612  2613  2614  2615
##  [2509]  2616  2618  2619  2620  2621  2622  2623  2624  2625  2626  2627  2628
##  [2521]  2629  2630  2631  2632  2633  2634  2635  2636  2637  2638  2639  2640
##  [2533]  2641  2642  2643  2644  2646  2647  2648  2649  2650  2651  2652  2653
##  [2545]  2654  2655  2656  2657  2658  2659  2660  2661  2662  2663  2664  2665
##  [2557]  2666  2667  2668  2669  2670  2671  2672  2673  2674  2675  2676  2677
##  [2569]  2678  2679  2680  2681  2682  2683  2684  2685  2686  2687  2688  2689
##  [2581]  2690  2691  2692  2693  2694  2695  2696  2697  2698  2699  2700  2701
##  [2593]  2703  2704  2705  2706  2707  2708  2709  2710  2711  2712  2713  2714
##  [2605]  2715  2716  2717  2718  2719  2720  2721  2722  2723  2724  2725  2726
##  [2617]  2727  2728  2729  2730  2731  2732  2733  2734  2735  2736  2737  2738
##  [2629]  2739  2740  2741  2742  2743  2744  2745  2746  2747  2748  2749  2750
##  [2641]  2751  2752  2753  2754  2755  2756  2757  2758  2759  2760  2761  2762
##  [2653]  2763  2764  2765  2766  2767  2768  2769  2770  2771  2772  2773  2774
##  [2665]  2775  2776  2777  2778  2779  2780  2781  2782  2783  2784  2785  2786
##  [2677]  2787  2788  2789  2790  2791  2792  2793  2794  2795  2796  2797  2798
##  [2689]  2800  2801  2802  2803  2804  2805  2806  2807  2808  2809  2810  2811
##  [2701]  2812  2813  2814  2815  2816  2817  2818  2819  2820  2821  2822  2823
##  [2713]  2824  2825  2826  2827  2828  2829  2830  2831  2832  2833  2835  2836
##  [2725]  2837  2838  2839  2840  2841  2842  2843  2844  2845  2846  2847  2848
##  [2737]  2849  2850  2851  2852  2853  2854  2855  2857  2858  2859  2860  2861
##  [2749]  2862  2863  2864  2865  2866  2867  2868  2869  2870  2871  2872  2873
##  [2761]  2874  2875  2876  2877  2878  2880  2881  2882  2883  2884  2885  2886
##  [2773]  2887  2888  2889  2890  2891  2892  2893  2894  2895  2897  2898  2899
##  [2785]  2900  2901  2902  2903  2904  2905  2906  2907  2908  2909  2910  2911
##  [2797]  2912  2913  2914  2915  2916  2917  2918  2919  2920  2921  2923  2924
##  [2809]  2925  2926  2927  2928  2929  2930  2931  2932  2933  2934  2935  2936
##  [2821]  2937  2938  2939  2940  2941  2942  2943  2944  2945  2946  2947  2948
##  [2833]  2949  2950  2951  2952  2953  2954  2955  2956  2957  2958  2959  2960
##  [2845]  2961  2962  2963  2964  2965  2966  2967  2968  2969  2970  2971  2972
##  [2857]  2973  2974  2975  2976  2977  2978  2979  2980  2981  2982  2983  2984
##  [2869]  2985  2986  2987  2988  2989  2990  2991  2992  2993  2994  2995  2996
##  [2881]  2997  2998  2999  3000  3001  3002  3003  3004  3005  3006  3007  3008
##  [2893]  3009  3010  3011  3012  3013  3014  3015  3016  3017  3018  3019  3020
##  [2905]  3021  3022  3023  3024  3025  3026  3027  3028  3030  3031  3032  3033
##  [2917]  3034  3035  3036  3037  3038  3039  3040  3041  3042  3043  3044  3045
##  [2929]  3046  3047  3048  3049  3050  3051  3052  3053  3054  3055  3056  3057
##  [2941]  3058  3059  3060  3061  3062  3063  3064  3065  3066  3067  3068  3069
##  [2953]  3070  3071  3072  3073  3074  3075  3076  3077  3078  3079  3080  3081
##  [2965]  3082  3083  3084  3085  3086  3087  3088  3089  3090  3092  3093  3094
##  [2977]  3095  3096  3097  3098  3099  3100  3101  3102  3103  3104  3105  3106
##  [2989]  3107  3108  3109  3110  3111  3112  3113  3114  3115  3116  3117  3118
##  [3001]  3119  3120  3121  3122  3123  3124  3125  3126  3127  3128  3129  3130
##  [3013]  3131  3132  3133  3134  3135  3136  3137  3138  3139  3140  3141  3142
##  [3025]  3143  3144  3145  3146  3147  3148  3149  3150  3151  3152  3153  3154
##  [3037]  3156  3157  3158  3159  3160  3161  3162  3163  3164  3165  3166  3167
##  [3049]  3168  3169  3170  3171  3172  3173  3174  3175  3176  3177  3178  3179
##  [3061]  3180  3181  3182  3183  3184  3185  3186  3187  3188  3189  3190  3191
##  [3073]  3192  3193  3194  3195  3196  3197  3198  3199  3200  3201  3202  3203
##  [3085]  3204  3205  3206  3207  3208  3209  3210  3211  3212  3213  3214  3215
##  [3097]  3216  3218  3219  3220  3221  3222  3223  3224  3225  3226  3227  3228
##  [3109]  3229  3230  3231  3232  3233  3234  3236  3237  3239  3242  3243  3244
##  [3121]  3245  3246  3247  3248  3249  3250  3251  3252  3253  3254  3255  3256
##  [3133]  3257  3258  3259  3260  3261  3262  3263  3264  3265  3266  3267  3268
##  [3145]  3269  3270  3271  3272  3273  3274  3275  3276  3277  3278  3279  3280
##  [3157]  3281  3282  3283  3284  3285  3286  3287  3288  3289  3291  3292  3293
##  [3169]  3294  3296  3297  3298  3299  3300  3301  3302  3303  3304  3305  3306
##  [3181]  3307  3308  3309  3310  3311  3312  3313  3314  3315  3316  3317  3318
##  [3193]  3319  3320  3321  3322  3323  3324  3325  3326  3327  3328  3329  3330
##  [3205]  3331  3332  3333  3334  3335  3336  3337  3338  3339  3340  3341  3342
##  [3217]  3343  3344  3345  3347  3348  3349  3350  3351  3352  3353  3354  3355
##  [3229]  3356  3357  3358  3359  3360  3361  3362  3363  3364  3365  3366  3367
##  [3241]  3368  3369  3370  3371  3372  3373  3374  3375  3376  3377  3378  3379
##  [3253]  3380  3381  3382  3383  3384  3385  3386  3387  3388  3389  3390  3392
##  [3265]  3393  3394  3395  3396  3397  3398  3399  3400  3401  3402  3403  3404
##  [3277]  3405  3406  3407  3408  3409  3410  3411  3413  3414  3415  3416  3417
##  [3289]  3418  3419  3420  3422  3423  3424  3425  3426  3427  3428  3429  3430
##  [3301]  3431  3432  3433  3434  3435  3436  3437  3438  3439  3440  3441  3442
##  [3313]  3443  3444  3445  3446  3447  3448  3449  3450  3451  3452  3453  3454
##  [3325]  3455  3456  3457  3458  3459  3460  3461  3462  3463  3464  3465  3466
##  [3337]  3467  3468  3469  3470  3471  3472  3473  3474  3475  3476  3477  3478
##  [3349]  3479  3480  3481  3482  3483  3484  3485  3486  3487  3488  3489  3490
##  [3361]  3491  3492  3493  3494  3495  3496  3497  3498  3499  3500  3501  3502
##  [3373]  3503  3504  3505  3506  3507  3508  3509  3510  3511  3512  3513  3514
##  [3385]  3515  3516  3517  3518  3519  3520  3521  3522  3523  3524  3525  3526
##  [3397]  3527  3528  3529  3530  3531  3532  3533  3534  3535  3536  3537  3538
##  [3409]  3539  3540  3541  3542  3543  3544  3545  3546  3547  3548  3549  3550
##  [3421]  3551  3552  3553  3554  3555  3556  3558  3559  3560  3561  3562  3563
##  [3433]  3564  3565  3566  3567  3568  3569  3570  3571  3572  3573  3574  3575
##  [3445]  3576  3577  3578  3579  3580  3581  3582  3583  3584  3585  3586  3587
##  [3457]  3588  3589  3590  3591  3593  3594  3595  3596  3597  3598  3599  3600
##  [3469]  3601  3602  3603  3604  3605  3606  3607  3608  3609  3610  3611  3612
##  [3481]  3613  3614  3615  3616  3617  3618  3619  3620  3621  3622  3623  3624
##  [3493]  3625  3626  3627  3628  3629  3630  3631  3632  3633  3634  3635  3636
##  [3505]  3637  3638  3639  3640  3641  3642  3643  3644  3645  3646  3647  3648
##  [3517]  3649  3650  3651  3652  3653  3654  3655  3656  3657  3658  3659  3660
##  [3529]  3661  3662  3663  3664  3665  3666  3667  3668  3669  3670  3671  3672
##  [3541]  3673  3674  3675  3676  3677  3678  3679  3680  3681  3682  3683  3684
##  [3553]  3685  3686  3687  3688  3689  3690  3691  3692  3693  3694  3695  3696
##  [3565]  3697  3698  3699  3700  3701  3702  3703  3704  3705  3706  3707  3708
##  [3577]  3709  3710  3711  3712  3713  3714  3715  3716  3717  3718  3719  3720
##  [3589]  3721  3722  3723  3724  3725  3726  3727  3728  3729  3730  3731  3732
##  [3601]  3733  3734  3735  3736  3737  3738  3739  3740  3741  3742  3743  3744
##  [3613]  3745  3746  3747  3748  3749  3750  3751  3752  3753  3754  3755  3756
##  [3625]  3757  3758  3759  3760  3761  3762  3763  3764  3765  3766  3767  3768
##  [3637]  3769  3770  3771  3772  3773  3774  3775  3776  3777  3778  3780  3781
##  [3649]  3782  3784  3785  3786  3787  3788  3789  3790  3791  3792  3793  3794
##  [3661]  3795  3796  3797  3798  3799  3800  3801  3802  3803  3804  3805  3806
##  [3673]  3807  3808  3809  3810  3811  3812  3813  3814  3815  3816  3817  3818
##  [3685]  3819  3820  3821  3822  3823  3824  3825  3826  3827  3828  3829  3830
##  [3697]  3831  3832  3833  3834  3835  3836  3837  3838  3839  3840  3841  3842
##  [3709]  3843  3844  3845  3846  3847  3848  3849  3850  3852  3853  3854  3855
##  [3721]  3856  3857  3858  3859  3860  3861  3862  3863  3864  3865  3866  3867
##  [3733]  3868  3869  3870  3871  3872  3873  3874  3875  3876  3877  3878  3879
##  [3745]  3880  3881  3882  3883  3884  3885  3886  3887  3888  3889  3890  3891
##  [3757]  3892  3893  3895  3896  3897  3898  3899  3900  3901  3902  3903  3904
##  [3769]  3905  3906  3907  3908  3909  3910  3911  3912  3913  3914  3915  3916
##  [3781]  3917  3919  3920  3921  3922  3923  3924  3925  3926  3927  3928  3929
##  [3793]  3930  3931  3932  3933  3934  3935  3936  3937  3938  3939  3940  3941
##  [3805]  3942  3943  3944  3945  3946  3947  3948  3949  3950  3951  3952  3953
##  [3817]  3954  3955  3956  3957  3958  3959  3960  3961  3962  3963  3964  3965
##  [3829]  3966  3967  3968  3969  3970  3971  3972  3973  3974  3975  3976  3977
##  [3841]  3978  3979  3980  3981  3982  3983  3984  3985  3986  3987  3988  3989
##  [3853]  3990  3991  3992  3993  3994  3995  3996  3997  3998  3999  4000  4001
##  [3865]  4002  4003  4004  4005  4006  4007  4008  4009  4010  4011  4012  4013
##  [3877]  4014  4015  4016  4017  4018  4019  4020  4021  4022  4023  4024  4025
##  [3889]  4026  4027  4028  4029  4030  4031  4032  4033  4034  4035  4036  4037
##  [3901]  4038  4039  4040  4041  4042  4043  4044  4045  4046  4047  4048  4049
##  [3913]  4050  4051  4053  4054  4055  4056  4057  4059  4060  4061  4062  4063
##  [3925]  4064  4065  4066  4067  4068  4069  4070  4071  4073  4074  4075  4076
##  [3937]  4077  4078  4079  4080  4081  4082  4083  4084  4085  4086  4087  4088
##  [3949]  4089  4090  4091  4092  4093  4094  4095  4096  4097  4098  4099  4100
##  [3961]  4101  4102  4103  4104  4105  4106  4107  4108  4109  4110  4111  4112
##  [3973]  4113  4114  4115  4116  4117  4118  4119  4120  4121  4122  4123  4124
##  [3985]  4125  4126  4127  4128  4129  4131  4132  4133  4134  4135  4137  4138
##  [3997]  4139  4140  4141  4142  4143  4144  4145  4146  4147  4148  4149  4150
##  [4009]  4151  4152  4153  4154  4155  4156  4157  4158  4159  4160  4161  4162
##  [4021]  4163  4164  4165  4166  4167  4168  4169  4170  4171  4172  4173  4174
##  [4033]  4175  4176  4177  4179  4180  4181  4182  4183  4184  4185  4186  4187
##  [4045]  4188  4189  4190  4191  4192  4193  4194  4195  4196  4197  4198  4199
##  [4057]  4200  4201  4202  4203  4205  4206  4207  4208  4209  4210  4211  4212
##  [4069]  4213  4214  4215  4216  4217  4218  4219  4220  4221  4222  4223  4224
##  [4081]  4225  4226  4227  4228  4229  4230  4231  4232  4233  4234  4235  4236
##  [4093]  4237  4238  4240  4241  4242  4243  4244  4245  4246  4247  4248  4249
##  [4105]  4250  4251  4252  4253  4254  4255  4256  4257  4258  4259  4260  4261
##  [4117]  4262  4263  4264  4265  4266  4267  4268  4269  4270  4271  4272  4273
##  [4129]  4274  4275  4276  4277  4278  4279  4280  4281  4282  4283  4284  4285
##  [4141]  4286  4287  4288  4289  4290  4291  4292  4293  4294  4295  4296  4297
##  [4153]  4298  4299  4300  4301  4302  4303  4304  4305  4306  4307  4308  4309
##  [4165]  4310  4311  4312  4313  4314  4315  4316  4317  4318  4319  4320  4321
##  [4177]  4322  4323  4324  4325  4326  4327  4328  4329  4330  4331  4332  4333
##  [4189]  4334  4335  4336  4337  4338  4339  4340  4341  4342  4343  4344  4345
##  [4201]  4346  4347  4348  4349  4350  4351  4352  4353  4354  4355  4356  4357
##  [4213]  4358  4359  4360  4361  4362  4363  4364  4365  4366  4367  4368  4369
##  [4225]  4370  4371  4372  4373  4374  4375  4376  4377  4378  4379  4380  4381
##  [4237]  4382  4383  4384  4385  4386  4387  4388  4389  4390  4391  4392  4393
##  [4249]  4394  4395  4396  4397  4398  4399  4400  4401  4402  4403  4404  4405
##  [4261]  4406  4407  4408  4409  4410  4411  4412  4413  4414  4415  4416  4417
##  [4273]  4418  4419  4420  4421  4422  4423  4424  4425  4426  4427  4428  4429
##  [4285]  4430  4431  4432  4433  4434  4435  4436  4437  4438  4439  4440  4441
##  [4297]  4442  4443  4444  4445  4446  4447  4448  4449  4450  4451  4452  4453
##  [4309]  4454  4455  4456  4457  4458  4459  4460  4461  4462  4463  4464  4465
##  [4321]  4466  4467  4468  4469  4470  4471  4472  4473  4474  4475  4476  4477
##  [4333]  4478  4479  4480  4481  4482  4483  4484  4485  4486  4487  4488  4489
##  [4345]  4490  4491  4492  4493  4494  4495  4496  4497  4498  4499  4500  4501
##  [4357]  4502  4503  4504  4505  4506  4507  4508  4509  4510  4511  4512  4513
##  [4369]  4514  4515  4516  4517  4518  4519  4520  4521  4522  4523  4524  4525
##  [4381]  4526  4527  4528  4529  4530  4531  4532  4533  4534  4535  4536  4537
##  [4393]  4538  4539  4540  4541  4542  4543  4544  4545  4546  4547  4548  4549
##  [4405]  4550  4551  4552  4553  4554  4555  4556  4557  4558  4559  4560  4561
##  [4417]  4562  4563  4564  4565  4566  4567  4568  4569  4570  4571  4572  4573
##  [4429]  4574  4575  4576  4577  4578  4579  4580  4581  4582  4583  4584  4585
##  [4441]  4586  4587  4588  4589  4590  4591  4592  4593  4594  4595  4596  4597
##  [4453]  4598  4599  4600  4601  4602  4603  4604  4605  4606  4607  4608  4609
##  [4465]  4610  4611  4612  4613  4614  4615  4616  4617  4618  4619  4620  4621
##  [4477]  4622  4623  4624  4625  4626  4627  4628  4629  4630  4631  4632  4633
##  [4489]  4634  4635  4636  4637  4638  4639  4640  4641  4642  4643  4644  4645
##  [4501]  4646  4648  4649  4650  4651  4652  4653  4654  4655  4656  4657  4658
##  [4513]  4659  4660  4661  4662  4663  4664  4665  4666  4667  4668  4669  4670
##  [4525]  4671  4672  4673  4674  4675  4676  4677  4678  4679  4680  4681  4682
##  [4537]  4683  4684  4685  4686  4687  4688  4689  4690  4691  4692  4693  4694
##  [4549]  4695  4696  4697  4698  4699  4700  4701  4702  4703  4704  4705  4706
##  [4561]  4707  4708  4709  4710  4711  4712  4713  4714  4715  4716  4717  4718
##  [4573]  4719  4720  4721  4722  4723  4724  4725  4726  4727  4728  4729  4730
##  [4585]  4731  4732  4733  4734  4735  4736  4737  4738  4739  4740  4741  4742
##  [4597]  4743  4744  4745  4746  4747  4748  4749  4750  4751  4752  4753  4754
##  [4609]  4755  4756  4757  4758  4759  4760  4761  4762  4763  4765  4766  4767
##  [4621]  4769  4770  4771  4772  4773  4774  4775  4776  4777  4778  4779  4780
##  [4633]  4781  4782  4783  4784  4785  4786  4787  4788  4789  4790  4791  4792
##  [4645]  4793  4794  4795  4796  4797  4798  4799  4800  4801  4802  4803  4804
##  [4657]  4805  4806  4807  4808  4809  4810  4811  4812  4813  4814  4815  4816
##  [4669]  4817  4818  4819  4820  4821  4822  4823  4824  4825  4826  4827  4828
##  [4681]  4829  4830  4831  4832  4833  4834  4835  4836  4838  4839  4840  4841
##  [4693]  4842  4843  4844  4845  4846  4847  4848  4849  4850  4851  4852  4853
##  [4705]  4854  4855  4856  4857  4858  4859  4860  4861  4862  4863  4864  4865
##  [4717]  4866  4867  4868  4869  4870  4871  4872  4873  4874  4875  4876  4877
##  [4729]  4878  4879  4880  4882  4883  4884  4885  4886  4887  4888  4889  4890
##  [4741]  4891  4892  4893  4894  4895  4896  4897  4898  4899  4900  4901  4902
##  [4753]  4903  4904  4905  4906  4907  4908  4909  4910  4911  4912  4913  4914
##  [4765]  4915  4916  4917  4918  4919  4920  4921  4922  4923  4924  4925  4926
##  [4777]  4927  4928  4929  4930  4931  4932  4933  4934  4935  4936  4937  4938
##  [4789]  4939  4940  4941  4942  4943  4944  4945  4946  4947  4948  4949  4950
##  [4801]  4951  4952  4953  4954  4955  4956  4957  4958  4959  4960  4961  4962
##  [4813]  4963  4964  4965  4966  4967  4968  4969  4970  4971  4972  4973  4974
##  [4825]  4975  4976  4977  4978  4979  4980  4981  4982  4983  4984  4985  4986
##  [4837]  4987  4988  4989  4990  4991  4992  4993  4994  4995  4996  4997  4998
##  [4849]  4999  5000  5001  5002  5003  5004  5005  5006  5007  5008  5009  5010
##  [4861]  5011  5012  5013  5015  5016  5017  5018  5019  5020  5021  5022  5023
##  [4873]  5024  5025  5026  5027  5028  5029  5030  5031  5032  5033  5034  5035
##  [4885]  5036  5037  5038  5039  5040  5041  5042  5043  5044  5045  5046  5047
##  [4897]  5048  5049  5050  5051  5052  5053  5054  5055  5056  5057  5058  5059
##  [4909]  5060  5061  5062  5063  5064  5065  5066  5067  5069  5070  5071  5072
##  [4921]  5073  5074  5075  5076  5077  5078  5080  5081  5082  5083  5084  5085
##  [4933]  5086  5087  5088  5089  5090  5091  5092  5093  5094  5095  5096  5097
##  [4945]  5098  5099  5101  5102  5103  5105  5107  5108  5109  5110  5111  5112
##  [4957]  5113  5114  5115  5116  5117  5118  5119  5120  5121  5122  5123  5124
##  [4969]  5125  5126  5127  5128  5129  5130  5131  5132  5133  5134  5135  5136
##  [4981]  5137  5138  5139  5140  5141  5142  5143  5144  5145  5146  5147  5148
##  [4993]  5149  5150  5151  5152  5153  5154  5155  5156  5157  5158  5159  5160
##  [5005]  5161  5162  5163  5164  5165  5166  5167  5168  5169  5170  5171  5172
##  [5017]  5173  5174  5175  5176  5177  5178  5179  5180  5181  5182  5183  5184
##  [5029]  5185  5186  5187  5188  5189  5190  5191  5192  5193  5194  5195  5197
##  [5041]  5198  5199  5201  5202  5203  5204  5205  5206  5208  5209  5210  5211
##  [5053]  5212  5213  5214  5215  5216  5217  5218  5219  5220  5221  5222  5223
##  [5065]  5224  5225  5226  5227  5228  5229  5230  5231  5232  5233  5234  5235
##  [5077]  5236  5237  5238  5240  5241  5242  5243  5244  5245  5246  5247  5248
##  [5089]  5249  5250  5251  5252  5253  5254  5255  5256  5257  5258  5259  5260
##  [5101]  5261  5262  5263  5264  5265  5266  5267  5268  5269  5270  5271  5272
##  [5113]  5273  5274  5275  5276  5277  5278  5279  5280  5281  5282  5283  5284
##  [5125]  5285  5286  5287  5288  5289  5290  5291  5292  5293  5294  5295  5296
##  [5137]  5297  5298  5299  5300  5301  5302  5303  5304  5305  5306  5307  5308
##  [5149]  5309  5310  5311  5312  5313  5314  5315  5316  5317  5318  5319  5320
##  [5161]  5321  5322  5323  5324  5325  5326  5327  5328  5329  5330  5331  5332
##  [5173]  5333  5334  5335  5336  5337  5338  5339  5340  5341  5342  5343  5344
##  [5185]  5345  5346  5347  5348  5349  5350  5351  5352  5353  5354  5355  5356
##  [5197]  5357  5358  5359  5360  5361  5362  5363  5364  5365  5366  5367  5368
##  [5209]  5369  5370  5371  5372  5373  5374  5375  5376  5377  5378  5379  5380
##  [5221]  5381  5382  5383  5384  5385  5386  5387  5388  5389  5390  5391  5392
##  [5233]  5393  5394  5395  5396  5397  5398  5399  5400  5401  5402  5403  5404
##  [5245]  5405  5406  5407  5408  5409  5410  5411  5412  5413  5414  5415  5416
##  [5257]  5417  5418  5419  5420  5421  5422  5423  5424  5425  5426  5427  5428
##  [5269]  5429  5430  5431  5432  5433  5434  5436  5437  5438  5439  5440  5441
##  [5281]  5442  5443  5445  5446  5447  5448  5449  5450  5451  5452  5453  5454
##  [5293]  5455  5456  5457  5458  5459  5460  5461  5462  5463  5464  5465  5466
##  [5305]  5467  5468  5469  5470  5471  5472  5473  5474  5475  5476  5477  5478
##  [5317]  5479  5480  5481  5482  5483  5484  5485  5486  5487  5488  5489  5490
##  [5329]  5492  5493  5494  5495  5496  5497  5498  5499  5500  5501  5502  5503
##  [5341]  5504  5505  5506  5507  5508  5509  5510  5511  5512  5513  5514  5515
##  [5353]  5516  5517  5518  5519  5520  5521  5522  5523  5524  5525  5526  5527
##  [5365]  5528  5529  5530  5531  5532  5533  5534  5535  5536  5537  5538  5539
##  [5377]  5540  5541  5542  5543  5544  5545  5546  5547  5548  5549  5550  5551
##  [5389]  5552  5553  5554  5555  5556  5557  5558  5559  5560  5561  5562  5563
##  [5401]  5564  5565  5566  5567  5568  5569  5570  5571  5572  5573  5574  5575
##  [5413]  5576  5577  5578  5579  5580  5581  5582  5583  5584  5585  5586  5587
##  [5425]  5588  5589  5590  5591  5592  5593  5594  5595  5596  5597  5598  5599
##  [5437]  5600  5601  5602  5603  5604  5605  5606  5607  5608  5609  5610  5611
##  [5449]  5612  5613  5614  5615  5616  5617  5618  5619  5620  5621  5622  5623
##  [5461]  5624  5625  5626  5627  5628  5629  5630  5631  5632  5633  5634  5635
##  [5473]  5636  5637  5638  5639  5640  5641  5642  5643  5644  5645  5646  5647
##  [5485]  5648  5649  5650  5651  5652  5653  5654  5655  5656  5657  5658  5659
##  [5497]  5660  5661  5662  5663  5664  5665  5666  5667  5668  5669  5670  5671
##  [5509]  5672  5673  5674  5675  5676  5677  5678  5679  5680  5681  5682  5683
##  [5521]  5684  5685  5686  5687  5688  5689  5690  5691  5692  5693  5694  5695
##  [5533]  5696  5697  5698  5699  5700  5701  5702  5703  5704  5705  5706  5707
##  [5545]  5708  5709  5710  5711  5712  5713  5714  5715  5716  5717  5718  5719
##  [5557]  5720  5721  5722  5723  5724  5725  5726  5727  5728  5729  5730  5731
##  [5569]  5732  5733  5734  5735  5736  5737  5738  5739  5740  5741  5742  5743
##  [5581]  5744  5745  5746  5747  5748  5749  5750  5751  5752  5753  5754  5755
##  [5593]  5756  5757  5758  5759  5760  5761  5762  5763  5764  5765  5766  5767
##  [5605]  5768  5769  5770  5771  5772  5773  5774  5775  5776  5777  5778  5779
##  [5617]  5780  5781  5782  5783  5784  5785  5786  5787  5788  5789  5790  5791
##  [5629]  5792  5793  5794  5795  5796  5797  5798  5799  5800  5801  5802  5803
##  [5641]  5804  5805  5806  5807  5808  5809  5810  5811  5812  5813  5814  5815
##  [5653]  5816  5817  5818  5819  5820  5821  5822  5823  5824  5825  5826  5827
##  [5665]  5828  5829  5830  5831  5832  5833  5834  5835  5836  5837  5838  5839
##  [5677]  5840  5841  5842  5843  5844  5845  5846  5847  5848  5849  5850  5851
##  [5689]  5852  5853  5854  5855  5856  5857  5858  5859  5860  5861  5862  5863
##  [5701]  5864  5865  5866  5867  5868  5869  5870  5871  5872  5873  5874  5875
##  [5713]  5876  5877  5878  5879  5880  5881  5882  5883  5884  5885  5886  5887
##  [5725]  5888  5889  5890  5891  5892  5893  5894  5895  5896  5897  5898  5899
##  [5737]  5900  5901  5902  5903  5904  5905  5906  5907  5908  5909  5910  5911
##  [5749]  5912  5913  5914  5915  5916  5917  5918  5919  5920  5921  5922  5923
##  [5761]  5924  5925  5926  5927  5928  5929  5930  5931  5932  5933  5934  5935
##  [5773]  5936  5937  5938  5939  5940  5941  5942  5943  5944  5945  5946  5947
##  [5785]  5948  5949  5950  5951  5952  5953  5954  5955  5956  5957  5958  5959
##  [5797]  5960  5961  5962  5963  5964  5965  5966  5967  5968  5969  5970  5971
##  [5809]  5972  5973  5974  5975  5976  5977  5978  5980  5981  5982  5983  5984
##  [5821]  5985  5986  5987  5988  5989  5990  5991  5992  5993  5994  5995  5996
##  [5833]  5997  5998  5999  6000  6001  6002  6003  6004  6005  6006  6007  6008
##  [5845]  6009  6010  6011  6012  6013  6014  6015  6016  6017  6018  6019  6020
##  [5857]  6021  6022  6023  6024  6025  6026  6027  6028  6029  6030  6031  6032
##  [5869]  6033  6034  6035  6036  6037  6038  6039  6040  6041  6042  6043  6044
##  [5881]  6045  6046  6047  6048  6049  6050  6051  6052  6053  6054  6055  6056
##  [5893]  6057  6058  6059  6060  6061  6062  6063  6064  6065  6066  6067  6068
##  [5905]  6069  6070  6071  6072  6073  6074  6075  6076  6077  6078  6079  6080
##  [5917]  6081  6082  6083  6084  6085  6086  6087  6088  6089  6090  6091  6092
##  [5929]  6093  6094  6095  6096  6097  6098  6099  6100  6101  6102  6103  6104
##  [5941]  6105  6106  6107  6108  6109  6110  6111  6112  6113  6114  6115  6116
##  [5953]  6117  6118  6119  6120  6121  6122  6123  6124  6125  6126  6127  6128
##  [5965]  6129  6130  6131  6132  6133  6134  6135  6136  6137  6139  6140  6141
##  [5977]  6142  6143  6144  6145  6146  6147  6148  6149  6150  6151  6152  6153
##  [5989]  6154  6155  6156  6157  6158  6159  6160  6161  6162  6163  6164  6165
##  [6001]  6166  6167  6168  6169  6170  6171  6172  6173  6174  6175  6176  6177
##  [6013]  6178  6179  6180  6181  6182  6183  6184  6185  6186  6187  6188  6189
##  [6025]  6190  6191  6192  6193  6194  6195  6196  6197  6198  6199  6200  6201
##  [6037]  6202  6203  6204  6205  6206  6207  6208  6209  6210  6211  6212  6213
##  [6049]  6214  6215  6216  6217  6218  6219  6220  6221  6222  6223  6224  6225
##  [6061]  6226  6227  6228  6229  6230  6231  6232  6233  6234  6235  6236  6237
##  [6073]  6238  6239  6240  6241  6242  6243  6244  6245  6246  6247  6248  6249
##  [6085]  6250  6251  6252  6253  6254  6255  6256  6257  6258  6259  6260  6261
##  [6097]  6262  6263  6264  6265  6266  6267  6268  6269  6270  6271  6272  6273
##  [6109]  6274  6275  6276  6277  6278  6279  6280  6281  6282  6283  6284  6285
##  [6121]  6286  6287  6288  6289  6290  6291  6292  6293  6294  6295  6296  6297
##  [6133]  6298  6299  6300  6301  6302  6303  6304  6305  6306  6307  6308  6309
##  [6145]  6310  6311  6312  6313  6314  6315  6316  6317  6318  6319  6320  6321
##  [6157]  6322  6323  6324  6325  6326  6327  6328  6329  6330  6331  6332  6333
##  [6169]  6334  6335  6336  6337  6338  6339  6340  6341  6342  6343  6344  6345
##  [6181]  6347  6348  6349  6350  6351  6352  6353  6354  6355  6356  6357  6358
##  [6193]  6359  6360  6361  6362  6363  6364  6365  6366  6367  6368  6369  6370
##  [6205]  6371  6372  6373  6374  6375  6376  6377  6378  6379  6380  6381  6382
##  [6217]  6383  6384  6385  6386  6387  6388  6389  6390  6391  6392  6393  6394
##  [6229]  6395  6396  6397  6398  6399  6400  6401  6402  6403  6404  6405  6406
##  [6241]  6407  6408  6409  6410  6412  6413  6414  6415  6416  6417  6418  6419
##  [6253]  6420  6421  6422  6423  6424  6425  6426  6427  6428  6429  6430  6431
##  [6265]  6432  6433  6434  6435  6436  6437  6438  6439  6440  6441  6442  6443
##  [6277]  6444  6445  6446  6447  6448  6449  6450  6451  6452  6453  6454  6455
##  [6289]  6456  6457  6458  6459  6460  6461  6462  6463  6464  6465  6466  6467
##  [6301]  6468  6469  6470  6471  6472  6473  6474  6475  6476  6477  6478  6479
##  [6313]  6480  6481  6482  6483  6486  6487  6488  6489  6490  6491  6492  6493
##  [6325]  6494  6495  6496  6498  6499  6500  6501  6502  6503  6504  6505  6506
##  [6337]  6507  6508  6509  6510  6511  6512  6513  6514  6515  6516  6517  6518
##  [6349]  6519  6520  6521  6522  6523  6524  6525  6526  6527  6528  6529  6530
##  [6361]  6531  6532  6533  6534  6535  6536  6537  6538  6539  6540  6541  6542
##  [6373]  6543  6544  6545  6546  6547  6548  6549  6550  6551  6552  6553  6554
##  [6385]  6555  6556  6557  6558  6559  6560  6561  6562  6563  6564  6565  6566
##  [6397]  6567  6568  6569  6570  6571  6572  6573  6574  6575  6576  6577  6578
##  [6409]  6579  6580  6581  6582  6583  6584  6585  6586  6587  6588  6589  6590
##  [6421]  6591  6592  6593  6594  6595  6596  6597  6598  6599  6600  6601  6602
##  [6433]  6603  6604  6605  6606  6607  6608  6609  6610  6611  6612  6613  6614
##  [6445]  6615  6616  6617  6618  6619  6620  6621  6622  6623  6624  6625  6626
##  [6457]  6627  6628  6629  6630  6631  6632  6633  6634  6635  6636  6637  6638
##  [6469]  6639  6640  6641  6642  6643  6644  6645  6646  6647  6648  6649  6650
##  [6481]  6652  6653  6654  6655  6656  6657  6658  6659  6660  6661  6662  6663
##  [6493]  6664  6665  6666  6667  6668  6669  6670  6671  6672  6673  6674  6675
##  [6505]  6676  6677  6678  6679  6680  6681  6682  6683  6684  6685  6686  6687
##  [6517]  6688  6689  6690  6691  6692  6693  6694  6695  6696  6697  6698  6699
##  [6529]  6700  6701  6702  6703  6704  6705  6706  6707  6708  6709  6710  6711
##  [6541]  6712  6713  6714  6715  6716  6717  6718  6719  6720  6721  6722  6723
##  [6553]  6724  6725  6726  6727  6728  6729  6730  6731  6732  6733  6734  6735
##  [6565]  6736  6737  6738  6739  6740  6741  6742  6743  6744  6745  6746  6747
##  [6577]  6748  6749  6750  6751  6752  6753  6754  6755  6756  6757  6758  6759
##  [6589]  6760  6761  6762  6763  6764  6765  6766  6767  6768  6769  6770  6771
##  [6601]  6772  6773  6774  6775  6776  6777  6778  6779  6780  6781  6782  6783
##  [6613]  6784  6785  6786  6787  6788  6789  6790  6791  6792  6793  6794  6795
##  [6625]  6796  6797  6798  6799  6800  6801  6802  6803  6804  6805  6806  6807
##  [6637]  6808  6809  6810  6811  6812  6813  6814  6815  6816  6817  6818  6819
##  [6649]  6820  6821  6822  6823  6824  6825  6826  6827  6828  6829  6830  6831
##  [6661]  6832  6833  6834  6835  6836  6837  6838  6839  6840  6841  6842  6844
##  [6673]  6845  6846  6847  6848  6849  6850  6851  6852  6853  6854  6855  6856
##  [6685]  6857  6858  6859  6860  6861  6862  6863  6864  6865  6866  6867  6868
##  [6697]  6869  6870  6871  6872  6873  6874  6875  6876  6877  6878  6879  6880
##  [6709]  6881  6882  6883  6884  6885  6886  6887  6888  6889  6890  6891  6892
##  [6721]  6893  6894  6895  6896  6897  6898  6899  6900  6901  6902  6903  6904
##  [6733]  6905  6906  6907  6908  6909  6910  6911  6912  6913  6914  6915  6916
##  [6745]  6917  6918  6919  6920  6921  6922  6923  6924  6925  6926  6927  6928
##  [6757]  6929  6930  6931  6932  6933  6934  6935  6936  6937  6938  6939  6940
##  [6769]  6941  6942  6943  6944  6945  6946  6947  6948  6949  6951  6952  6953
##  [6781]  6954  6955  6956  6957  6958  6959  6960  6961  6962  6963  6964  6965
##  [6793]  6966  6967  6968  6969  6970  6971  6972  6973  6974  6975  6976  6977
##  [6805]  6978  6979  6981  6982  6983  6984  6985  6986  6987  6988  6989  6990
##  [6817]  6991  6992  6993  6994  6995  6996  6997  6998  6999  7000  7001  7002
##  [6829]  7003  7004  7005  7006  7007  7008  7009  7010  7011  7012  7013  7014
##  [6841]  7015  7016  7017  7018  7019  7020  7021  7022  7023  7024  7025  7026
##  [6853]  7027  7028  7029  7030  7031  7032  7033  7034  7035  7036  7037  7038
##  [6865]  7039  7040  7041  7042  7043  7044  7045  7046  7047  7048  7049  7050
##  [6877]  7051  7052  7053  7054  7055  7056  7057  7058  7059  7060  7061  7062
##  [6889]  7063  7065  7066  7067  7068  7069  7070  7071  7072  7073  7074  7075
##  [6901]  7076  7077  7078  7079  7080  7081  7082  7083  7084  7085  7086  7087
##  [6913]  7088  7089  7090  7091  7092  7093  7094  7095  7096  7097  7098  7099
##  [6925]  7100  7101  7102  7103  7104  7105  7106  7107  7108  7109  7110  7111
##  [6937]  7112  7113  7114  7115  7116  7117  7118  7119  7120  7121  7122  7123
##  [6949]  7124  7125  7126  7127  7128  7129  7130  7131  7132  7133  7134  7135
##  [6961]  7136  7137  7138  7139  7140  7141  7142  7143  7144  7145  7146  7147
##  [6973]  7148  7149  7150  7151  7152  7153  7154  7155  7156  7157  7158  7159
##  [6985]  7160  7162  7163  7164  7165  7166  7167  7168  7169  7170  7171  7172
##  [6997]  7173  7174  7175  7176  7177  7178  7179  7180  7181  7182  7183  7184
##  [7009]  7185  7186  7187  7188  7189  7190  7191  7192  7193  7194  7195  7196
##  [7021]  7197  7198  7199  7200  7201  7202  7203  7204  7205  7206  7207  7208
##  [7033]  7209  7210  7211  7212  7213  7214  7215  7216  7217  7218  7219  7220
##  [7045]  7221  7222  7223  7224  7225  7226  7227  7228  7229  7230  7231  7232
##  [7057]  7233  7234  7235  7236  7237  7238  7240  7241  7243  7244  7245  7246
##  [7069]  7247  7248  7249  7250  7251  7252  7253  7254  7255  7256  7257  7258
##  [7081]  7259  7260  7261  7262  7263  7264  7265  7266  7267  7268  7269  7270
##  [7093]  7271  7272  7273  7274  7275  7276  7277  7278  7279  7280  7281  7282
##  [7105]  7283  7284  7285  7286  7287  7288  7289  7290  7291  7292  7293  7294
##  [7117]  7295  7296  7297  7298  7299  7300  7301  7302  7303  7304  7305  7306
##  [7129]  7307  7308  7309  7310  7311  7312  7313  7314  7315  7316  7317  7318
##  [7141]  7319  7320  7321  7322  7323  7324  7325  7326  7327  7328  7329  7330
##  [7153]  7331  7332  7333  7334  7335  7336  7337  7338  7339  7340  7341  7342
##  [7165]  7343  7344  7345  7346  7347  7348  7349  7350  7351  7352  7353  7354
##  [7177]  7355  7356  7357  7358  7359  7360  7361  7362  7363  7364  7365  7366
##  [7189]  7367  7368  7369  7370  7371  7372  7373  7374  7375  7376  7377  7378
##  [7201]  7379  7380  7381  7382  7383  7384  7385  7386  7387  7388  7389  7390
##  [7213]  7391  7392  7393  7394  7395  7396  7397  7398  7399  7400  7401  7402
##  [7225]  7403  7404  7405  7406  7407  7408  7409  7410  7411  7412  7413  7414
##  [7237]  7415  7416  7417  7418  7419  7420  7421  7422  7423  7424  7425  7426
##  [7249]  7427  7428  7429  7430  7431  7432  7433  7434  7435  7437  7438  7439
##  [7261]  7440  7441  7442  7443  7444  7445  7446  7447  7448  7449  7450  7451
##  [7273]  7452  7453  7454  7456  7457  7458  7459  7460  7461  7462  7463  7464
##  [7285]  7465  7466  7467  7468  7469  7470  7471  7472  7473  7474  7475  7476
##  [7297]  7477  7478  7479  7480  7481  7482  7483  7484  7485  7486  7487  7488
##  [7309]  7489  7490  7491  7492  7493  7495  7496  7497  7498  7499  7500  7501
##  [7321]  7502  7503  7504  7505  7506  7507  7508  7509  7510  7511  7512  7513
##  [7333]  7514  7515  7516  7517  7518  7519  7520  7521  7522  7523  7524  7525
##  [7345]  7526  7527  7528  7529  7530  7531  7532  7534  7535  7536  7537  7538
##  [7357]  7539  7540  7542  7543  7545  7546  7547  7548  7549  7550  7551  7552
##  [7369]  7553  7554  7555  7556  7557  7558  7559  7560  7561  7562  7563  7564
##  [7381]  7565  7566  7567  7568  7569  7570  7571  7572  7573  7574  7575  7576
##  [7393]  7577  7578  7579  7580  7581  7582  7583  7584  7585  7586  7587  7588
##  [7405]  7589  7590  7591  7592  7593  7594  7595  7596  7597  7598  7599  7600
##  [7417]  7601  7602  7603  7604  7605  7606  7607  7608  7609  7610  7611  7612
##  [7429]  7613  7614  7615  7616  7617  7618  7619  7620  7621  7622  7623  7624
##  [7441]  7625  7626  7627  7628  7629  7630  7631  7632  7633  7634  7635  7636
##  [7453]  7637  7638  7639  7640  7641  7642  7643  7644  7645  7646  7647  7648
##  [7465]  7649  7650  7651  7652  7653  7654  7655  7656  7657  7658  7659  7660
##  [7477]  7661  7662  7663  7664  7665  7666  7667  7668  7669  7670  7671  7672
##  [7489]  7673  7674  7675  7676  7677  7678  7679  7680  7682  7683  7684  7685
##  [7501]  7686  7687  7688  7689  7690  7691  7692  7693  7694  7695  7696  7697
##  [7513]  7698  7699  7700  7701  7702  7703  7704  7705  7706  7707  7708  7709
##  [7525]  7710  7711  7712  7713  7714  7715  7716  7717  7718  7719  7720  7721
##  [7537]  7722  7723  7724  7725  7726  7727  7728  7729  7730  7731  7732  7733
##  [7549]  7734  7735  7736  7737  7738  7739  7740  7741  7742  7743  7744  7745
##  [7561]  7746  7747  7748  7749  7750  7751  7752  7753  7754  7755  7756  7757
##  [7573]  7758  7759  7760  7761  7762  7763  7764  7765  7766  7767  7768  7769
##  [7585]  7770  7771  7772  7773  7774  7775  7776  7777  7778  7779  7780  7781
##  [7597]  7782  7783  7784  7785  7786  7787  7788  7789  7790  7791  7792  7793
##  [7609]  7794  7795  7796  7797  7798  7799  7800  7801  7802  7803  7804  7805
##  [7621]  7806  7807  7808  7809  7810  7811  7812  7813  7814  7815  7816  7817
##  [7633]  7818  7819  7820  7821  7822  7823  7824  7825  7826  7827  7828  7829
##  [7645]  7830  7831  7833  7834  7835  7836  7837  7838  7839  7840  7841  7842
##  [7657]  7843  7844  7845  7846  7847  7848  7849  7850  7851  7852  7853  7854
##  [7669]  7855  7856  7857  7858  7859  7860  7861  7862  7863  7864  7865  7866
##  [7681]  7867  7868  7869  7870  7871  7872  7873  7874  7875  7876  7877  7878
##  [7693]  7879  7880  7881  7882  7883  7884  7885  7886  7887  7888  7889  7890
##  [7705]  7891  7892  7893  7894  7895  7896  7897  7898  7899  7900  7901  7902
##  [7717]  7903  7904  7905  7906  7907  7908  7909  7910  7911  7912  7913  7914
##  [7729]  7915  7916  7917  7918  7919  7920  7921  7922  7923  7924  7925  7926
##  [7741]  7927  7928  7929  7930  7931  7932  7933  7934  7935  7936  7937  7938
##  [7753]  7939  7940  7941  7942  7943  7944  7945  7946  7947  7948  7949  7950
##  [7765]  7951  7952  7953  7954  7955  7956  7957  7958  7959  7960  7961  7962
##  [7777]  7963  7964  7965  7966  7967  7968  7969  7970  7971  7972  7973  7974
##  [7789]  7975  7976  7977  7978  7979  7980  7981  7982  7983  7984  7985  7986
##  [7801]  7987  7988  7989  7990  7991  7992  7993  7994  7995  7996  7997  7998
##  [7813]  7999  8000  8001  8002  8003  8004  8005  8006  8007  8008  8009  8010
##  [7825]  8011  8012  8013  8014  8015  8016  8017  8018  8019  8020  8021  8022
##  [7837]  8023  8024  8025  8026  8027  8028  8029  8030  8031  8032  8033  8034
##  [7849]  8035  8036  8037  8038  8039  8040  8041  8042  8043  8044  8045  8046
##  [7861]  8047  8048  8049  8050  8051  8052  8053  8054  8055  8056  8057  8058
##  [7873]  8059  8060  8061  8062  8063  8064  8065  8066  8067  8068  8069  8070
##  [7885]  8071  8072  8073  8074  8075  8076  8077  8078  8079  8080  8081  8082
##  [7897]  8083  8084  8085  8086  8087  8088  8089  8090  8091  8092  8093  8094
##  [7909]  8095  8096  8097  8098  8099  8100  8101  8102  8103  8104  8105  8106
##  [7921]  8107  8108  8109  8110  8111  8112  8113  8114  8115  8116  8117  8118
##  [7933]  8119  8120  8121  8122  8123  8124  8125  8126  8127  8128  8129  8130
##  [7945]  8131  8132  8133  8134  8135  8136  8137  8138  8139  8140  8141  8142
##  [7957]  8143  8144  8145  8146  8147  8148  8149  8150  8151  8152  8153  8154
##  [7969]  8155  8156  8157  8158  8159  8160  8161  8162  8163  8164  8165  8166
##  [7981]  8167  8168  8169  8170  8171  8172  8173  8174  8175  8176  8177  8178
##  [7993]  8179  8180  8181  8182  8183  8184  8185  8186  8187  8188  8189  8190
##  [8005]  8191  8192  8193  8194  8195  8196  8197  8198  8199  8200  8201  8202
##  [8017]  8203  8204  8205  8206  8207  8208  8209  8210  8211  8212  8213  8214
##  [8029]  8215  8216  8217  8218  8219  8220  8221  8222  8223  8224  8225  8226
##  [8041]  8227  8228  8229  8230  8231  8232  8233  8234  8235  8236  8237  8238
##  [8053]  8239  8240  8241  8242  8243  8244  8245  8246  8247  8248  8249  8250
##  [8065]  8251  8252  8253  8254  8255  8256  8257  8259  8260  8261  8262  8263
##  [8077]  8264  8265  8266  8267  8268  8269  8270  8271  8272  8273  8274  8275
##  [8089]  8276  8277  8278  8279  8280  8281  8282  8283  8284  8285  8286  8287
##  [8101]  8288  8289  8290  8291  8292  8293  8294  8295  8296  8297  8298  8299
##  [8113]  8300  8301  8302  8303  8304  8305  8306  8307  8308  8309  8310  8311
##  [8125]  8312  8313  8314  8315  8316  8317  8318  8319  8320  8321  8322  8323
##  [8137]  8324  8325  8327  8328  8329  8330  8331  8332  8333  8334  8335  8336
##  [8149]  8337  8338  8339  8340  8341  8342  8343  8344  8345  8346  8347  8348
##  [8161]  8349  8350  8351  8352  8353  8354  8355  8356  8357  8358  8359  8360
##  [8173]  8361  8362  8363  8364  8365  8366  8367  8368  8369  8370  8371  8372
##  [8185]  8373  8374  8375  8376  8377  8378  8379  8380  8381  8382  8383  8384
##  [8197]  8385  8386  8387  8388  8389  8390  8391  8392  8393  8394  8395  8396
##  [8209]  8397  8398  8399  8400  8401  8402  8403  8404  8405  8406  8407  8408
##  [8221]  8409  8410  8411  8412  8413  8414  8415  8416  8417  8418  8419  8420
##  [8233]  8421  8422  8423  8424  8425  8426  8427  8428  8429  8430  8431  8432
##  [8245]  8433  8434  8435  8436  8437  8438  8439  8440  8441  8442  8443  8444
##  [8257]  8445  8446  8447  8448  8449  8450  8451  8452  8453  8454  8455  8456
##  [8269]  8457  8458  8459  8460  8461  8462  8463  8464  8465  8466  8467  8468
##  [8281]  8469  8470  8471  8472  8473  8474  8475  8476  8477  8478  8479  8480
##  [8293]  8481  8482  8483  8484  8485  8486  8487  8488  8489  8490  8491  8492
##  [8305]  8493  8494  8495  8496  8497  8498  8499  8500  8501  8502  8503  8504
##  [8317]  8505  8506  8507  8508  8509  8510  8511  8512  8513  8514  8515  8516
##  [8329]  8517  8518  8519  8520  8521  8522  8523  8524  8525  8526  8527  8528
##  [8341]  8529  8530  8531  8532  8533  8534  8535  8536  8537  8538  8539  8540
##  [8353]  8541  8542  8543  8544  8545  8546  8547  8548  8549  8550  8551  8552
##  [8365]  8553  8554  8555  8556  8557  8558  8559  8560  8561  8562  8563  8564
##  [8377]  8565  8566  8567  8568  8569  8570  8571  8572  8573  8574  8575  8576
##  [8389]  8577  8578  8579  8580  8581  8582  8583  8584  8585  8586  8587  8588
##  [8401]  8589  8590  8591  8592  8593  8594  8595  8596  8597  8598  8599  8600
##  [8413]  8601  8602  8603  8604  8605  8606  8607  8608  8609  8610  8611  8612
##  [8425]  8613  8614  8615  8616  8617  8618  8619  8620  8621  8622  8623  8624
##  [8437]  8625  8626  8627  8628  8629  8630  8631  8632  8633  8634  8635  8636
##  [8449]  8637  8638  8639  8640  8641  8642  8643  8644  8645  8646  8647  8648
##  [8461]  8649  8650  8651  8652  8653  8654  8655  8656  8657  8658  8659  8660
##  [8473]  8661  8662  8663  8664  8665  8666  8667  8668  8669  8670  8671  8672
##  [8485]  8673  8674  8675  8676  8677  8678  8679  8680  8681  8682  8683  8684
##  [8497]  8685  8687  8688  8689  8690  8691  8692  8693  8694  8695  8696  8697
##  [8509]  8698  8699  8700  8701  8702  8703  8704  8705  8706  8707  8708  8709
##  [8521]  8710  8711  8712  8713  8714  8715  8716  8717  8718  8719  8720  8721
##  [8533]  8722  8723  8724  8725  8726  8727  8728  8729  8730  8731  8732  8733
##  [8545]  8734  8735  8736  8737  8738  8739  8740  8741  8742  8743  8744  8745
##  [8557]  8746  8747  8748  8749  8750  8751  8752  8753  8754  8755  8756  8757
##  [8569]  8758  8759  8760  8761  8762  8763  8764  8765  8766  8767  8768  8769
##  [8581]  8770  8771  8772  8773  8774  8775  8776  8777  8778  8779  8780  8781
##  [8593]  8782  8783  8784  8785  8786  8787  8788  8789  8790  8791  8792  8793
##  [8605]  8794  8795  8796  8797  8798  8799  8800  8801  8802  8803  8804  8805
##  [8617]  8806  8807  8808  8809  8810  8811  8812  8814  8815  8816  8817  8818
##  [8629]  8819  8820  8821  8822  8823  8824  8825  8826  8827  8828  8829  8830
##  [8641]  8831  8832  8833  8834  8835  8836  8837  8838  8839  8840  8841  8842
##  [8653]  8843  8844  8845  8846  8847  8849  8850  8851  8852  8853  8854  8855
##  [8665]  8856  8857  8858  8859  8860  8861  8862  8863  8864  8865  8866  8867
##  [8677]  8868  8869  8871  8872  8873  8874  8875  8876  8877  8878  8879  8880
##  [8689]  8881  8882  8883  8884  8885  8886  8887  8888  8889  8890  8891  8892
##  [8701]  8893  8894  8895  8896  8897  8898  8899  8900  8901  8902  8903  8904
##  [8713]  8905  8906  8907  8908  8909  8910  8911  8912  8913  8914  8915  8916
##  [8725]  8917  8918  8919  8920  8921  8922  8923  8924  8925  8926  8927  8929
##  [8737]  8930  8931  8932  8933  8934  8935  8936  8937  8938  8939  8940  8941
##  [8749]  8942  8943  8944  8945  8946  8947  8948  8949  8950  8951  8952  8953
##  [8761]  8954  8955  8956  8957  8958  8959  8960  8961  8962  8963  8964  8965
##  [8773]  8966  8967  8968  8969  8970  8971  8972  8973  8974  8975  8976  8977
##  [8785]  8978  8979  8980  8981  8982  8983  8984  8985  8986  8987  8988  8989
##  [8797]  8990  8991  8992  8993  8994  8995  8996  8997  8998  8999  9000  9001
##  [8809]  9002  9003  9004  9005  9006  9007  9008  9009  9010  9011  9012  9013
##  [8821]  9015  9016  9017  9018  9019  9020  9021  9022  9023  9024  9025  9026
##  [8833]  9027  9028  9029  9030  9031  9032  9033  9034  9035  9036  9037  9038
##  [8845]  9039  9040  9041  9042  9043  9044  9045  9046  9047  9048  9049  9051
##  [8857]  9052  9053  9054  9055  9056  9057  9058  9059  9060  9061  9062  9063
##  [8869]  9064  9065  9066  9067  9068  9069  9070  9071  9072  9073  9074  9075
##  [8881]  9076  9077  9078  9079  9080  9081  9082  9083  9084  9085  9086  9087
##  [8893]  9088  9089  9090  9091  9092  9093  9094  9095  9096  9097  9098  9099
##  [8905]  9100  9101  9102  9103  9104  9105  9106  9107  9108  9109  9110  9111
##  [8917]  9112  9113  9114  9115  9116  9117  9118  9119  9120  9121  9122  9123
##  [8929]  9124  9125  9126  9127  9128  9129  9130  9131  9132  9133  9134  9135
##  [8941]  9136  9137  9138  9139  9140  9141  9142  9143  9144  9145  9146  9147
##  [8953]  9148  9149  9150  9151  9152  9153  9154  9155  9156  9157  9158  9159
##  [8965]  9160  9161  9162  9163  9164  9165  9166  9167  9168  9169  9170  9171
##  [8977]  9172  9173  9174  9175  9176  9177  9178  9179  9180  9181  9182  9183
##  [8989]  9184  9185  9186  9187  9188  9189  9190  9191  9192  9193  9194  9195
##  [9001]  9196  9197  9198  9199  9200  9201  9202  9203  9204  9205  9206  9207
##  [9013]  9209  9210  9211  9212  9213  9214  9215  9216  9217  9218  9219  9220
##  [9025]  9221  9222  9223  9224  9225  9226  9227  9228  9229  9230  9231  9232
##  [9037]  9233  9234  9235  9236  9237  9238  9239  9240  9241  9242  9243  9244
##  [9049]  9245  9246  9247  9248  9249  9250  9251  9252  9253  9254  9255  9256
##  [9061]  9257  9258  9259  9260  9261  9262  9263  9264  9265  9266  9267  9268
##  [9073]  9269  9270  9271  9272  9273  9274  9275  9276  9277  9278  9279  9280
##  [9085]  9281  9282  9283  9284  9285  9286  9288  9289  9290  9291  9292  9293
##  [9097]  9294  9295  9296  9297  9298  9299  9300  9301  9302  9303  9304  9305
##  [9109]  9306  9307  9308  9309  9310  9311  9312  9313  9314  9315  9317  9318
##  [9121]  9319  9320  9321  9322  9323  9324  9325  9326  9327  9328  9329  9330
##  [9133]  9331  9332  9333  9334  9335  9336  9337  9338  9339  9340  9341  9342
##  [9145]  9343  9344  9345  9346  9347  9348  9349  9350  9351  9352  9353  9354
##  [9157]  9355  9356  9357  9358  9359  9360  9361  9362  9363  9364  9365  9366
##  [9169]  9367  9368  9369  9370  9371  9372  9373  9374  9375  9376  9377  9378
##  [9181]  9379  9380  9381  9382  9383  9384  9385  9386  9387  9388  9389  9390
##  [9193]  9391  9392  9393  9394  9395  9396  9397  9398  9399  9400  9401  9402
##  [9205]  9403  9404  9405  9406  9407  9408  9409  9410  9411  9412  9413  9414
##  [9217]  9415  9416  9417  9418  9419  9420  9421  9422  9423  9424  9425  9426
##  [9229]  9427  9428  9429  9430  9431  9432  9433  9434  9435  9436  9437  9438
##  [9241]  9439  9440  9441  9442  9443  9444  9445  9446  9447  9448  9449  9450
##  [9253]  9451  9452  9453  9454  9455  9456  9457  9458  9459  9460  9461  9462
##  [9265]  9463  9464  9465  9466  9467  9468  9469  9470  9471  9472  9473  9474
##  [9277]  9475  9476  9477  9478  9479  9480  9481  9482  9483  9484  9485  9486
##  [9289]  9487  9488  9489  9490  9491  9492  9493  9494  9495  9496  9497  9498
##  [9301]  9499  9500  9501  9502  9503  9504  9505  9506  9507  9508  9509  9510
##  [9313]  9511  9512  9513  9514  9515  9516  9517  9518  9519  9520  9521  9522
##  [9325]  9523  9524  9525  9526  9527  9528  9529  9530  9531  9532  9533  9534
##  [9337]  9535  9536  9537  9538  9539  9540  9541  9542  9543  9544  9545  9546
##  [9349]  9547  9548  9549  9550  9551  9552  9553  9554  9555  9556  9557  9558
##  [9361]  9559  9560  9561  9562  9563  9564  9565  9566  9567  9568  9569  9570
##  [9373]  9571  9572  9573  9574  9575  9576  9577  9578  9579  9580  9581  9582
##  [9385]  9583  9584  9585  9586  9587  9588  9589  9590  9591  9592  9593  9594
##  [9397]  9595  9596  9597  9598  9599  9600  9601  9602  9603  9604  9605  9606
##  [9409]  9607  9608  9609  9610  9611  9612  9613  9614  9615  9616  9617  9618
##  [9421]  9619  9620  9621  9622  9623  9624  9625  9626  9627  9628  9629  9630
##  [9433]  9631  9632  9633  9634  9635  9636  9637  9638  9639  9640  9641  9642
##  [9445]  9643  9644  9645  9646  9647  9648  9649  9650  9651  9652  9653  9654
##  [9457]  9655  9656  9657  9658  9659  9660  9661  9662  9663  9664  9665  9666
##  [9469]  9667  9668  9669  9670  9671  9672  9673  9674  9675  9676  9677  9678
##  [9481]  9679  9680  9681  9682  9683  9684  9685  9686  9687  9688  9689  9690
##  [9493]  9691  9692  9693  9694  9695  9696  9697  9698  9699  9700  9701  9702
##  [9505]  9703  9704  9705  9706  9707  9708  9709  9710  9711  9712  9713  9714
##  [9517]  9715  9716  9717  9718  9719  9720  9721  9722  9723  9724  9725  9726
##  [9529]  9727  9728  9729  9730  9731  9732  9733  9734  9735  9736  9737  9738
##  [9541]  9739  9740  9741  9742  9743  9744  9745  9746  9747  9748  9749  9750
##  [9553]  9751  9752  9753  9754  9755  9756  9757  9758  9759  9760  9761  9762
##  [9565]  9763  9764  9765  9766  9767  9768  9769  9770  9771  9772  9773  9774
##  [9577]  9775  9776  9777  9778  9779  9780  9781  9782  9783  9784  9785  9786
##  [9589]  9787  9788  9789  9790  9791  9792  9793  9794  9795  9796  9797  9798
##  [9601]  9799  9800  9801  9802  9803  9804  9805  9806  9807  9808  9809  9810
##  [9613]  9811  9812  9813  9814  9815  9816  9817  9818  9819  9820  9821  9822
##  [9625]  9823  9824  9825  9826  9827  9828  9829  9830  9831  9832  9833  9834
##  [9637]  9835  9836  9837  9838  9839  9840  9841  9842  9843  9844  9845  9846
##  [9649]  9847  9848  9849  9850  9851  9852  9853  9854  9855  9856  9857  9858
##  [9661]  9859  9860  9861  9862  9863  9864  9865  9866  9867  9868  9869  9870
##  [9673]  9871  9872  9873  9874  9875  9876  9877  9878  9879  9880  9881  9882
##  [9685]  9883  9884  9885  9886  9887  9888  9889  9890  9891  9892  9893  9894
##  [9697]  9895  9896  9897  9898  9899  9900  9901  9902  9903  9904  9905  9906
##  [9709]  9907  9908  9909  9910  9911  9912  9913  9914  9915  9916  9917  9918
##  [9721]  9919  9920  9921  9922  9923  9924  9925  9926  9927  9928  9929  9930
##  [9733]  9931  9932  9933  9934  9935  9936  9937  9938  9939  9940  9941  9942
##  [9745]  9943  9944  9945  9946  9947  9948  9949  9950  9951  9952  9953  9954
##  [9757]  9955  9956  9957  9958  9959  9960  9961  9962  9963  9964  9965  9966
##  [9769]  9967  9968  9969  9970  9971  9972  9973  9974  9975  9976  9977  9978
##  [9781]  9979  9980  9981  9982  9983  9984  9985  9986  9987  9988  9989  9990
##  [9793]  9991  9992  9993  9994  9996  9997  9998  9999 10000 10001 10002 10003
##  [9805] 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015
##  [9817] 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027
##  [9829] 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039
##  [9841] 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051
##  [9853] 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063
##  [9865] 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075
##  [9877] 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087
##  [9889] 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099
##  [9901] 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111
##  [9913] 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123
##  [9925] 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135
##  [9937] 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147
##  [9949] 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159
##  [9961] 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171
##  [9973] 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183
##  [9985] 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195
##  [9997] 10196 10197 10198 10199 10200 10202 10203 10204 10205 10206 10207 10208
## [10009] 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220
## [10021] 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232
## [10033] 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244
## [10045] 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256
## [10057] 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268
## [10069] 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280
## [10081] 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292
## [10093] 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304
## [10105] 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316
## [10117] 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328
## [10129] 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340
## [10141] 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352
## [10153] 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364
## [10165] 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376
## [10177] 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388
## [10189] 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400
## [10201] 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412
## [10213] 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424
## [10225] 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436
## [10237] 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448
## [10249] 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460
## [10261] 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472
## [10273] 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484
## [10285] 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496
## [10297] 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508
## [10309] 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520
## [10321] 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532
## [10333] 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544
## [10345] 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556
## [10357] 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568
## [10369] 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580
## [10381] 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592
## [10393] 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604
## [10405] 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616
## [10417] 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628
## [10429] 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640
## [10441] 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652
## [10453] 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664
## [10465] 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676
## [10477] 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688
## [10489] 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700
## [10501] 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712
## [10513] 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724
## [10525] 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736
## [10537] 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748
## [10549] 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760
## [10561] 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772
## [10573] 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784
## [10585] 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796
## [10597] 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808
## [10609] 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820
## [10621] 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832
## [10633] 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844
## [10645] 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856
## [10657] 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868
## [10669] 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880
## [10681] 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892
## [10693] 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904
## [10705] 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916
## [10717] 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928
## [10729] 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940
## [10741] 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952
## [10753] 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964
## [10765] 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976
## [10777] 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988
## [10789] 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000
## [10801] 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012
## [10813] 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024
## [10825] 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036
## [10837] 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048
## [10849] 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060
## [10861] 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072
## [10873] 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084
## [10885] 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096
## [10897] 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108
## [10909] 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120
## [10921] 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132
## [10933] 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144
## [10945] 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156
## [10957] 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168
## [10969] 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180
## [10981] 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192
## [10993] 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204
## [11005] 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216
## [11017] 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228
## [11029] 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240
## [11041] 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252
## [11053] 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264
## [11065] 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276
## [11077] 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288
## [11089] 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300
## [11101] 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312
## [11113] 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324
## [11125] 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336
## [11137] 11337 11338 11339 11340 11341 11342 11344 11345 11346 11347 11348 11349
## [11149] 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361
## [11161] 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373
## [11173] 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385
## [11185] 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397
## [11197] 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409
## [11209] 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421
## [11221] 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433
## [11233] 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445
## [11245] 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457
## [11257] 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469
## [11269] 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481
## [11281] 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493
## [11293] 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505
## [11305] 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517
## [11317] 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11530
## [11329] 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542
## [11341] 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554
## [11353] 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566
## [11365] 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578
## [11377] 11579 11580 11581 11582 11583 11584 11585 11587 11588 11589 11590 11591
## [11389] 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603
## [11401] 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11616
## [11413] 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628
## [11425] 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640
## [11437] 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652
## [11449] 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664
## [11461] 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676
## [11473] 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688
## [11485] 11689 11690 11691 11692 11694 11695 11696 11697 11698 11699 11700 11701
## [11497] 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713
## [11509] 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725
## [11521] 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737
## [11533] 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749
## [11545] 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761
## [11557] 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773
## [11569] 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785
## [11581] 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797
## [11593] 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809
## [11605] 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821
## [11617] 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833
## [11629] 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845
## [11641] 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857
## [11653] 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869
## [11665] 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881
## [11677] 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11893 11894
## [11689] 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906
## [11701] 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918
## [11713] 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930
## [11725] 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942
## [11737] 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954
## [11749] 11955 11956 11957 11958 11959 11960 11962 11963 11964 11965 11966 11967
## [11761] 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979
## [11773] 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991
## [11785] 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003
## [11797] 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12016
## [11809] 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028
## [11821] 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040
## [11833] 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052
## [11845] 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064
## [11857] 12065 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077
## [11869] 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089
## [11881] 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101
## [11893] 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113
## [11905] 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125
## [11917] 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137
## [11929] 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149
## [11941] 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161
## [11953] 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173
## [11965] 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185
## [11977] 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197
## [11989] 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209
## [12001] 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221
## [12013] 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233
## [12025] 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245
## [12037] 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257
## [12049] 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269
## [12061] 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281
## [12073] 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293
## [12085] 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305
## [12097] 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317
## [12109] 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329
## [12121] 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341
## [12133] 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353
## [12145] 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365
## [12157] 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377
## [12169] 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389
## [12181] 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401
## [12193] 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413
## [12205] 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425
## [12217] 12426 12427 12428 12429 12430 12432 12433 12434 12435 12436 12437 12438
## [12229] 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450
## [12241] 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462
## [12253] 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474
## [12265] 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486
## [12277] 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498
## [12289] 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510
## [12301] 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522
## [12313] 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534
## [12325] 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546
## [12337] 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558
## [12349] 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570
## [12361] 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582
## [12373] 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594
## [12385] 12595 12596 12597 12598 12599 12601 12602 12603 12604 12605 12606 12607
## [12397] 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619
## [12409] 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631
## [12421] 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643
## [12433] 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655
## [12445] 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667
## [12457] 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679
## [12469] 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691
## [12481] 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703
## [12493] 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715
## [12505] 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727
## [12517] 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739
## [12529] 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751
## [12541] 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763
## [12553] 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775
## [12565] 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787
## [12577] 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799
## [12589] 12800 12801 12802 12803 12804 12805 12806 12807 12809 12810 12811 12812
## [12601] 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824
## [12613] 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836
## [12625] 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848
## [12637] 12849 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861
## [12649] 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873
## [12661] 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885
## [12673] 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897
## [12685] 12898 12899 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910
## [12697] 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922
## [12709] 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934
## [12721] 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946
## [12733] 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958
## [12745] 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970
## [12757] 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982
## [12769] 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994
## [12781] 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006
## [12793] 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018
## [12805] 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030
## [12817] 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042
## [12829] 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054
## [12841] 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066
## [12853] 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078
## [12865] 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090
## [12877] 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102
## [12889] 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114
## [12901] 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126
## [12913] 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138
## [12925] 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150
## [12937] 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162
## [12949] 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174
## [12961] 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186
## [12973] 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198
## [12985] 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210
## [12997] 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222
## [13009] 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234
## [13021] 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246
## [13033] 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258
## [13045] 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270
## [13057] 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282
## [13069] 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294
## [13081] 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306
## [13093] 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318
## [13105] 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330
## [13117] 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342
## [13129] 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354
## [13141] 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366
## [13153] 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378
## [13165] 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390
## [13177] 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402
## [13189] 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414
## [13201] 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426
## [13213] 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438
## [13225] 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450
## [13237] 13451 13452 13453 13454 13456 13457 13458 13459 13460 13461 13462 13463
## [13249] 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475
## [13261] 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487
## [13273] 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499
## [13285] 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511
## [13297] 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523
## [13309] 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535
## [13321] 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547
## [13333] 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559
## [13345] 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571
## [13357] 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583
## [13369] 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595
## [13381] 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607
## [13393] 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619
## [13405] 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631
## [13417] 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643
## [13429] 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655
## [13441] 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667
## [13453] 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679
## [13465] 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691
## [13477] 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703
## [13489] 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715
## [13501] 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727
## [13513] 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739
## [13525] 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751
## [13537] 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763
## [13549] 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775
## [13561] 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787
## [13573] 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799
## [13585] 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811
## [13597] 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823
## [13609] 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835
## [13621] 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847
## [13633] 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859
## [13645] 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871
## [13657] 13872 13873 13874 13875 13876 13878 13879 13880 13881 13882 13883 13884
## [13669] 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896
## [13681] 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908
## [13693] 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920
## [13705] 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932
## [13717] 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944
## [13729] 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956
## [13741] 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968
## [13753] 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980
## [13765] 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992
## [13777] 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004
## [13789] 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016
## [13801] 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028
## [13813] 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040
## [13825] 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052
## [13837] 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064
## [13849] 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076
## [13861] 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088
## [13873] 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100
## [13885] 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112
## [13897] 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124
## [13909] 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136
## [13921] 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148
## [13933] 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160
## [13945] 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172
## [13957] 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184
## [13969] 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196
## [13981] 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208
## [13993] 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220
## [14005] 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232
## [14017] 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244
## [14029] 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256
## [14041] 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268
## [14053] 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280
## [14065] 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292
## [14077] 14293 14294 14295 14296 14298 14299 14300 14301 14302 14303 14304 14305
## [14089] 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317
## [14101] 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329
## [14113] 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341
## [14125] 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353
## [14137] 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365
## [14149] 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377
## [14161] 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389
## [14173] 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401
## [14185] 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413
## [14197] 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425
## [14209] 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437
## [14221] 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449
## [14233] 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461
## [14245] 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473
## [14257] 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485
## [14269] 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497
## [14281] 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509
## [14293] 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521
## [14305] 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533
## [14317] 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545
## [14329] 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557
## [14341] 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569
## [14353] 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581
## [14365] 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593
## [14377] 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605
## [14389] 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617
## [14401] 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629
## [14413] 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641
## [14425] 14642 14643 14644 14645 14646 14647 14648 14650 14651 14652 14653 14654
## [14437] 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666
## [14449] 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678
## [14461] 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690
## [14473] 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702
## [14485] 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714
## [14497] 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726
## [14509] 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738
## [14521] 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750
## [14533] 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762
## [14545] 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774
## [14557] 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786
## [14569] 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798
## [14581] 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810
## [14593] 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822
## [14605] 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834
## [14617] 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846
## [14629] 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858
## [14641] 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870
## [14653] 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882
## [14665] 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894
## [14677] 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906
## [14689] 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918
## [14701] 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930
## [14713] 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942
## [14725] 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954
## [14737] 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966
## [14749] 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978
## [14761] 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990
## [14773] 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002
## [14785] 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014
## [14797] 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026
## [14809] 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038
## [14821] 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050
## [14833] 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062
## [14845] 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074
## [14857] 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086
## [14869] 15087 15088 15089 15090 15091 15092 15093 15094 15096 15097 15098 15099
## [14881] 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111
## [14893] 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123
## [14905] 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135
## [14917] 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147
## [14929] 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159
## [14941] 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171
## [14953] 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183
## [14965] 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195
## [14977] 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207
## [14989] 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219
## [15001] 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231
## [15013] 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243
## [15025] 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255
## [15037] 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267
## [15049] 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279
## [15061] 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291
## [15073] 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303
## [15085] 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315
## [15097] 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327
## [15109] 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339
## [15121] 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351
## [15133] 15352 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364
## [15145] 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376
## [15157] 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388
## [15169] 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400
## [15181] 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412
## [15193] 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424
## [15205] 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436
## [15217] 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448
## [15229] 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460
## [15241] 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472
## [15253] 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484
## [15265] 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496
## [15277] 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508
## [15289] 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520
## [15301] 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532
## [15313] 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544
## [15325] 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556
## [15337] 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568
## [15349] 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580
## [15361] 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592
## [15373] 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604
## [15385] 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616
## [15397] 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15629
## [15409] 15630 15631 15632 15633 15634 15635 15637 15638 15639 15640 15641 15642
## [15421] 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654
## [15433] 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666
## [15445] 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678
## [15457] 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690
## [15469] 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702
## [15481] 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714
## [15493] 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726
## [15505] 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738
## [15517] 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750
## [15529] 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762
## [15541] 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774
## [15553] 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786
## [15565] 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798
## [15577] 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810
## [15589] 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822
## [15601] 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834
## [15613] 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846
## [15625] 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858
## [15637] 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870
## [15649] 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882
## [15661] 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894
## [15673] 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906
## [15685] 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918
## [15697] 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930
## [15709] 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942
## [15721] 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954
## [15733] 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966
## [15745] 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978
## [15757] 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990
## [15769] 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002
## [15781] 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014
## [15793] 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026
## [15805] 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038
## [15817] 16039 16040 16041 16042 16044 16045 16046 16047 16048 16049 16050 16051
## [15829] 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063
## [15841] 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075
## [15853] 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087
## [15865] 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099
## [15877] 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111
## [15889] 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123
## [15901] 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135
## [15913] 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147
## [15925] 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159
## [15937] 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171
## [15949] 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183
## [15961] 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195
## [15973] 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207
## [15985] 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219
## [15997] 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231
## [16009] 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243
## [16021] 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255
## [16033] 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267
## [16045] 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279
## [16057] 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291
## [16069] 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303
## [16081] 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315
## [16093] 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327
## [16105] 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339
## [16117] 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351
## [16129] 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363
## [16141] 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375
## [16153] 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387
## [16165] 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399
## [16177] 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411
## [16189] 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423
## [16201] 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435
## [16213] 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447
## [16225] 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459
## [16237] 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471
## [16249] 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483
## [16261] 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495
## [16273] 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507
## [16285] 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519
## [16297] 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531
## [16309] 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543
## [16321] 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555
## [16333] 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567
## [16345] 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579
## [16357] 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591
## [16369] 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603
## [16381] 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615
## [16393] 16616 16617 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628
## [16405] 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640
## [16417] 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652
## [16429] 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664
## [16441] 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676
## [16453] 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688
## [16465] 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700
## [16477] 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712
## [16489] 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724
## [16501] 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736
## [16513] 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748
## [16525] 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760
## [16537] 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772
## [16549] 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784
## [16561] 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796
## [16573] 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808
## [16585] 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820
## [16597] 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832
## [16609] 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844
## [16621] 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856
## [16633] 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868
## [16645] 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880
## [16657] 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892
## [16669] 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16904 16905
## [16681] 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917
## [16693] 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929
## [16705] 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941
## [16717] 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953
## [16729] 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965
## [16741] 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977
## [16753] 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989
## [16765] 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001
## [16777] 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013
## [16789] 17014 17015 17016 17017 17018 17019 17020 17021 17022 17024 17025 17026
## [16801] 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038
## [16813] 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050
## [16825] 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062
## [16837] 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074
## [16849] 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086
## [16861] 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098
## [16873] 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110
## [16885] 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122
## [16897] 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134
## [16909] 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146
## [16921] 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158
## [16933] 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170
## [16945] 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182
## [16957] 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194
## [16969] 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206
## [16981] 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218
## [16993] 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230
## [17005] 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242
## [17017] 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254
## [17029] 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266
## [17041] 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278
## [17053] 17279 17280 17281 17282 17283 17284 17285 17287 17288 17289 17290 17291
## [17065] 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303
## [17077] 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315
## [17089] 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327
## [17101] 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339
## [17113] 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351
## [17125] 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363
## [17137] 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375
## [17149] 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387
## [17161] 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399
## [17173] 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411
## [17185] 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423
## [17197] 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435
## [17209] 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447
## [17221] 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459
## [17233] 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471
## [17245] 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483
## [17257] 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495
## [17269] 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507
## [17281] 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519
## [17293] 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531
## [17305] 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543
## [17317] 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555
## [17329] 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567
## [17341] 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579
## [17353] 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591
## [17365] 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603
## [17377] 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615
## [17389] 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627
## [17401] 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639
## [17413] 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651
## [17425] 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663
## [17437] 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675
## [17449] 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687
## [17461] 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699
## [17473] 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711
## [17485] 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723
## [17497] 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735
## [17509] 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747
## [17521] 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759
## [17533] 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771
## [17545] 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783
## [17557] 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795
## [17569] 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807
## [17581] 17808 17809 17810 17811 17812 17813 17815 17816 17817 17818 17819 17820
## [17593] 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832
## [17605] 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844
## [17617] 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856
## [17629] 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868
## [17641] 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880
## [17653] 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892
## [17665] 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904
## [17677] 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916
## [17689] 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928
## [17701] 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940
## [17713] 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952
## [17725] 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964
## [17737] 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976
## [17749] 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988
## [17761] 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000
## [17773] 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012
## [17785] 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024
## [17797] 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036
## [17809] 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048
## [17821] 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060
## [17833] 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072
## [17845] 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084
## [17857] 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096
## [17869] 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108
## [17881] 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120
## [17893] 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132
## [17905] 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144
## [17917] 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156
## [17929] 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168
## [17941] 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180
## [17953] 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192
## [17965] 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204
## [17977] 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216
## [17989] 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228
## [18001] 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240
## [18013] 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252
## [18025] 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264
## [18037] 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276
## [18049] 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288
## [18061] 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300
## [18073] 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312
## [18085] 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324
## [18097] 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336
## [18109] 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348
## [18121] 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360
## [18133] 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372
## [18145] 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384
## [18157] 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396
## [18169] 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408
## [18181] 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420
## [18193] 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432
## [18205] 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444
## [18217] 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18457
## [18229] 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469
## [18241] 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481
## [18253] 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493
## [18265] 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505
## [18277] 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517
## [18289] 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529
## [18301] 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541
## [18313] 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553
## [18325] 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565
## [18337] 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577
## [18349] 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589
## [18361] 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601
## [18373] 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613
## [18385] 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625
## [18397] 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637
## [18409] 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649
## [18421] 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661
## [18433] 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673
## [18445] 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685
## [18457] 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697
## [18469] 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709
## [18481] 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721
## [18493] 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733
## [18505] 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745
## [18517] 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757
## [18529] 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769
## [18541] 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781
## [18553] 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793
## [18565] 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805
## [18577] 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817
## [18589] 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829
## [18601] 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841
## [18613] 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853
## [18625] 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865
## [18637] 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877
## [18649] 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889
## [18661] 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901
## [18673] 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913
## [18685] 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925
## [18697] 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937
## [18709] 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949
## [18721] 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961
## [18733] 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973
## [18745] 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985
## [18757] 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997
## [18769] 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009
## [18781] 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021
## [18793] 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033
## [18805] 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045
## [18817] 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057
## [18829] 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069
## [18841] 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081
## [18853] 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093
## [18865] 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105
## [18877] 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117
## [18889] 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129
## [18901] 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141
## [18913] 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153
## [18925] 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165
## [18937] 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177
## [18949] 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189
## [18961] 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201
## [18973] 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213
## [18985] 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225
## [18997] 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237
## [19009] 19238 19239 19240 19241 19242 19243 19245 19246 19247 19248 19249 19250
## [19021] 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262
## [19033] 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274
## [19045] 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286
## [19057] 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298
## [19069] 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310
## [19081] 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322
## [19093] 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334
## [19105] 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346
## [19117] 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358
## [19129] 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370
## [19141] 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382
## [19153] 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394
## [19165] 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406
## [19177] 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418
## [19189] 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430
## [19201] 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442
## [19213] 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454
## [19225] 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466
## [19237] 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478
## [19249] 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490
## [19261] 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502
## [19273] 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514
## [19285] 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526
## [19297] 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538
## [19309] 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550
## [19321] 19551 19552 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563
## [19333] 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575
## [19345] 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587
## [19357] 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599
## [19369] 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611
## [19381] 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623
## [19393] 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635
## [19405] 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647
## [19417] 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659
## [19429] 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671
## [19441] 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683
## [19453] 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695
## [19465] 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707
## [19477] 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719
## [19489] 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731
## [19501] 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743
## [19513] 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755
## [19525] 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767
## [19537] 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780
## [19549] 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792
## [19561] 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804
## [19573] 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816
## [19585] 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828
## [19597] 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840
## [19609] 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852
## [19621] 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864
## [19633] 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876
## [19645] 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888
## [19657] 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900
## [19669] 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912
## [19681] 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924
## [19693] 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936
## [19705] 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948
## [19717] 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960
## [19729] 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972
## [19741] 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984
## [19753] 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996
## [19765] 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008
## [19777] 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020
## [19789] 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032
## [19801] 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044
## [19813] 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056
## [19825] 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068
## [19837] 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080
## [19849] 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092
## [19861] 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104
## [19873] 20105 20106 20107 20108 20109 20110 20112 20113 20114 20115 20116 20117
## [19885] 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129
## [19897] 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141
## [19909] 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153
## [19921] 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165
## [19933] 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177
## [19945] 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189
## [19957] 20190 20191 20192 20193 20194 20195 20196 20198 20199 20200 20201 20202
## [19969] 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214
## [19981] 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226
## [19993] 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238
## [20005] 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250
## [20017] 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262
## [20029] 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274
## [20041] 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286
## [20053] 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298
## [20065] 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310
## [20077] 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322
## [20089] 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334
## [20101] 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346
## [20113] 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358
## [20125] 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370
## [20137] 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382
## [20149] 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394
## [20161] 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406
## [20173] 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418
## [20185] 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430
## [20197] 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442
## [20209] 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454
## [20221] 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466
## [20233] 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478
## [20245] 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490
## [20257] 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502
## [20269] 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514
## [20281] 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526
## [20293] 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538
## [20305] 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550
## [20317] 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562
## [20329] 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574
## [20341] 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586
## [20353] 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598
## [20365] 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610
## [20377] 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622
## [20389] 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634
## [20401] 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646
## [20413] 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20659
## [20425] 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671
## [20437] 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683
## [20449] 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695
## [20461] 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707
## [20473] 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719
## [20485] 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731
## [20497] 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743
## [20509] 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755
## [20521] 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767
## [20533] 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779
## [20545] 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791
## [20557] 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803
## [20569] 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815
## [20581] 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827
## [20593] 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839
## [20605] 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20851 20852
## [20617] 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864
## [20629] 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876
## [20641] 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888
## [20653] 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900
## [20665] 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912
## [20677] 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924
## [20689] 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936
## [20701] 20937 20938 20939 20940 20941 20943 20944 20945 20946 20947 20948 20949
## [20713] 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961
## [20725] 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973
## [20737] 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985
## [20749] 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997
## [20761] 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009
## [20773] 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021
## [20785] 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033
## [20797] 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045
## [20809] 21046 21047 21048 21049 21051 21052 21053 21054 21055 21056 21057 21058
## [20821] 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070
## [20833] 21071 21072 21073 21074 21075 21076 21077 21078 21080 21081 21082 21083
## [20845] 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095
## [20857] 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107
## [20869] 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119
## [20881] 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131
## [20893] 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143
## [20905] 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155
## [20917] 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167
## [20929] 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179
## [20941] 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191
## [20953] 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203
## [20965] 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215
## [20977] 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227
## [20989] 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239
## [21001] 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251
## [21013] 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263
## [21025] 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275
## [21037] 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287
## [21049] 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299
## [21061] 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311
## [21073] 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323
## [21085] 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335
## [21097] 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347
## [21109] 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359
## [21121] 21360 21361 21362 21363 21364 21365 21366 21368 21369 21370 21371 21372
## [21133] 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384
## [21145] 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396
## [21157] 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408
## [21169] 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420
## [21181] 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432
## [21193] 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444
## [21205] 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456
## [21217] 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468
## [21229] 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480
## [21241] 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492
## [21253] 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504
## [21265] 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516
## [21277] 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528
## [21289] 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540
## [21301] 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552
## [21313] 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564
## [21325] 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576
## [21337] 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588
## [21349] 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600
## [21361] 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612
## [21373] 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624
## [21385] 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636
## [21397] 21637 21638 21639 21640 21641 21642 21643 21644 21645 21647 21648 21649
## [21409] 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661
## [21421] 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673
## [21433] 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685
## [21445] 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697
## [21457] 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709
## [21469] 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721
## [21481] 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733
## [21493] 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745
## [21505] 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757
## [21517] 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769
## [21529] 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781
## [21541] 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793
## [21553] 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805
## [21565] 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817
## [21577] 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829
## [21589] 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841
## [21601] 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853
## [21613] 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865
## [21625] 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877
## [21637] 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889
## [21649] 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901
## [21661] 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913
## [21673] 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925
## [21685] 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937
## [21697] 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949
## [21709] 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961
## [21721] 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973
## [21733] 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985
## [21745] 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997
## [21757] 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009
## [21769] 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021
## [21781] 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033
## [21793] 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045
## [21805] 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057
## [21817] 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069
## [21829] 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081
## [21841] 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093
## [21853] 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105
## [21865] 22106 22107 22108 22109 22110 22112 22113 22114 22115 22116 22117 22118
## [21877] 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130
## [21889] 22131 22132 22133 22134 22135 22136 22137 22138 22139 22141 22142 22143
## [21901] 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155
## [21913] 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167
## [21925] 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179
## [21937] 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191
## [21949] 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203
## [21961] 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215
## [21973] 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227
## [21985] 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239
## [21997] 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251
## [22009] 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263
## [22021] 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275
## [22033] 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287
## [22045] 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299
## [22057] 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311
## [22069] 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323
## [22081] 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335
## [22093] 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347
## [22105] 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359
## [22117] 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371
## [22129] 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383
## [22141] 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395
## [22153] 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407
## [22165] 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419
## [22177] 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22431 22432
## [22189] 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444
## [22201] 22445 22446 22447 22448 22449 22450 22451 22453 22454 22455 22456 22457
## [22213] 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469
## [22225] 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481
## [22237] 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493
## [22249] 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505
## [22261] 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517
## [22273] 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529
## [22285] 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541
## [22297] 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553
## [22309] 22554 22555 22556 22558 22559 22560 22561 22562 22563 22564 22565 22566
## [22321] 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578
## [22333] 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590
## [22345] 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602
## [22357] 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614
## [22369] 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626
## [22381] 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638
## [22393] 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650
## [22405] 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662
## [22417] 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674
## [22429] 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686
## [22441] 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698
## [22453] 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710
## [22465] 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722
## [22477] 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734
## [22489] 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746
## [22501] 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758
## [22513] 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770
## [22525] 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782
## [22537] 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794
## [22549] 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806
## [22561] 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818
## [22573] 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830
## [22585] 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842
## [22597] 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854
## [22609] 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866
## [22621] 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878
## [22633] 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890
## [22645] 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902
## [22657] 22903 22904 22905 22906 22907 22908 22909 22910 22912 22913 22914 22915
## [22669] 22916 22917 22918 22919 22920 22921 22923 22924 22925 22926 22928 22929
## [22681] 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941
## [22693] 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953
## [22705] 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965
## [22717] 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977
## [22729] 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989
## [22741] 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001
## [22753] 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013
## [22765] 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025
## [22777] 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037
## [22789] 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049
## [22801] 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062
## [22813] 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074
## [22825] 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086
## [22837] 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098
## [22849] 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110
## [22861] 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122
## [22873] 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134
## [22885] 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146
## [22897] 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158
## [22909] 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170
## [22921] 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182
## [22933] 23183 23184 23185 23186 23187 23188 23189 23191 23192 23193 23194 23195
## [22945] 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207
## [22957] 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219
## [22969] 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231
## [22981] 23232 23233 23235 23236 23237 23238 23239 23241 23242 23243 23244 23245
## [22993] 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257
## [23005] 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269
## [23017] 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281
## [23029] 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293
## [23041] 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305
## [23053] 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317
## [23065] 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329
## [23077] 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341
## [23089] 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353
## [23101] 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365
## [23113] 23366 23367 23368 23371 23372 23373 23374 23375 23376 23377 23378 23379
## [23125] 23380 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392
## [23137] 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404
## [23149] 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416
## [23161] 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428
## [23173] 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440
## [23185] 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452
## [23197] 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464
## [23209] 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476
## [23221] 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488
## [23233] 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500
## [23245] 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512
## [23257] 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524
## [23269] 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536
## [23281] 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548
## [23293] 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560
## [23305] 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572
## [23317] 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584
## [23329] 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596
## [23341] 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608
## [23353] 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620
## [23365] 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632
## [23377] 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644
## [23389] 23645 23646 23647 23648 23649 23650 23651 23653 23654 23655 23656 23657
## [23401] 23658 23659 23660 23662 23663 23664 23665 23666 23667 23668 23669 23670
## [23413] 23671 23672 23673 23674 23675 23676 23677 23678 23680 23681 23682 23683
## [23425] 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695
## [23437] 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707
## [23449] 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719
## [23461] 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23732 23733
## [23473] 23734 23735 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746
## [23485] 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23759
## [23497] 23760 23761 23762 23763 23764 23766 23768 23769 23771 23772 23773 23774
## [23509] 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786
## [23521] 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798
## [23533] 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810
## [23545] 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822
## [23557] 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834
## [23569] 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846
## [23581] 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858
## [23593] 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870
## [23605] 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882
## [23617] 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894
## [23629] 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906
## [23641] 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918
## [23653] 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930
## [23665] 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942
## [23677] 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954
## [23689] 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966
## [23701] 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978
## [23713] 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990
## [23725] 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002
## [23737] 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014
## [23749] 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026
## [23761] 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038
## [23773] 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050
## [23785] 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062
## [23797] 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074
## [23809] 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086
## [23821] 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099
## [23833] 24100 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112
## [23845] 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124
## [23857] 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136
## [23869] 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148
## [23881] 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160
## [23893] 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172
## [23905] 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184
## [23917] 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196
## [23929] 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208
## [23941] 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220
## [23953] 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232
## [23965] 24233 24234 24235 24236 24237 24238 24239 24241 24242 24243 24244 24245
## [23977] 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257
## [23989] 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269
## [24001] 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281
## [24013] 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293
## [24025] 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305
## [24037] 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317
## [24049] 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329
## [24061] 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341
## [24073] 24342 24343 24344 24346 24347 24348 24349 24350 24351 24352 24353 24354
## [24085] 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366
## [24097] 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378
## [24109] 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390
## [24121] 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402
## [24133] 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414
## [24145] 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426
## [24157] 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438
## [24169] 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450
## [24181] 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462
## [24193] 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474
## [24205] 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486
## [24217] 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498
## [24229] 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510
## [24241] 24511 24512 24513 24514 24516 24517 24518 24519 24520 24521 24522 24523
## [24253] 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535
## [24265] 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547
## [24277] 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559
## [24289] 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571
## [24301] 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24584
## [24313] 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596
## [24325] 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608
## [24337] 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620
## [24349] 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632
## [24361] 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644
## [24373] 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656
## [24385] 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668
## [24397] 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680
## [24409] 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692
## [24421] 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704
## [24433] 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716
## [24445] 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728
## [24457] 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740
## [24469] 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752
## [24481] 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24765
## [24493] 24766 24767 24768 24769 24770 24771 24772 24773 24774 24776 24777 24778
## [24505] 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790
## [24517] 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24802 24803
## [24529] 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815
## [24541] 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827
## [24553] 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839
## [24565] 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851
## [24577] 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863
## [24589] 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875
## [24601] 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887
## [24613] 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899
## [24625] 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911
## [24637] 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923
## [24649] 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935
## [24661] 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947
## [24673] 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959
## [24685] 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971
## [24697] 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983
## [24709] 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995
## [24721] 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007
## [24733] 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019
## [24745] 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031
## [24757] 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043
## [24769] 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055
## [24781] 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067
## [24793] 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079
## [24805] 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091
## [24817] 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103
## [24829] 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115
## [24841] 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127
## [24853] 25128 25129 25130 25132 25133 25134 25135 25136 25137 25138 25139 25140
## [24865] 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152
## [24877] 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164
## [24889] 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176
## [24901] 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188
## [24913] 25189 25190 25191 25192 25194 25195 25196 25197 25198 25199 25200 25201
## [24925] 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213
## [24937] 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225
## [24949] 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237
## [24961] 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249
## [24973] 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261
## [24985] 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273
## [24997] 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285
## [25009] 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297
## [25021] 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309
## [25033] 25310 25311 25312 25313 25314 25315 25316 25317 25319 25320 25321 25323
## [25045] 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335
## [25057] 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347
## [25069] 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359
## [25081] 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371
## [25093] 25372 25373 25374 25375 25376 25377 25379 25380 25381 25382 25383 25384
## [25105] 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396
## [25117] 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408
## [25129] 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420
## [25141] 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432
## [25153] 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444
## [25165] 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456
## [25177] 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469
## [25189] 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481
## [25201] 25482 25483 25484 25485 25487 25488 25489 25490 25491 25492 25493 25494
## [25213] 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506
## [25225] 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518
## [25237] 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530
## [25249] 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542
## [25261] 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554
## [25273] 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566
## [25285] 25567 25568 25569 25570 25571 25572 25573 25574 25575 25577 25578 25579
## [25297] 25580 25581 25582 25583 25584 25585 25587 25588 25590 25591 25592 25593
## [25309] 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605
## [25321] 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617
## [25333] 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629
## [25345] 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641
## [25357] 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653
## [25369] 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665
## [25381] 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677
## [25393] 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689
## [25405] 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701
## [25417] 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713
## [25429] 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725
## [25441] 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737
## [25453] 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749
## [25465] 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761
## [25477] 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773
## [25489] 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785
## [25501] 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797
## [25513] 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809
## [25525] 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821
## [25537] 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833
## [25549] 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845
## [25561] 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857
## [25573] 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869
## [25585] 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881
## [25597] 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893
## [25609] 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905
## [25621] 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917
## [25633] 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929
## [25645] 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941
## [25657] 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953
## [25669] 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965
## [25681] 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977
## [25693] 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989
## [25705] 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001
## [25717] 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013
## [25729] 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025
## [25741] 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037
## [25753] 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049
## [25765] 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061
## [25777] 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073
## [25789] 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085
## [25801] 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097
## [25813] 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109
## [25825] 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121
## [25837] 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133
## [25849] 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145
## [25861] 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157
## [25873] 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169
## [25885] 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181
## [25897] 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193
## [25909] 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205
## [25921] 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217
## [25933] 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229
## [25945] 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241
## [25957] 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253
## [25969] 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265
## [25981] 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277
## [25993] 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289
## [26005] 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301
## [26017] 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313
## [26029] 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325
## [26041] 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337
## [26053] 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349
## [26065] 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361
## [26077] 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373
## [26089] 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385
## [26101] 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397
## [26113] 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409
## [26125] 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421
## [26137] 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433
## [26149] 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445
## [26161] 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457
## [26173] 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469
## [26185] 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481
## [26197] 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493
## [26209] 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505
## [26221] 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517
## [26233] 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529
## [26245] 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541
## [26257] 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553
## [26269] 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565
## [26281] 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577
## [26293] 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589
## [26305] 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601
## [26317] 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613
## [26329] 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625
## [26341] 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637
## [26353] 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649
## [26365] 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661
## [26377] 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673
## [26389] 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685
## [26401] 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697
## [26413] 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709
## [26425] 26710 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722
## [26437] 26723 26724 26725 26726 26727 26728 26729 26730 26731 26733 26734 26735
## [26449] 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747
## [26461] 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759
## [26473] 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771
## [26485] 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783
## [26497] 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795
## [26509] 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807
## [26521] 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819
## [26533] 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831
## [26545] 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843
## [26557] 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855
## [26569] 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867
## [26581] 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879
## [26593] 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891
## [26605] 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903
## [26617] 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915
## [26629] 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927
## [26641] 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939
## [26653] 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951
## [26665] 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963
## [26677] 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975
## [26689] 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987
## [26701] 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999
## [26713] 27000 27001 27002 27004 27005 27006 27007 27008 27009 27010 27011 27012
## [26725] 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024
## [26737] 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036
## [26749] 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048
## [26761] 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060
## [26773] 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072
## [26785] 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084
## [26797] 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096
## [26809] 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108
## [26821] 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120
## [26833] 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132
## [26845] 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144
## [26857] 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156
## [26869] 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168
## [26881] 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180
## [26893] 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192
## [26905] 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204
## [26917] 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216
## [26929] 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228
## [26941] 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240
## [26953] 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252
## [26965] 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264
## [26977] 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276
## [26989] 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288
## [27001] 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300
## [27013] 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312
## [27025] 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324
## [27037] 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336
## [27049] 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348
## [27061] 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360
## [27073] 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372
## [27085] 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384
## [27097] 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396
## [27109] 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408
## [27121] 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420
## [27133] 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432
## [27145] 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444
## [27157] 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456
## [27169] 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468
## [27181] 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480
## [27193] 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492
## [27205] 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504
## [27217] 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516
## [27229] 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528
## [27241] 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540
## [27253] 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552
## [27265] 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564
## [27277] 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576
## [27289] 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588
## [27301] 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600
## [27313] 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612
## [27325] 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624
## [27337] 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636
## [27349] 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648
## [27361] 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660
## [27373] 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672
## [27385] 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684
## [27397] 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696
## [27409] 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708
## [27421] 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720
## [27433] 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732
## [27445] 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744
## [27457] 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756
## [27469] 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768
## [27481] 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780
## [27493] 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792
## [27505] 27793 27794 27795 27797 27798 27799 27800 27801 27802 27803 27804 27805
## [27517] 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817
## [27529] 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829
## [27541] 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841
## [27553] 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853
## [27565] 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865
## [27577] 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877
## [27589] 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889
## [27601] 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901
## [27613] 27902 27903 27904 27905 27906 27907 27908 27909 27910 27912 27913 27914
## [27625] 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926
## [27637] 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938
## [27649] 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950
## [27661] 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962
## [27673] 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974
## [27685] 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986
## [27697] 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998
## [27709] 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010
## [27721] 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022
## [27733] 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034
## [27745] 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046
## [27757] 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058
## [27769] 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070
## [27781] 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082
## [27793] 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094
## [27805] 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106
## [27817] 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118
## [27829] 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130
## [27841] 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142
## [27853] 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154
## [27865] 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166
## [27877] 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178
## [27889] 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190
## [27901] 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202
## [27913] 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214
## [27925] 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226
## [27937] 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238
## [27949] 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250
## [27961] 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262
## [27973] 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274
## [27985] 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286
## [27997] 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298
## [28009] 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310
## [28021] 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322
## [28033] 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334
## [28045] 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346
## [28057] 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358
## [28069] 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370
## [28081] 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382
## [28093] 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394
## [28105] 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406
## [28117] 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418
## [28129] 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430
## [28141] 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442
## [28153] 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454
## [28165] 28455 28456 28457 28458 28459 28460 28461 28462 28464 28465 28466 28467
## [28177] 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479
## [28189] 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491
## [28201] 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503
## [28213] 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515
## [28225] 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527
## [28237] 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539
## [28249] 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551
## [28261] 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563
## [28273] 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575
## [28285] 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587
## [28297] 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599
## [28309] 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611
## [28321] 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623
## [28333] 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635
## [28345] 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647
## [28357] 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659
## [28369] 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671
## [28381] 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683
## [28393] 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695
## [28405] 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707
## [28417] 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719
## [28429] 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731
## [28441] 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743
## [28453] 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755
## [28465] 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767
## [28477] 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779
## [28489] 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791
## [28501] 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803
## [28513] 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815
## [28525] 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827
## [28537] 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839
## [28549] 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851
## [28561] 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863
## [28573] 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875
## [28585] 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887
## [28597] 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899
## [28609] 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911
## [28621] 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923
## [28633] 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935
## [28645] 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947
## [28657] 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959
## [28669] 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971
## [28681] 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983
## [28693] 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995
## [28705] 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007
## [28717] 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019
## [28729] 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031
## [28741] 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043
## [28753] 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055
## [28765] 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067
## [28777] 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079
## [28789] 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091
## [28801] 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103
## [28813] 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115
## [28825] 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127
## [28837] 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139
## [28849] 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151
## [28861] 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163
## [28873] 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175
## [28885] 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187
## [28897] 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199
## [28909] 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211
## [28921] 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223
## [28933] 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235
## [28945] 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247
## [28957] 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259
## [28969] 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271
## [28981] 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283
## [28993] 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295
## [29005] 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307
## [29017] 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319
## [29029] 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331
## [29041] 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343
## [29053] 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355
## [29065] 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367
## [29077] 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379
## [29089] 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391
## [29101] 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403
## [29113] 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415
## [29125] 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427
## [29137] 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439
## [29149] 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451
## [29161] 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463
## [29173] 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475
## [29185] 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487
## [29197] 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499
## [29209] 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511
## [29221] 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523
## [29233] 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535
## [29245] 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547
## [29257] 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559
## [29269] 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571
## [29281] 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583
## [29293] 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595
## [29305] 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607
## [29317] 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619
## [29329] 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631
## [29341] 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643
## [29353] 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655
## [29365] 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667
## [29377] 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679
## [29389] 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691
## [29401] 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703
## [29413] 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715
## [29425] 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727
## [29437] 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739
## [29449] 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751
## [29461] 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763
## [29473] 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775
## [29485] 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787
## [29497] 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799
## [29509] 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811
## [29521] 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823
## [29533] 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835
## [29545] 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847
## [29557] 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859
## [29569] 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871
## [29581] 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883
## [29593] 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895
## [29605] 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907
## [29617] 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919
## [29629] 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931
## [29641] 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943
## [29653] 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955
## [29665] 29956 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968
## [29677] 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980
## [29689] 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992
## [29701] 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004
## [29713] 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016
## [29725] 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028
## [29737] 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040
## [29749] 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052
## [29761] 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064
## [29773] 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076
## [29785] 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088
## [29797] 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100
## [29809] 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112
## [29821] 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124
## [29833] 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136
## [29845] 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148
## [29857] 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160
## [29869] 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172
## [29881] 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184
## [29893] 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196
## [29905] 30197 30198 30199 30200 30202 30203 30204 30205 30206 30207 30208 30209
## [29917] 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221
## [29929] 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233
## [29941] 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245
## [29953] 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257
## [29965] 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269
## [29977] 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281
## [29989] 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293
## [30001] 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305
## [30013] 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317
## [30025] 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329
## [30037] 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341
## [30049] 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353
## [30061] 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366
## [30073] 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378
## [30085] 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390
## [30097] 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402
## [30109] 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414
## [30121] 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426
## [30133] 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438
## [30145] 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450
## [30157] 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462
## [30169] 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474
## [30181] 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486
## [30193] 30487 30488 30490 30491 30492 30493 30494 30495 30496 30498 30499 30500
## [30205] 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512
## [30217] 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524
## [30229] 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536
## [30241] 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548
## [30253] 30549 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561
## [30265] 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573
## [30277] 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585
## [30289] 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597
## [30301] 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609
## [30313] 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621
## [30325] 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633
## [30337] 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645
## [30349] 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657
## [30361] 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669
## [30373] 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681
## [30385] 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693
## [30397] 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705
## [30409] 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717
## [30421] 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729
## [30433] 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741
## [30445] 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753
## [30457] 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765
## [30469] 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777
## [30481] 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789
## [30493] 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801
## [30505] 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813
## [30517] 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825
## [30529] 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837
## [30541] 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849
## [30553] 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861
## [30565] 30862 30863 30864 30865 30866 30868 30869 30870 30871 30872 30873 30874
## [30577] 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886
## [30589] 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898
## [30601] 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910
## [30613] 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922
## [30625] 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934
## [30637] 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946
## [30649] 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958
## [30661] 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970
## [30673] 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982
## [30685] 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994
## [30697] 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006
## [30709] 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018
## [30721] 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030
## [30733] 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042
## [30745] 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054
## [30757] 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066
## [30769] 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078
## [30781] 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090
## [30793] 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102
## [30805] 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114
## [30817] 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126
## [30829] 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138
## [30841] 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150
## [30853] 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162
## [30865] 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174
## [30877] 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186
## [30889] 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198
## [30901] 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210
## [30913] 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222
## [30925] 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234
## [30937] 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246
## [30949] 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258
## [30961] 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270
## [30973] 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282
## [30985] 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294
## [30997] 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306
## [31009] 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318
## [31021] 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330
## [31033] 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342
## [31045] 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354
## [31057] 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366
## [31069] 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378
## [31081] 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390
## [31093] 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402
## [31105] 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414
## [31117] 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426
## [31129] 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438
## [31141] 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450
## [31153] 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462
## [31165] 31463 31464 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475
## [31177] 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487
## [31189] 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499
## [31201] 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511
## [31213] 31512 31513 31514 31516 31517 31518 31519 31520 31521 31522 31523 31524
## [31225] 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536
## [31237] 31537 31538 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549
## [31249] 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561
## [31261] 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573
## [31273] 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585
## [31285] 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597
## [31297] 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609
## [31309] 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621
## [31321] 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633
## [31333] 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645
## [31345] 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657
## [31357] 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669
## [31369] 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681
## [31381] 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693
## [31393] 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705
## [31405] 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717
## [31417] 31718 31719 31720 31721 31722 31723 31724 31726 31727 31728 31729 31730
## [31429] 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742
## [31441] 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754
## [31453] 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766
## [31465] 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778
## [31477] 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790
## [31489] 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802
## [31501] 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814
## [31513] 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826
## [31525] 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838
## [31537] 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850
## [31549] 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862
## [31561] 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874
## [31573] 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886
## [31585] 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898
## [31597] 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910
## [31609] 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922
## [31621] 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934
## [31633] 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946
## [31645] 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958
## [31657] 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970
## [31669] 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982
## [31681] 31983 31984 31985 31986 31988 31989 31990 31991 31992 31993 31994 31995
## [31693] 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007
## [31705] 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019
## [31717] 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031
## [31729] 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043
## [31741] 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055
## [31753] 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067
## [31765] 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079
## [31777] 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091
## [31789] 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103
## [31801] 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115
## [31813] 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127
## [31825] 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139
## [31837] 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151
## [31849] 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163
## [31861] 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175
## [31873] 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187
## [31885] 32188 32189 32190 32191 32192 32193 32194 32195 32197 32198 32199 32200
## [31897] 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212
## [31909] 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224
## [31921] 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236
## [31933] 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248
## [31945] 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260
## [31957] 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272
## [31969] 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284
## [31981] 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296
## [31993] 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308
## [32005] 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320
## [32017] 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332
## [32029] 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344
## [32041] 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356
## [32053] 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368
## [32065] 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380
## [32077] 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392
## [32089] 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404
## [32101] 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416
## [32113] 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428
## [32125] 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440
## [32137] 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452
## [32149] 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464
## [32161] 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476
## [32173] 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488
## [32185] 32489 32490 32491 32492 32493 32494 32495 32496 32497 32498 32499 32500
## [32197] 32501 32502 32503 32504 32505 32506 32507 32508 32509 32510 32511 32512
## [32209] 32513 32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524
## [32221] 32525 32526 32528 32529 32530 32531 32532 32533 32534 32535 32536 32537
## [32233] 32538 32539 32540 32541 32542 32543 32544 32545 32546 32547 32548 32549
## [32245] 32550 32551 32552 32553 32554 32555 32556 32557 32558 32559 32560 32561
## [32257] 32562 32563 32564 32565 32566 32567 32568 32569 32570 32571 32572 32573
## [32269] 32574 32575 32576 32577 32578 32579 32580 32581 32582 32583 32584 32585
## [32281] 32586 32587 32588 32589 32590 32591 32592 32593 32594 32595 32596 32597
## [32293] 32598 32599 32600 32601 32602 32603 32604 32605 32606 32607 32608 32609
## [32305] 32610 32611 32612 32613 32614 32615 32616 32617 32618 32619 32620 32621
## [32317] 32622 32623 32624 32625 32626 32627 32628 32629 32630 32631 32632 32633
## [32329] 32634 32635 32636 32637 32638 32639 32640 32641 32642 32643 32644 32645
## [32341] 32646 32647 32648 32649 32650 32651 32652 32653 32654 32655 32656 32657
## [32353] 32658 32659 32660 32661 32662 32663 32664 32665 32666 32667 32668 32669
## [32365] 32670 32671 32672 32673 32674 32675 32676 32677 32678 32679 32680 32681
## [32377] 32682 32683 32684 32685 32686 32687 32688 32689 32690 32691 32692 32693
## [32389] 32694 32695 32696 32697 32698 32699 32700 32701 32702 32703 32704 32705
## [32401] 32706 32707 32708 32709 32710 32711 32712 32713 32714 32715 32716 32717
## [32413] 32718 32719 32720 32721 32722 32723 32724 32725 32726 32727 32728 32729
## [32425] 32730 32731 32732 32733 32734 32735 32736 32737 32738 32739 32740 32741
## [32437] 32742 32743 32744 32745 32746 32747 32748 32749 32750 32751 32752 32753
## [32449] 32754 32755 32756 32757 32758 32759 32760 32761 32762 32763 32764 32765
## [32461] 32766 32767 32768 32769 32770 32771 32772 32773 32774 32775 32776 32777
## [32473] 32778 32779 32780 32781 32782 32783 32784 32785 32786 32787 32788 32789
## [32485] 32790 32791 32792 32793 32794 32795 32796 32797 32798 32799 32800 32801
## [32497] 32802 32803 32804 32805 32806 32807 32808 32809 32810 32811 32812 32813
## [32509] 32814 32815 32816 32817 32818 32819 32820 32821 32822 32823 32824 32825
## [32521] 32826 32827 32828 32829 32830 32831 32832 32833 32834 32835 32836 32837
## [32533] 32838 32839 32840 32841 32842 32843 32844 32845 32846 32847 32848 32849
## [32545] 32850 32851 32852 32853 32854 32855 32856 32857 32858 32859 32860 32861
## [32557] 32862 32863 32864 32865 32866 32867 32868 32869 32870 32871 32872 32873
## [32569] 32874 32875 32876 32877 32878 32879 32880 32881 32882 32883 32884 32885
## [32581] 32886 32887 32888 32889 32890 32891 32892 32893 32894 32895 32896 32897
## [32593] 32898 32899 32900 32901 32902 32903 32904 32905 32906 32907 32908 32909
## [32605] 32910 32911 32912 32913 32914 32915 32916 32917 32918 32919 32920 32921
## [32617] 32922 32923 32924 32925 32926 32927 32928 32929 32930 32931 32932 32933
## [32629] 32934 32935 32936 32937 32938 32939 32940 32941 32942 32943 32944 32945
## [32641] 32947 32948 32949 32950 32951 32952 32953 32954 32955 32956 32957 32958
## [32653] 32959 32960 32961 32962 32963 32964 32965 32966 32967 32968 32969 32970
## [32665] 32971 32972 32973 32974 32975 32976 32977 32978 32979 32980 32981 32982
## [32677] 32983 32984 32985 32986 32987 32988 32989 32990 32991 32992 32993 32994
## [32689] 32995 32996 32997 32998 32999 33000 33001 33002 33003 33004 33005 33006
## [32701] 33007 33008 33009 33010 33011 33012 33013 33014 33015 33016 33017 33018
## [32713] 33019 33020 33021 33022 33023 33024 33025 33026 33027 33028 33029 33030
## [32725] 33031 33032 33033 33034 33035 33036 33037 33038 33039 33040 33041 33042
## [32737] 33043 33044 33045 33046 33047 33048 33049 33050 33051 33052 33053 33054
## [32749] 33055 33056 33057 33058 33059 33060 33061 33062 33063 33064 33065 33066
## [32761] 33067 33068 33069 33070 33071 33072 33073 33074 33075 33076 33077 33078
## [32773] 33079 33080 33081 33082 33083 33084 33085 33086 33087 33088 33089 33090
## [32785] 33091 33092 33093 33094 33095 33096 33097 33098 33099 33100 33101 33102
## [32797] 33103 33104 33105 33106 33107 33108 33109 33110 33111 33112 33114 33115
## [32809] 33116 33117 33118 33119 33120 33121 33122 33123 33124 33125 33126 33127
## [32821] 33128 33129 33130 33131 33132 33133 33134 33135 33136 33137 33138 33139
## [32833] 33140 33141 33142 33143 33144 33145 33146 33147 33148 33149 33150 33151
## [32845] 33152 33153 33154 33155 33156 33157 33158 33159 33160 33161 33162 33163
## [32857] 33164 33165 33166 33167 33168 33169 33170 33171 33172 33173 33174 33175
## [32869] 33176 33177 33178 33179 33180 33181 33182 33183 33184 33185 33186 33187
## [32881] 33188 33189 33190 33191 33192 33193 33194 33195 33196 33197 33198 33200
## [32893] 33201 33202 33203 33204 33205 33206 33207 33208 33209 33210 33211 33212
## [32905] 33213 33214 33215 33216 33217 33218 33219 33220 33221 33222 33223 33224
## [32917] 33225 33226 33227 33228 33229 33230 33231 33232 33233 33234 33235 33236
## [32929] 33237 33238 33239 33240 33241 33242 33243 33244 33245 33246 33247 33248
## [32941] 33249 33250 33251 33252 33253 33254 33255 33256 33257 33258 33259 33260
## [32953] 33261 33262 33263 33264 33265 33266 33267 33268 33269 33270 33271 33272
## [32965] 33273 33274 33275 33276 33277 33278 33279 33280 33281 33282 33283 33284
## [32977] 33285 33286 33287 33288 33289 33290 33291 33292 33293 33294 33295 33296
## [32989] 33297 33298 33299 33300 33301 33302 33303 33304 33305 33306 33307 33308
## [33001] 33309 33310 33311 33312 33313 33314 33315 33316 33317 33318 33319 33320
## [33013] 33321 33322 33323 33324 33325 33326 33327 33328 33329 33330 33331 33332
## [33025] 33333 33334 33335 33336 33337 33338 33339 33340 33341 33342 33343 33344
## [33037] 33345 33346 33347 33348 33349 33350 33351 33352 33353 33354 33355 33356
## [33049] 33357 33358 33359 33360 33362 33363 33364 33365 33366 33367 33368 33369
## [33061] 33370 33371 33372 33373 33374 33375 33376 33377 33378 33379 33380 33381
## [33073] 33382 33383 33384 33385 33386 33387 33388 33389 33390 33391 33393 33394
## [33085] 33395 33396 33397 33398 33399 33400 33401 33402 33403 33404 33405 33406
## [33097] 33407 33408 33409 33410 33411 33412 33413 33414 33415 33416 33417 33418
## [33109] 33419 33420 33421 33422 33423 33424 33425 33426 33427 33428 33429 33430
## [33121] 33431 33432 33433 33434 33435 33436 33437 33438 33439 33440 33441 33442
## [33133] 33443 33444 33445 33446 33447 33448 33449 33450 33451 33452 33453 33454
## [33145] 33455 33456 33457 33458 33459 33460 33461 33462 33463 33464 33465 33466
## [33157] 33467 33468 33469 33470 33471 33472 33473 33474 33475 33476 33477 33478
## [33169] 33479 33480 33481 33482 33483 33484 33485 33486 33487 33488 33489 33490
## [33181] 33491 33492 33493 33494 33495 33496 33497 33498 33499 33500 33501 33502
## [33193] 33503 33504 33505 33506 33507 33508 33509 33510 33512 33513 33514 33515
## [33205] 33516 33517 33518 33519 33520 33521 33522 33523 33524 33525 33526 33527
## [33217] 33528 33529 33530 33531 33532 33533 33534 33535 33536 33537 33538 33539
## [33229] 33540 33541 33542 33543 33544 33545 33546 33547 33548 33549 33550 33551
## [33241] 33552 33553 33554 33555 33556 33557 33558 33559 33560 33561 33562 33563
## [33253] 33564 33565 33566 33567 33568 33569 33570 33571 33572 33573 33574 33575
## [33265] 33576 33577 33578 33579 33580 33581 33582 33583 33584 33585 33586 33587
## [33277] 33588 33589 33590 33591 33592 33593 33594 33595 33596 33597 33598 33599
## [33289] 33600 33601 33602 33603 33604 33605 33606 33607 33608 33609 33610 33611
## [33301] 33612 33613 33614 33615 33616 33617 33618 33619 33620 33621 33622 33623
## [33313] 33624 33625 33626 33627 33628 33629 33630 33631 33632 33633 33634 33635
## [33325] 33636 33637 33638 33639 33640 33641 33642 33643 33644 33645 33646 33647
## [33337] 33648 33649 33650 33651 33652 33653 33654 33655 33656 33657 33658 33659
## [33349] 33660 33661 33662 33663 33664 33665 33666 33667 33668 33669 33670 33671
## [33361] 33672 33673 33674 33675 33676 33677 33678 33679 33680 33681 33682 33683
## [33373] 33684 33685 33686 33687 33688 33689 33690 33691 33692 33693 33694 33695
## [33385] 33696 33697 33698 33699 33700 33701 33702 33703 33704 33705 33706 33707
## [33397] 33708 33709 33710 33711 33712 33713 33714 33715 33716 33717 33718 33719
## [33409] 33720 33721 33722 33723 33724 33725 33726 33727 33728 33729 33730 33731
## [33421] 33732 33733 33734 33735 33736 33737 33738 33739 33740 33741 33742 33743
## [33433] 33744 33745 33746 33747 33748 33749 33750 33751 33752 33753 33754 33755
## [33445] 33756 33757 33759 33760 33761 33762 33763 33764 33765 33766 33767 33768
## [33457] 33769 33770 33771 33772 33773 33774 33775 33776 33777 33778 33779 33780
## [33469] 33781 33782 33783 33784 33785 33786 33787 33788 33789 33790 33791 33792
## [33481] 33793 33794 33795 33796 33797 33798 33799 33800 33801 33802 33803 33804
## [33493] 33805 33806 33807 33808 33809 33810 33811 33812 33813 33814 33815 33816
## [33505] 33817 33818 33819 33820 33821 33822 33823 33824 33825 33826 33827 33828
## [33517] 33829 33830 33831 33832 33833 33834 33835 33836 33837 33838 33839 33840
## [33529] 33841 33842 33843 33844 33845 33846 33847 33848 33849 33850 33851 33852
## [33541] 33854 33855 33856 33857 33858 33859 33860 33861 33862 33863 33864 33865
## [33553] 33866 33867 33868 33869 33870 33871 33872 33873 33874 33875 33876 33877
## [33565] 33878 33879 33880 33881 33882 33883 33884 33885 33886 33887 33888 33889
## [33577] 33890 33891 33892 33893 33894 33895 33896 33897 33898 33899 33900 33901
## [33589] 33902 33903 33904 33905 33906 33907 33908 33909 33910 33911 33912 33913
## [33601] 33914 33915 33916 33917 33918 33919 33920 33921 33922 33923 33924 33925
## [33613] 33926 33927 33928 33929 33930 33931 33932 33933 33934 33935 33936 33937
## [33625] 33938 33939 33940 33941 33942 33943 33944 33945 33946 33947 33948 33949
## [33637] 33950 33951 33952 33953 33954 33955 33956 33957 33958 33959 33960 33961
## [33649] 33962 33963 33964 33965 33966 33967 33968 33969 33970 33971 33972 33973
## [33661] 33974 33975 33976 33977 33978 33979 33980 33981 33982 33983 33984 33985
## [33673] 33986 33987 33988 33989 33990 33991 33992 33993 33994 33995 33996 33997
## [33685] 33998 33999 34000 34001 34002 34003 34004 34005 34006 34007 34008 34009
## [33697] 34010 34011 34012 34013 34014 34015 34016 34017 34018 34019 34020 34021
## [33709] 34022 34023 34024 34025 34026 34027 34028 34029 34030 34031 34032 34033
## [33721] 34034 34035 34036 34037 34038 34039 34040 34041 34042 34043 34044 34045
## [33733] 34046 34047 34048 34049 34050 34051 34052 34053 34054 34055 34056 34057
## [33745] 34058 34059 34060 34061 34062 34063 34064 34065 34066 34067 34068 34069
## [33757] 34070 34071 34072 34073 34074 34075 34076 34077 34078 34079 34080 34081
## [33769] 34082 34083 34084 34085 34086 34087 34088 34089 34090 34091 34092 34093
## [33781] 34094 34095 34096 34097 34098 34099 34100 34101 34102 34103 34104 34105
## [33793] 34106 34107 34108 34109 34110 34111 34112 34113 34114 34115 34116 34117
## [33805] 34118 34119 34120 34121 34122 34123 34124 34125 34126 34127 34128 34129
## [33817] 34130 34131 34132 34133 34134 34135 34136 34137 34138 34139 34140 34141
## [33829] 34142 34143 34144 34145 34146 34147 34148 34149 34150 34151 34152 34153
## [33841] 34154 34155 34156 34157 34158 34159 34160 34161 34162 34163 34164 34165
## [33853] 34166 34167 34168 34169 34170 34171 34172 34173 34174 34175 34176 34177
## [33865] 34178 34179 34180 34181 34182 34183 34184 34185 34186 34187 34188 34189
## [33877] 34190 34191 34192 34193 34194 34195 34196 34197 34198 34199 34200 34201
## [33889] 34202 34203 34204 34205 34206 34207 34208 34209 34210 34211 34212 34213
## [33901] 34214 34215 34216 34217 34218 34219 34220 34221 34222 34223 34224 34225
## [33913] 34226 34227 34228 34229 34230 34231 34232 34233 34234 34235 34236 34237
## [33925] 34238 34239 34240 34241 34242 34243 34244 34245 34246 34247 34248 34249
## [33937] 34250 34251 34252 34253 34254 34255 34256 34257 34258 34259 34260 34261
## [33949] 34262 34263 34264 34265 34266 34267 34268 34269 34270 34271 34272 34273
## [33961] 34274 34275 34276 34277 34278 34279 34280 34281 34282 34283 34284 34285
## [33973] 34286 34287 34288 34289 34290 34291 34292 34293 34294 34295 34296 34297
## [33985] 34298 34299 34300 34301 34302 34303 34304 34305 34306 34307 34308 34309
## [33997] 34310 34311 34312 34313 34314 34315 34316 34317 34318 34319 34320 34321
## [34009] 34322 34323 34324 34325 34326 34327 34328 34329 34330 34331 34332 34333
## [34021] 34334 34335 34336 34337 34338 34339 34340 34341 34342 34343 34344 34345
## [34033] 34346 34347 34348 34349 34350 34351 34352 34353 34354 34355 34356 34357
## [34045] 34358 34359 34360 34361 34362 34363 34364 34365 34366 34367 34369 34370
## [34057] 34371 34372 34373 34374 34375 34376 34377 34378 34379 34380 34381 34382
## [34069] 34383 34384 34385 34386 34387 34388 34389 34390 34391 34392 34393 34394
## [34081] 34395 34396 34397 34398 34399 34400 34401 34402 34403 34404 34405 34406
## [34093] 34407 34408 34409 34410 34411 34412 34413 34414 34415 34416 34417 34418
## [34105] 34419 34420 34421 34422 34423 34424 34425 34426 34427 34428 34429 34430
## [34117] 34431 34432 34433 34434 34435 34436 34437 34438 34439 34440 34441 34442
## [34129] 34443 34444 34445 34446 34447 34448 34449 34450 34451 34452 34453 34454
## [34141] 34455 34456 34457 34458 34459 34460 34461 34462 34463 34464 34465 34466
## [34153] 34467 34468 34469 34470 34471 34472 34473 34474 34475 34476 34477 34478
## [34165] 34479 34480 34481 34482 34483 34484 34485 34486 34487 34488 34489 34491
## [34177] 34492 34493 34494 34495 34496 34497 34498 34499 34500 34501 34502 34503
## [34189] 34504 34505 34506 34507 34508 34509 34510 34511 34512 34513 34514 34515
## [34201] 34516 34517 34518 34519 34520 34521 34522 34523 34524 34525 34526 34527
## [34213] 34528 34529 34530 34531 34532 34533 34534 34535 34536 34537 34538 34539
## [34225] 34540 34541 34542 34543 34544 34545 34546 34547 34548 34549 34550 34551
## [34237] 34552 34553 34554 34555 34556 34557 34558 34559 34560 34561 34562 34563
## [34249] 34564 34565 34566 34567 34568 34569 34570 34571 34572 34573 34574 34575
## [34261] 34576 34577 34578 34579 34580 34581 34582 34583 34584 34585 34586 34587
## [34273] 34588 34589 34590 34591 34592 34593 34594 34595 34596 34597 34598 34599
## [34285] 34600 34601 34602 34603 34604 34605 34606 34607 34608 34609 34610 34611
## [34297] 34612 34613 34614 34615 34616 34617 34618 34619 34620 34621 34622 34623
## [34309] 34624 34625 34626 34627 34628 34629 34630 34631 34632 34633 34634 34635
## [34321] 34636 34637 34638 34639 34640 34641 34642 34643 34644 34645 34646 34647
## [34333] 34648 34649 34650 34651 34652 34653 34654 34655 34656 34657 34658 34659
## [34345] 34660 34661 34662 34663 34664 34665 34666 34667 34668 34669 34670 34671
## [34357] 34672 34673 34674 34675 34676 34677 34678 34679 34680 34681 34682 34683
## [34369] 34684 34685 34686 34687 34688 34689 34690 34691 34692 34693 34694 34695
## [34381] 34696 34697 34698 34699 34700 34701 34702 34704 34705 34706 34707 34708
## [34393] 34709 34710 34711 34712 34713 34714 34715 34716 34717 34718 34719 34720
## [34405] 34721 34722 34723 34724 34725 34726 34727 34728 34729 34730 34731 34732
## [34417] 34733 34734 34735 34736 34737 34738 34739 34740 34741 34742 34743 34744
## [34429] 34745 34746 34748 34749 34750 34751 34752 34753 34755 34756 34757 34758
## [34441] 34759 34760 34761 34762 34763 34764 34765 34766 34767 34768 34769 34770
## [34453] 34771 34772 34773 34774 34775 34776 34777 34778 34779 34780 34781 34782
## [34465] 34783 34784 34785 34786 34787 34788 34789 34790 34791 34792 34793 34794
## [34477] 34795 34796 34797 34798 34799 34800 34801 34802 34803 34804 34805 34806
## [34489] 34807 34808 34809 34810 34811 34812 34813 34814 34815 34816 34817 34818
## [34501] 34819 34820 34821 34822 34823 34824 34825 34826 34827 34828 34829 34830
## [34513] 34831 34832 34833 34834 34835 34836 34837 34838 34839 34840 34841 34842
## [34525] 34843 34844 34845 34846 34847 34848 34849 34850 34851 34852 34853 34854
## [34537] 34855 34856 34857 34858 34859 34860 34861 34862 34863 34864 34865 34866
## [34549] 34867 34868 34869 34870 34871 34872 34873 34874 34875 34876 34877 34878
## [34561] 34879 34880 34881 34882 34883 34884 34885 34886 34887 34888 34889 34890
## [34573] 34892 34893 34894 34895 34896 34897 34898 34899 34900 34901 34902 34903
## [34585] 34904 34905 34906 34907 34908 34909 34910 34911 34912 34913 34914 34915
## [34597] 34916 34917 34918 34919 34920 34921 34922 34923 34924 34925 34926 34927
## [34609] 34928 34929 34930 34931 34932 34933 34934 34935 34936 34937 34938 34939
## [34621] 34940 34941 34942 34943 34944 34945 34946 34947 34948 34949 34950 34951
## [34633] 34952 34953 34954 34955 34956 34957 34958 34959 34960 34961 34962 34963
## [34645] 34964 34965 34966 34967 34968 34969 34970 34971 34972 34973 34974 34975
## [34657] 34976 34977 34978 34979 34980 34981 34982 34983 34984 34985 34986 34987
## [34669] 34988 34989 34990 34991 34992 34993 34994 34995 34996 34997 34998 34999
## [34681] 35000 35001 35002 35003 35004 35005 35006 35007 35008 35009 35010 35011
## [34693] 35012 35013 35014 35015 35016 35017 35018 35019 35020 35021 35022 35023
## [34705] 35024 35025 35026 35027 35028 35029 35030 35031 35032 35033 35034 35035
## [34717] 35036 35037 35038 35039 35040 35041 35042 35043 35044 35045 35046 35047
## [34729] 35048 35049 35050 35051 35052 35053 35054 35055 35056 35057 35058 35059
## [34741] 35060 35061 35062 35063 35064 35065 35066 35067 35068 35069 35070 35071
## [34753] 35072 35073 35074 35075 35076 35077 35078 35079 35080 35081 35082 35083
## [34765] 35084 35085 35086 35087 35088 35089 35090 35091 35092 35093 35094 35095
## [34777] 35096 35097 35098 35099 35100 35101 35102 35103 35104 35105 35106 35107
## [34789] 35108 35109 35110 35111 35112 35113 35114 35115 35116 35117 35118 35119
## [34801] 35120 35121 35122 35123 35124 35125 35126 35127 35128 35129 35130 35131
## [34813] 35132 35133 35134 35135 35136 35137 35138 35139 35140 35141 35142 35143
## [34825] 35144 35145 35146 35147 35148 35149 35150 35151 35152 35153 35154 35155
## [34837] 35156 35157 35158 35159 35160 35161 35162 35163 35164 35165 35166 35167
## [34849] 35168 35169 35170 35171 35172 35173 35174 35175 35176 35177 35178 35179
## [34861] 35180 35181 35182 35183 35184 35185 35187 35188 35189 35190 35191 35192
## [34873] 35193 35194 35195 35196 35197 35198 35199 35200 35201 35202 35203 35204
## [34885] 35205 35206 35207 35208 35210 35211 35212 35213 35214 35215 35216 35217
## [34897] 35218 35219 35220 35221 35222 35223 35224 35225 35226 35227 35228 35229
## [34909] 35230 35231 35232 35233 35234 35235 35236 35237 35239 35240 35241 35242
## [34921] 35243 35244 35246 35247 35248 35249 35250 35251 35252 35253 35254 35255
## [34933] 35256 35257 35258 35259 35260 35261 35262 35263 35264 35265 35266 35267
## [34945] 35268 35269 35270 35271 35272 35273 35274 35275 35276 35277 35278 35279
## [34957] 35280 35281 35282 35283 35284 35285 35286 35287 35288 35289 35290 35291
## [34969] 35292 35293 35294 35295 35296 35297 35298 35299 35300 35301 35302 35303
## [34981] 35304 35305 35306 35307 35308 35309 35310 35311 35312 35313 35314 35315
## [34993] 35316 35317 35318 35319 35320 35321 35322 35323 35324 35325 35326 35327
## [35005] 35328 35329 35330 35331 35332 35333 35334 35335 35336 35337 35338 35339
## [35017] 35340 35341 35342 35343 35344 35345 35346 35347 35348 35349 35350 35351
## [35029] 35352 35353 35354 35355 35356 35357 35358 35359 35360 35361 35362 35363
## [35041] 35364 35365 35366 35367 35368 35369 35370 35371 35372 35373 35374 35375
## [35053] 35376 35377 35378 35379 35380 35381 35382 35383 35384 35385 35386 35387
## [35065] 35388 35389 35390 35391 35392 35393 35394 35395 35396 35397 35398 35399
## [35077] 35400 35401 35402 35403 35404 35405 35406 35407 35408 35409 35410 35411
## [35089] 35412 35413 35414 35415 35416 35417 35418 35419 35420 35421 35422 35423
## [35101] 35424 35425 35426 35427 35428 35429 35430 35431 35432 35433 35434 35435
## [35113] 35436 35437 35438 35439 35440 35441 35442 35443 35445 35446 35447 35448
## [35125] 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460
## [35137] 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472
## [35149] 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484
## [35161] 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496
## [35173] 35497 35498 35499 35500 35501 35502 35503 35504 35505 35506 35507 35508
## [35185] 35509 35510 35511 35512 35513 35514 35515 35516 35517 35518 35519 35520
## [35197] 35521 35522 35523 35524 35525 35526 35527 35528 35529 35530 35531 35532
## [35209] 35533 35534 35535 35536 35537 35538 35539 35540 35541 35542 35543 35544
## [35221] 35545 35546 35547 35548 35549 35550 35551 35552 35553 35554 35555 35556
## [35233] 35557 35558 35559 35560 35561 35562 35563 35564 35565 35566 35567 35568
## [35245] 35569 35570 35571 35572 35573 35574 35575 35576 35577 35578 35579 35580
## [35257] 35581 35582 35583 35584 35585 35586 35587 35588 35589 35590 35591 35592
## [35269] 35593 35594 35595 35596 35597 35598 35599 35600 35601 35602 35603 35604
## [35281] 35605 35606 35607 35608 35609 35610 35611 35612 35613 35614 35615 35616
## [35293] 35617 35618 35619 35620 35621 35622 35623 35624 35625 35626 35627 35628
## [35305] 35629 35630 35631 35632 35633 35634 35635 35636 35637 35638 35639 35640
## [35317] 35641 35642 35643 35644 35645 35646 35647 35648 35649 35650 35651 35652
## [35329] 35653 35654 35655 35656 35657 35658 35659 35660 35661 35662 35663 35664
## [35341] 35665 35666 35667 35668 35669 35670 35671 35672 35673 35674 35675 35676
## [35353] 35677 35678 35679 35680 35681 35682 35683 35684 35685 35686 35687 35688
## [35365] 35689 35690 35691 35692 35693 35694 35695 35696 35697 35698 35699 35700
## [35377] 35701 35702 35703 35704 35705 35706 35707 35708 35709 35710 35711 35712
## [35389] 35713 35714 35715 35716 35717 35718 35719 35720 35721 35722 35723 35724
## [35401] 35725 35726 35727 35728 35729 35730 35731 35732 35733 35734 35735 35736
## [35413] 35737 35738 35739 35740 35741 35742 35743 35744 35745 35746 35747 35748
## [35425] 35750 35751 35752 35753 35754 35755 35756 35757 35758 35759 35760 35761
## [35437] 35762 35763 35764 35765 35766 35767 35768 35769 35770 35771 35772 35773
## [35449] 35774 35775 35776 35777 35778 35779 35780 35781 35782 35783 35784 35785
## [35461] 35786 35787 35788 35789 35790 35791 35792 35793 35794 35795 35796 35797
## [35473] 35798 35799 35800 35801 35802 35803 35804 35805 35806 35807 35808 35809
## [35485] 35810 35811 35812 35813 35814 35815 35816 35817 35818 35819 35820 35821
## [35497] 35822 35823 35824 35825 35826 35827 35828 35829 35830 35831 35832 35833
## [35509] 35834 35835 35836 35837 35838 35839 35840 35841 35842 35843 35844 35845
## [35521] 35846 35847 35848 35849 35850 35851 35852 35853 35854 35855 35856 35857
## [35533] 35858 35859 35860 35861 35862 35863 35864 35865 35866 35867 35868 35869
## [35545] 35870 35871 35872 35873 35874 35875 35876 35877 35878 35879 35880 35881
## [35557] 35882 35883 35884 35885 35886 35887 35888 35889 35890 35891 35892 35893
## [35569] 35894 35895 35896 35897 35898 35899 35900 35901 35902 35903 35904 35905
## [35581] 35906 35907 35908 35909 35910 35911 35912 35913 35914 35915 35916 35917
## [35593] 35918 35919 35920 35921 35922 35923 35924 35925 35926 35927 35928 35929
## [35605] 35930 35931 35932 35933 35934 35935 35936 35937 35938 35939 35940 35941
## [35617] 35942 35943 35944 35945 35946 35947 35948 35949 35950 35951 35952 35953
## [35629] 35954 35955 35956 35957 35958 35959 35960 35961 35962 35963 35964 35965
## [35641] 35966 35967 35968 35969 35970 35971 35972 35973 35974 35975 35976 35977
## [35653] 35978 35979 35980 35981 35982 35983 35984 35985 35986 35987 35988 35989
## [35665] 35990 35991 35992 35993 35994 35995 35996 35997 35998 35999 36000 36001
## [35677] 36002 36003 36004 36005 36006 36007 36008 36009 36010 36011 36012 36013
## [35689] 36014 36015 36016 36017 36018 36019 36020 36021 36022 36023 36024 36025
## [35701] 36026 36027 36028 36029 36030 36031 36032 36033 36034 36035 36036 36037
## [35713] 36038 36039 36040 36041 36042 36043 36044 36045 36046 36047 36048 36049
## [35725] 36050 36051 36052 36053 36054 36055 36056 36057 36058 36059 36060 36061
## [35737] 36062 36063 36064 36065 36066 36067 36068 36069 36070 36071 36072 36073
## [35749] 36074 36075 36076 36077 36078 36079 36080 36081 36082 36083 36084 36085
## [35761] 36086 36087 36088 36089 36090 36091 36092 36093 36094 36095 36096 36097
## [35773] 36098 36099 36100 36101 36102 36103 36104 36105 36106 36107 36108 36109
## [35785] 36110 36111 36112 36113 36114 36115 36116 36117 36118 36119 36120 36121
## [35797] 36122 36123 36124 36125 36126 36127 36128 36129 36130 36131 36132 36133
## [35809] 36134 36135 36136 36137 36138 36139 36140 36141 36142 36143 36144 36145
## [35821] 36146 36147 36148 36149 36150 36151 36152 36153 36154 36155 36156 36157
## [35833] 36158 36159 36160 36161 36162 36163 36164 36165 36166 36167 36168 36169
## [35845] 36170 36171 36172 36173 36174 36175 36176 36177 36178 36179 36180 36181
## [35857] 36182 36183 36184 36185 36186 36187 36188 36189 36190 36191 36192 36193
## [35869] 36194 36195 36196 36197 36198 36199 36200 36201 36202 36203 36204 36205
## [35881] 36206 36207 36208 36209 36210 36211 36212 36213 36214 36215 36216 36217
## [35893] 36218 36219 36220 36221 36222 36223 36224 36225 36226 36227 36228 36229
## [35905] 36230 36231 36232 36233 36234 36235 36236 36237 36238 36239 36240 36241
## [35917] 36242 36243 36244 36245 36246 36247 36248 36249 36250 36251 36252 36253
## [35929] 36254 36255 36256 36257 36258 36259 36260 36261 36262 36263 36264 36265
## [35941] 36267 36268 36269 36270 36271 36272 36273 36274 36275 36276 36277 36278
## [35953] 36279 36280 36281 36282 36283 36284 36285 36286 36287 36288 36289 36290
## [35965] 36291 36292 36293 36294 36295 36296 36297 36298 36299 36300 36301 36302
## [35977] 36303 36304 36305 36306 36307 36308 36309 36310 36311 36312 36313 36314
## [35989] 36315 36316 36317 36318 36319 36320 36321 36322 36323 36324 36325 36326
## [36001] 36327 36328 36329 36330 36331 36332 36333 36334 36335 36336 36337 36338
## [36013] 36339 36340 36341 36342 36343 36344 36345 36346 36347 36348 36349 36350
## [36025] 36351 36352 36353 36354 36355 36356 36357 36358 36359 36360 36361 36362
## [36037] 36363 36364 36365 36366 36367 36368 36369 36370 36371 36372 36373 36374
## [36049] 36375 36376 36377 36378 36379 36380 36381 36382 36383 36384 36385 36386
## [36061] 36387 36388 36389 36390 36391 36392 36393 36394 36395 36396 36397 36398
## [36073] 36399 36400 36401 36402 36403 36404 36405 36406 36407 36408 36409 36410
## [36085] 36411 36412 36413 36414 36415 36416 36417 36418 36419 36420 36421 36422
## [36097] 36423 36424 36425 36426 36427 36428 36429 36430 36431 36432 36433 36434
## [36109] 36435 36436 36437 36438 36439 36440 36441 36442 36443 36444 36445 36446
## [36121] 36447 36448 36449 36450 36451 36452 36453 36454 36455 36456 36457 36458
## [36133] 36459 36460 36461 36462 36464 36465 36466 36467 36468 36469 36470 36471
## [36145] 36472 36473 36474 36475 36476 36477 36478 36479 36480 36481 36482 36483
## [36157] 36484 36485 36486 36487 36488 36489 36490 36491 36492 36493 36494 36495
## [36169] 36496 36497 36498 36499 36500 36501 36502 36503 36504 36505 36506 36507
## [36181] 36508 36509 36510 36511 36512 36513 36514 36515 36516 36517 36518 36519
## [36193] 36520 36521 36522 36523 36524 36525 36526 36527 36528 36529 36530 36531
## [36205] 36532 36533 36534 36535 36536 36537 36538 36539 36540 36541 36542 36543
## [36217] 36544 36545 36546 36547 36548 36549 36550 36551 36552 36553 36554 36555
## [36229] 36556 36557 36558 36559 36560 36561 36562 36563 36564 36565 36566 36567
## [36241] 36568 36569 36570 36571 36572 36573 36574 36575 36576 36577 36578 36579
## [36253] 36580 36581 36582 36583 36584 36585 36586 36587 36588 36589 36590 36591
## [36265] 36592 36593 36594 36595 36596 36597 36598 36599 36600 36601 36602 36603
## [36277] 36604 36605 36606 36607 36608 36609 36610 36611 36612 36613 36614 36615
## [36289] 36616 36617 36618 36619 36620 36621 36622 36623 36624 36625 36626 36627
## [36301] 36628 36629 36630 36631 36632 36633 36634 36635 36636 36637 36638 36639
## [36313] 36640 36641 36642 36643 36644 36645 36646 36647 36648 36649 36650 36651
## [36325] 36652 36653 36654 36655 36656 36657 36658 36659 36660 36661 36662 36663
## [36337] 36664 36665 36666 36667 36668 36669 36670 36671 36672 36673 36674 36675
## [36349] 36676 36677 36678 36679 36680 36681 36682 36683 36684 36685 36686 36687
## [36361] 36688 36689 36690 36691 36692 36693 36694 36695 36696 36697 36698 36699
## [36373] 36700 36701 36702 36703 36704 36705 36706 36707 36708 36709 36710 36711
## [36385] 36712 36713 36714 36715 36716 36717 36718 36719 36720 36721 36722 36723
## [36397] 36724 36725 36726 36727 36728 36729 36730 36731 36732 36733 36734 36735
## [36409] 36736 36737 36738 36739 36740 36741 36742 36743 36744 36745 36746 36747
## [36421] 36748 36749 36750 36751 36752 36753 36754 36755 36756 36757 36758 36759
## [36433] 36760 36761 36762 36763 36764 36765 36766 36767 36768 36769 36770 36771
## [36445] 36772 36773 36774 36775 36776 36777 36778 36780 36781 36782 36783 36784
## [36457] 36785 36786 36787 36788 36789 36790 36791 36792 36793 36794 36795 36796
## [36469] 36797 36798 36799 36800 36801 36802 36803 36804 36805 36806 36807 36808
## [36481] 36809 36810 36811 36812 36813 36814 36815 36817 36818 36819 36820 36821
## [36493] 36822 36823 36824 36825 36826 36827 36828 36829 36830 36831 36832 36833
## [36505] 36834 36835 36836 36837 36838 36839 36840 36841 36842 36843 36844 36845
## [36517] 36846 36847 36848 36849 36850 36851 36852 36853 36854 36855 36856 36857
## [36529] 36858 36859 36860 36861 36862 36863 36864 36865 36866 36867 36868 36869
## [36541] 36870 36871 36872 36873 36874 36875 36876 36877 36878 36879 36880 36881
## [36553] 36882 36883 36884 36885 36886 36887 36888 36889 36890 36891 36892 36893
## [36565] 36894 36895 36896 36897 36898 36899 36900 36901 36902 36903 36904 36905
## [36577] 36906 36907 36908 36909 36910 36911 36912 36913 36914 36915 36916 36917
## [36589] 36918 36919 36920 36921 36922 36923 36924 36925 36926 36927 36928 36929
## [36601] 36930 36931 36932 36933 36934 36935 36936 36937 36938 36939 36940 36941
## [36613] 36942 36943 36944 36945 36946 36947 36948 36949 36950 36951 36953 36954
## [36625] 36955 36956 36957 36958 36959 36960 36961 36962 36963 36964 36965 36966
## [36637] 36967 36968 36969 36970 36971 36972 36973 36974 36975 36976 36977 36978
## [36649] 36979 36980 36981 36982 36983 36984 36985 36986 36987 36988 36989 36990
## [36661] 36991 36992 36993 36994 36995 36996 36997 36998 36999 37000 37001 37002
## [36673] 37003 37004 37005 37006 37007 37008 37009 37010 37011 37012 37013 37014
## [36685] 37015 37016 37017 37018 37019 37020 37021 37022 37023 37024 37025 37026
## [36697] 37027 37028 37029 37030 37031 37032 37033 37034 37035 37036 37037 37038
## [36709] 37039 37040 37041 37042 37043 37044 37045 37046 37047 37048 37049 37050
## [36721] 37051 37052 37053 37054 37055 37056 37057 37058 37059 37060 37061 37062
## [36733] 37063 37064 37065 37066 37067 37068 37069 37070 37071 37072 37073 37074
## [36745] 37075 37076 37077 37078 37079 37080 37081 37082 37083 37084 37085 37086
## [36757] 37087 37088 37089 37090 37091 37092 37093 37094 37095 37096 37097 37098
## [36769] 37099 37100 37101 37102 37103 37104 37105 37106 37107 37108 37109 37110
## [36781] 37111 37112 37113 37114 37115 37116 37117 37118 37119 37120 37121 37122
## [36793] 37123 37124 37125 37126 37127 37128 37129 37130 37131 37132 37133 37134
## [36805] 37135 37136 37137 37138 37139 37140 37141 37142 37143 37144 37145 37146
## [36817] 37147 37148 37149 37150 37151 37152 37153 37154 37155 37156 37157 37158
## [36829] 37159 37160 37161 37162 37163 37164 37165 37166 37167 37168 37169 37170
## [36841] 37171 37172 37173 37174 37175 37176 37177 37178 37179 37180 37181 37182
## [36853] 37183 37184 37185 37186 37187 37188 37189 37190 37191 37192 37193 37194
## [36865] 37195 37196 37197 37198 37199 37200 37201 37202 37203 37204 37205 37206
## [36877] 37207 37208 37209 37210 37211 37212 37213 37214 37215 37216 37217 37218
## [36889] 37219 37220 37221 37222 37223 37224 37225 37226 37227 37228 37229 37230
## [36901] 37231 37232 37233 37234 37235 37236 37237 37238 37239 37240 37241 37242
## [36913] 37243 37244 37245 37246 37247 37248 37249 37250 37251 37252 37253 37254
## [36925] 37255 37256 37257 37258 37259 37260 37261 37262 37263 37264 37265 37266
## [36937] 37267 37268 37269 37270 37271 37272 37273 37274 37275 37276 37277 37278
## [36949] 37279 37280 37281 37282 37283 37284 37285 37286 37287 37288 37289 37290
## [36961] 37291 37292 37293 37294 37295 37296 37297 37298 37299 37300 37301 37302
## [36973] 37303 37304 37305 37306 37307 37308 37309 37310 37311 37312 37313 37314
## [36985] 37315 37316 37317 37318 37319 37320 37321 37322 37323 37324 37325 37326
## [36997] 37327 37328 37329 37330 37331 37332 37333 37334 37335 37336 37337 37338
## [37009] 37339 37340 37341 37342 37343 37344 37345 37346 37347 37348 37349 37350
## [37021] 37351 37352 37353 37354 37355 37356 37357 37358 37359 37360 37361 37362
## [37033] 37363 37364 37365 37366 37367 37368 37369 37370 37371 37372 37373 37374
## [37045] 37375 37376 37377 37378 37379 37380 37381 37382 37383 37384 37385 37386
## [37057] 37387 37388 37389 37390 37391 37392 37393 37394 37395 37396 37397 37398
## [37069] 37399 37400 37401 37402 37403 37404 37405 37406 37407 37408 37409 37410
## [37081] 37411 37412 37413 37414 37415 37416 37417 37418 37419 37420 37421 37422
## [37093] 37423 37424 37425 37426 37427 37428 37429 37430 37431 37432 37433 37434
## [37105] 37435 37436 37437 37438 37439 37440 37441 37442 37443 37444 37445 37446
## [37117] 37447 37448 37449 37450 37451 37452 37453 37454 37455 37456 37457 37458
## [37129] 37459 37460 37461 37462 37463 37464 37465 37466 37467 37468 37469 37470
## [37141] 37471 37472 37473 37474 37475 37476 37477 37478 37479 37480 37481 37482
## [37153] 37483 37484 37485 37486 37487 37488 37489 37490 37491 37492 37493 37494
## [37165] 37495 37496 37497 37498 37499 37500 37501 37502 37503 37504 37505 37506
## [37177] 37507 37508 37509 37510 37511 37512 37513 37514 37515 37516 37517 37518
## [37189] 37519 37520 37521 37522 37523 37524 37525 37526 37527 37528 37529 37530
## [37201] 37531 37532 37533 37534 37535 37536 37537 37538 37539 37540 37541 37542
## [37213] 37543 37544 37545 37546 37547 37548 37549 37550 37551 37552 37553 37554
## [37225] 37555 37556 37557 37558 37559 37560 37561 37562 37563 37564 37565 37566
## [37237] 37567 37568 37569 37570 37571 37572 37573 37574 37575 37576 37577 37578
## [37249] 37579 37580 37581 37582 37583 37584 37585 37586 37587 37588 37589 37590
## [37261] 37591 37592 37593 37594 37595 37596 37597 37598 37599 37600 37601 37602
## [37273] 37603 37604 37605 37606 37607 37608 37609 37610 37611 37612 37613 37614
## [37285] 37615 37616 37617 37618 37619 37620 37621 37622 37623 37624 37625 37626
## [37297] 37627 37628 37629 37630 37631 37632 37633 37634 37635 37636 37637 37638
## [37309] 37639 37640 37641 37642 37643 37644 37645 37646 37647 37648 37649 37650
## [37321] 37651 37652 37653 37654 37655 37656 37657 37658 37659 37660 37661 37662
## [37333] 37663 37664 37665 37666 37667 37668 37669 37670 37671 37672 37673 37674
## [37345] 37675 37676 37677 37678 37679 37680 37681 37682 37683 37684 37685 37686
## [37357] 37687 37688 37689 37690 37691 37692 37693 37694 37695 37696 37697 37698
## [37369] 37699 37700 37701 37702 37703 37704 37705 37706 37707 37708 37709 37710
## [37381] 37711 37712 37713 37714 37715 37716 37717 37718 37719 37720 37721 37722
## [37393] 37723 37724 37725 37726 37727 37728 37729 37730 37731 37732 37733 37734
## [37405] 37735 37736 37737 37738 37739 37740 37741 37742 37743 37744 37745 37746
## [37417] 37747 37748 37749 37750 37751 37752 37753 37754 37755 37756 37757 37758
## [37429] 37759 37760 37761 37762 37763 37764 37765 37766 37767 37768 37769 37770
## [37441] 37771 37772 37773 37774 37775 37776 37777 37778 37779 37780 37781 37782
## [37453] 37783 37784 37785 37786 37787 37788 37789 37790 37791 37792 37793 37794
## [37465] 37795 37796 37797 37798 37799 37800 37801 37802 37803 37804 37805 37806
## [37477] 37807 37808 37809 37810 37811 37812 37813 37814 37815 37816 37817 37818
## [37489] 37819 37820 37821 37822 37823 37824 37825 37826 37827 37828 37829 37830
## [37501] 37831 37832 37833 37834 37835 37836 37837 37838 37839 37840 37841 37842
## [37513] 37843 37844 37845 37846 37847 37848 37849 37850 37851 37852 37853 37854
## [37525] 37855 37856 37857 37858 37859 37860 37861 37862 37863 37864 37865 37866
## [37537] 37867 37868 37869 37870 37871 37872 37873 37874 37875 37876 37877 37878
## [37549] 37879 37880 37881 37882 37883 37884 37885 37886 37887 37888 37889 37890
## [37561] 37891 37892 37893 37894 37895 37896 37897 37898 37899 37900 37901 37902
## [37573] 37903 37904 37905 37906 37907 37908 37909 37910 37911 37912 37913 37914
## [37585] 37915 37916 37917 37918 37919 37920 37921 37922 37923 37924 37925 37926
## [37597] 37927 37928 37929 37930 37931 37932 37933 37934 37935 37936 37937 37938
## [37609] 37939 37940 37941 37942 37943 37944 37945 37946 37947 37948 37949 37950
## [37621] 37951 37952 37953 37954 37955 37956 37957 37958 37959 37960 37961 37962
## [37633] 37963 37964 37965 37966 37967 37968 37969 37970 37971 37972 37973 37974
## [37645] 37975 37976 37977 37978 37979 37980 37981 37982 37983 37984 37985 37986
## [37657] 37987 37988 37989 37990 37991 37992 37993 37994 37995 37996 37997 37998
## [37669] 37999 38000 38001 38002 38003 38004 38005 38006 38007 38008 38009 38010
## [37681] 38011 38012 38013 38014 38015 38016 38017 38018 38019 38020 38021 38022
## [37693] 38023 38024 38025 38026 38027 38028 38029 38030 38031 38032 38033 38034
## [37705] 38035 38036 38037 38038 38039 38040 38041 38042 38043 38044 38045 38046
## [37717] 38047 38048 38049 38050 38051 38052 38053 38054 38055 38056 38057 38058
## [37729] 38059 38060 38061 38062 38063 38064 38065 38066 38067 38068 38069 38070
## [37741] 38071 38072 38073 38074 38075 38076 38077 38078 38079 38080 38081 38082
## [37753] 38083 38084 38085 38086 38087 38088 38089 38090 38091 38092 38093 38094
## [37765] 38095 38096 38097 38098 38099 38100 38101 38102 38103 38104 38105 38106
## [37777] 38107 38108 38109 38110 38111 38112 38113 38114 38115 38116 38117 38118
## [37789] 38119 38120 38121 38122 38123 38124 38125 38126 38127 38128 38129 38130
## [37801] 38131 38132 38133 38134 38135 38136 38137 38138 38139 38140 38141 38142
## [37813] 38143 38144 38145 38146 38147 38148 38149 38150 38151 38152 38153 38154
## [37825] 38155 38156 38157 38158 38159 38160 38161 38162 38163 38164 38165 38166
## [37837] 38167 38168 38169 38170 38171 38172 38173 38174 38175 38176 38177 38178
## [37849] 38179 38180 38181 38182 38183 38184 38185 38186 38187 38188 38189 38190
## [37861] 38191 38192 38193 38194 38195 38196 38197 38198 38199 38200 38201 38202
## [37873] 38203 38204 38205 38206 38207 38208 38209 38210 38211 38212 38213 38214
## [37885] 38215 38216 38217 38218 38219 38220 38221 38222 38223 38224 38225 38226
## [37897] 38227 38228 38229 38230 38231 38232 38233 38234 38235 38236 38237 38238
## [37909] 38239 38241 38242 38243 38244 38245 38246 38247 38248 38249 38250 38251
## [37921] 38252 38253 38254 38255 38256 38257 38258 38259 38260 38261 38262 38263
## [37933] 38264 38265 38266 38267 38268 38269 38270 38271 38272 38273 38274 38275
## [37945] 38276 38277 38278 38279 38280 38281 38282 38283 38284 38285 38286 38287
## [37957] 38288 38289 38290 38291 38292 38293 38294 38295 38296 38297 38298 38299
## [37969] 38300 38301 38302 38303 38304 38305 38306 38307 38308 38309 38310 38311
## [37981] 38312 38313 38314 38315 38316 38317 38318 38319 38320 38321 38322 38323
## [37993] 38324 38326 38327 38328 38329 38330 38331 38332 38333 38334 38335 38336
## [38005] 38337 38338 38339 38340 38341 38342 38343 38344 38345 38346 38347 38348
## [38017] 38349 38350 38351 38352 38353 38354 38355 38356 38357 38358 38359 38360
## [38029] 38361 38362 38363 38364 38365 38366 38367 38368 38369 38370 38371 38372
## [38041] 38373 38374 38375 38376 38377 38378 38379 38380 38381 38382 38383 38384
## [38053] 38385 38386 38387 38388 38389 38390 38391 38392 38393 38394 38395 38396
## [38065] 38397 38398 38399 38400 38401 38402 38403 38404 38405 38406 38407 38408
## [38077] 38409 38410 38411 38412 38413 38414 38415 38416 38417 38418 38419 38420
## [38089] 38421 38422 38423 38424 38425 38426 38427 38428 38429 38430 38431 38432
## [38101] 38433 38434 38435 38436 38437 38438 38439 38440 38441 38442 38443 38444
## [38113] 38445 38446 38447 38448 38449 38450 38451 38452 38453 38454 38455 38456
## [38125] 38457 38458 38459 38460 38461 38462 38463 38464 38465 38466 38467 38468
## [38137] 38469 38470 38471 38472 38473 38474 38475 38476 38477 38478 38479 38480
## [38149] 38481 38482 38483 38484 38485 38486 38487 38488 38489 38490 38491 38492
## [38161] 38493 38494 38495 38496 38497 38498 38499 38500 38501 38502 38503 38504
## [38173] 38505 38506 38507 38508 38509 38510 38511 38512 38513 38514 38515 38516
## [38185] 38517 38518 38519 38520 38521 38522 38523 38524 38525 38526 38527 38528
## [38197] 38529 38530 38531 38532 38533 38534 38535 38536 38537 38538 38539 38540
## [38209] 38541 38542 38543 38544 38545 38546 38547 38548 38549 38550 38551 38552
## [38221] 38553 38554 38555 38556 38557 38558 38559 38560 38561 38562 38563 38564
## [38233] 38565 38566 38567 38568 38569 38570 38571 38572 38573 38574 38575 38576
## [38245] 38577 38578 38579 38580 38581 38582 38583 38584 38585 38586 38587 38588
## [38257] 38589 38590 38591 38592 38593 38594 38595 38596 38597 38598 38599 38600
## [38269] 38601 38602 38603 38604 38605 38606 38607 38608 38609 38610 38611 38612
## [38281] 38613 38614 38615 38616 38617 38618 38619 38620 38621 38622 38623 38624
## [38293] 38625 38626 38627 38628 38629 38630 38631 38632 38633 38634 38635 38636
## [38305] 38637 38638 38639 38640 38641 38642 38643 38644 38645 38646 38647 38648
## [38317] 38649 38650 38651 38652 38653 38656 38657 38658 38659 38660 38661 38662
## [38329] 38663 38664 38665 38666 38667 38668 38669 38670 38671 38672 38673 38674
## [38341] 38675 38676 38677 38678 38679 38680 38681 38682 38683 38684 38685 38686
## [38353] 38687 38688 38689 38690 38691 38692 38693 38694 38695 38696 38697 38698
## [38365] 38699 38700 38701 38702 38703 38704 38705 38706 38707 38708 38709 38710
## [38377] 38711 38712 38713 38714 38715 38716 38717 38718 38719 38720 38721 38722
## [38389] 38723 38724 38725 38726 38727 38728 38729 38730 38731 38732 38733 38734
## [38401] 38735 38736 38737 38738 38739 38740 38741 38742 38743 38744 38745 38746
## [38413] 38747 38748 38749 38750 38751 38752 38753 38754 38755 38756 38757 38758
## [38425] 38759 38760 38761 38762 38763 38764 38765 38766 38767 38768 38769 38770
## [38437] 38771 38772 38773 38774 38775 38776 38777 38778 38779 38780 38781 38782
## [38449] 38783 38784 38785 38786 38787 38788 38789 38790 38791 38792 38793 38794
## [38461] 38795 38796 38797 38798 38799 38800 38801 38802 38803 38804 38805 38806
## [38473] 38807 38808 38809 38810 38811 38812 38813 38814 38815 38816 38817 38818
## [38485] 38819 38820 38821 38822 38823 38824 38825 38826 38827 38828 38829 38830
## [38497] 38831 38832 38833 38834 38835 38836 38837 38838 38839 38840 38841 38842
## [38509] 38843 38844 38845 38846 38847 38848 38849 38850 38851 38852 38853 38854
## [38521] 38855 38856 38857 38859 38860 38861 38862 38863 38864 38865 38866 38867
## [38533] 38868 38869 38870 38871 38872 38873 38874 38875 38876 38877 38878 38879
## [38545] 38880 38881 38882 38883 38884 38885 38886 38887 38888 38889 38890 38891
## [38557] 38892 38893 38894 38895 38896 38897 38898 38899 38900 38901 38902 38903
## [38569] 38904 38905 38906 38907 38908 38909 38910 38911 38912 38913 38914 38915
## [38581] 38916 38917 38918 38919 38920 38921 38922 38923 38924 38925 38926 38927
## [38593] 38928 38929 38930 38931 38932 38933 38934 38935 38936 38937 38938 38939
## [38605] 38940 38941 38942 38943 38944 38945 38946 38947 38948 38949 38950 38951
## [38617] 38952 38953 38954 38955 38956 38957 38958 38959 38960 38961 38962 38963
## [38629] 38964 38965 38966 38967 38968 38969 38970 38971 38972 38973 38974 38975
## [38641] 38976 38977 38978 38979 38980 38981 38982 38983 38984 38985 38986 38987
## [38653] 38988 38989 38990 38991 38992 38993 38994 38995 38996 38997 38998 38999
## [38665] 39000 39001 39002 39003 39004 39005 39006 39007 39008 39009 39010 39011
## [38677] 39012 39013 39014 39015 39016 39017 39018 39019 39020 39021 39022 39023
## [38689] 39024 39025 39026 39027 39028 39029 39030 39031 39032 39033 39034 39035
## [38701] 39036 39037 39038 39039 39040 39041 39042 39043 39044 39045 39046 39047
## [38713] 39048 39049 39050 39051 39052 39053 39054 39055 39056 39057 39058 39059
## [38725] 39060 39061 39062 39063 39064 39065 39066 39067 39068 39069 39070 39071
## [38737] 39072 39073 39074 39075 39076 39077 39078 39079 39080 39081 39082 39083
## [38749] 39084 39085 39086 39087 39088 39089 39090 39091 39092 39093 39094 39095
## [38761] 39096 39097 39098 39099 39100 39101 39102 39103 39104 39105 39106 39107
## [38773] 39108 39109 39110 39111 39112 39113 39114 39115 39116 39117 39118 39119
## [38785] 39120 39121 39122 39123 39124 39125 39126 39127 39128 39129 39130 39131
## [38797] 39132 39133 39134 39135 39136 39137 39138 39139 39140 39141 39142 39143
## [38809] 39144 39145 39146 39147 39148 39149 39150 39151 39152 39153 39154 39155
## [38821] 39156 39157 39158 39159 39160 39161 39162 39163 39164 39165 39166 39167
## [38833] 39168 39169 39170 39171 39172 39173 39174 39175 39176 39177 39178 39179
## [38845] 39180 39181 39182 39183 39184 39185 39186 39187 39188 39189 39190 39191
## [38857] 39192 39193 39194 39195 39196 39197 39198 39199 39200 39201 39202 39203
## [38869] 39204 39205 39206 39207 39208 39209 39210 39211 39212 39213 39214 39215
## [38881] 39216 39217 39218 39219 39220 39221 39222 39223 39224 39225 39226 39227
## [38893] 39228 39229 39230 39231 39232 39233 39234 39235 39236 39237 39238 39239
## [38905] 39240 39241 39242 39243 39244 39245 39246 39247 39248 39249 39250 39251
## [38917] 39252 39253 39254 39255 39256 39257 39258 39259 39260 39261 39262 39263
## [38929] 39264 39265 39266 39267 39268 39269 39270 39271 39272 39273 39274 39275
## [38941] 39276 39277 39278 39279 39280 39281 39282 39283 39284 39285 39286 39287
## [38953] 39288 39289 39290 39291 39292 39293 39294 39295 39296 39297 39298 39299
## [38965] 39300 39301 39302 39303 39304 39305 39306 39307 39308 39309 39310 39311
## [38977] 39312 39313 39314 39315 39316 39317 39318 39319 39320 39321 39322 39323
## [38989] 39324 39325 39326 39327 39328 39329 39330 39331 39332 39333 39334 39335
## [39001] 39336 39337 39338 39339 39340 39341 39342 39343 39344 39345 39346 39347
## [39013] 39348 39349 39350 39351 39352 39353 39354 39355 39356 39357 39358 39359
## [39025] 39360 39361 39362 39363 39364 39365 39366 39367 39368 39369 39370 39371
## [39037] 39372 39373 39374 39375 39376 39377 39378 39379 39380 39381 39382 39383
## [39049] 39384 39385 39386 39387 39388 39389 39390 39391 39392 39393 39394 39395
## [39061] 39396 39397 39398 39399 39400 39401 39402 39403 39404 39405 39406 39407
## [39073] 39408 39409 39410 39411 39412 39413 39414 39415 39416 39417 39418 39419
## [39085] 39420 39421 39422 39423 39424 39425 39426 39427 39428 39429 39430 39431
## [39097] 39432 39433 39434 39435 39436 39437 39438 39439 39440 39441 39442 39443
## [39109] 39444 39445 39446 39447 39448 39449 39450 39451 39452 39453 39454 39455
## [39121] 39456 39457 39458 39459 39460 39461 39462 39463 39464 39465 39466 39467
## [39133] 39468 39469 39470 39471 39472 39473 39474 39475 39476 39477 39478 39479
## [39145] 39480 39481 39482 39483 39484 39485 39486 39487 39488 39489 39490 39491
## [39157] 39492 39493 39494 39495 39496 39497 39498 39499 39500 39501 39502 39503
## [39169] 39504 39505 39506 39507 39508 39509 39510 39511 39512 39513 39514 39515
## [39181] 39516 39517 39518 39519 39520 39521 39522 39523 39524 39525 39526 39527
## [39193] 39528 39529 39530 39531 39532 39533 39534 39535 39536 39537 39538 39539
## [39205] 39540 39541 39542 39543 39544 39545 39546 39547 39548 39549 39550 39551
## [39217] 39552 39553 39554 39555 39556 39557 39558 39559 39560 39561 39562 39563
## [39229] 39564 39565 39566 39567 39568 39569 39570 39571 39572 39573 39574 39575
## [39241] 39576 39577 39578 39579 39580 39581 39582 39583 39584 39585 39586 39587
## [39253] 39588 39589 39590 39591 39592 39593 39594 39595 39596 39597 39598 39599
## [39265] 39600 39601 39602 39603 39604 39605 39606 39607 39608 39609 39610 39611
## [39277] 39612 39613 39614 39615 39616 39617 39618 39619 39620 39621 39622 39623
## [39289] 39624 39625 39626 39627 39628 39629 39630 39631 39632 39633 39634 39635
## [39301] 39636 39637 39638 39639 39640 39641 39642 39643 39644 39645 39646 39647
## [39313] 39648 39649 39650 39651 39652 39653 39654 39655 39656 39657 39658 39659
## [39325] 39660 39661 39662 39663 39664 39665 39666 39667 39668 39669 39670 39671
## [39337] 39672 39673 39674 39675 39676 39677 39678 39679 39680 39681 39682 39683
## [39349] 39684 39685 39686 39687 39688 39689 39690 39691 39692 39693 39694 39695
## [39361] 39696 39697 39698 39699 39700 39701 39702 39703 39704 39705 39706 39707
## [39373] 39708 39709 39710 39711 39712 39713 39714 39715 39716 39717 39718 39719
## [39385] 39720 39721 39722 39723 39724 39725 39726 39727 39728 39729 39730 39731
## [39397] 39732 39733 39734 39735 39736 39737 39738 39739 39740 39741 39742 39743
## [39409] 39744 39745 39746 39747 39748 39749 39750 39751 39752 39753 39754 39755
## [39421] 39756 39757 39758 39759 39760 39761 39762 39763 39764 39765 39766 39767
## [39433] 39768 39769 39770 39771 39772 39773 39774 39775 39776 39777 39778 39779
## [39445] 39780 39781 39782 39783 39784 39785 39786 39787 39788 39789 39790 39791
## [39457] 39792 39793 39794 39795 39796 39797 39798 39799 39800 39801 39802 39803
## [39469] 39804 39805 39806 39807 39808 39809 39810 39811 39812 39813 39814 39815
## [39481] 39816 39817 39818 39819 39820 39821 39822 39823 39824 39825 39826 39827
## [39493] 39828 39829 39830 39831 39832 39833 39834 39835 39836 39837 39838 39839
## [39505] 39840 39841 39842 39843 39844 39845 39846 39847 39848 39849 39850 39851
## [39517] 39852 39853 39854 39855 39856 39857 39858 39859 39860 39861 39862 39863
## [39529] 39864 39865 39866 39867 39868 39869 39870 39871 39872 39873 39874 39875
## [39541] 39876 39877 39878 39879 39880 39881 39882 39883 39884 39885 39886 39887
## [39553] 39888 39889 39890 39891 39892 39893 39894 39895 39896 39897 39898 39899
## [39565] 39900 39901 39902 39903 39904 39905 39906 39907 39908 39909 39910 39911
## [39577] 39912 39913 39914 39915 39916 39917 39918 39919 39920 39921 39922 39923
## [39589] 39924 39925 39926 39927 39928 39929 39930 39931 39932 39933 39934 39935
## [39601] 39936 39937 39938 39939 39940 39941 39942 39943 39944 39945 39946 39947
## [39613] 39948 39949 39950 39951 39952 39953 39954 39955 39956 39957 39958 39959
## [39625] 39960 39961 39962 39963 39964 39965 39966 39967 39968 39969 39970 39971
## [39637] 39972 39973 39974 39975 39976 39977 39978 39979 39980 39981 39982 39983
## [39649] 39984 39985 39986 39987 39988 39989 39990 39991 39992 39993 39994 39995
## [39661] 39996 39997 39998 39999 40000 40001 40002 40003 40004 40005 40006 40007
## [39673] 40008 40009 40010 40011 40012 40013 40014 40015 40016 40017 40018 40019
## [39685] 40020 40021 40022 40023 40024 40025 40026 40027 40028 40029 40030 40031
## [39697] 40032 40033 40034 40035 40036 40037 40039 40040 40041 40042 40043 40044
## [39709] 40045 40046 40047 40048 40049 40050 40051 40052 40053 40054 40055 40056
## [39721] 40057 40058 40059 40060 40061 40062 40063 40064 40065 40066 40067 40068
## [39733] 40069 40070 40071 40072 40073 40074 40075 40076 40077 40078 40079 40080
## [39745] 40081 40082 40083 40084 40085 40086 40087 40088 40089 40090 40091 40092
## [39757] 40093 40094 40095 40096 40097 40098 40099 40100 40101 40102 40103 40104
## [39769] 40105 40106 40107 40108 40109 40110 40111 40112 40113 40114 40115 40116
## [39781] 40117 40118 40119 40120 40121 40122 40123 40124 40125 40126 40127 40128
## [39793] 40129 40130 40131 40132 40133 40134 40135 40136 40137 40138 40139 40140
## [39805] 40141 40142 40143 40144 40145 40146 40147 40148 40149 40150 40151 40152
## [39817] 40153 40154 40155 40156 40157 40158 40159 40160 40161 40162 40163 40164
## [39829] 40165 40166 40167 40168 40169 40170 40171 40172 40173 40174 40175 40176
## [39841] 40177 40178 40179 40180 40181 40182 40183 40184 40185 40186 40187 40188
## [39853] 40189 40191 40192 40193 40194 40195 40196 40197 40198 40199 40200 40201
## [39865] 40202 40203 40204 40205 40206 40207 40208 40209 40210 40211 40212 40213
## [39877] 40214 40215 40216 40217 40218 40219 40220 40221 40222 40224 40225 40226
## [39889] 40227 40228 40229 40230 40231 40232 40233 40234 40235 40236 40237 40238
## [39901] 40239 40240 40241 40242 40243 40244 40245 40246 40247 40248 40249 40250
## [39913] 40251 40252 40253 40254 40255 40256 40257 40258 40259 40260 40261 40262
## [39925] 40263 40264 40265 40266 40267 40268 40269 40270 40271 40272 40273 40274
## [39937] 40275 40276 40277 40278 40279 40280 40281 40282 40283 40284 40285 40286
## [39949] 40287 40288 40289 40290 40291 40292 40293 40294 40295 40296 40297 40298
## [39961] 40299 40300 40301 40302 40303 40304 40305 40306 40307 40308 40309 40310
## [39973] 40311 40312 40313 40314 40315 40316 40317 40318 40319 40320 40321 40322
## [39985] 40323 40324 40325 40326 40327 40328 40329 40330 40331 40332 40333 40334
## [39997] 40335 40336 40337 40338 40339 40340 40341 40342 40343 40344 40345 40346
## [40009] 40347 40348 40349 40350 40351 40352 40353 40354 40355 40356 40357 40358
## [40021] 40359 40360 40361 40362 40363 40364 40365 40366 40367 40368 40369 40370
## [40033] 40371 40372 40373 40374 40375 40376 40377 40378 40379 40380 40381 40382
## [40045] 40383 40384 40385 40386 40387 40388 40389 40390 40391 40392 40393 40394
## [40057] 40395 40396 40397 40398 40399 40400 40401 40402 40403 40404 40405 40406
## [40069] 40407 40408 40409 40410 40411 40412 40413 40414 40415 40416 40417 40418
## [40081] 40419 40420 40421 40422 40423 40424 40425 40426 40427 40428 40429 40430
## [40093] 40431 40432 40433 40434 40435 40436 40437 40438 40439 40440 40441 40442
## [40105] 40443 40444 40445 40446 40447 40448 40449 40450 40451 40452 40453 40454
## [40117] 40455 40456 40457 40458 40459 40460 40461 40462 40463 40464 40465 40466
## [40129] 40467 40468 40469 40470 40471 40472 40473 40474 40475 40476 40477 40478
## [40141] 40479 40480 40481 40482 40483 40484 40485 40486 40487 40488 40489 40490
## [40153] 40491 40492 40493 40494 40495 40496 40497 40498 40499 40500 40501 40502
## [40165] 40503 40504 40505 40506 40507 40508 40509 40510 40511 40512 40513 40514
## [40177] 40515 40516 40517 40518 40519 40520 40521 40522 40523 40524 40525 40526
## [40189] 40527 40528 40529 40530 40531 40532 40533 40534 40535 40536 40537 40538
## [40201] 40539 40540 40541 40542 40543 40544 40545 40546 40547 40548 40549 40550
## [40213] 40551 40552 40553 40554 40555 40556 40557 40558 40559 40560 40561 40562
## [40225] 40563 40564 40565 40566 40567 40568 40569 40570 40571 40572 40573 40574
## [40237] 40575 40576 40577 40578 40579 40580 40581 40582 40583 40584 40585 40586
## [40249] 40587 40588 40589 40590 40591 40592 40593 40594 40595 40596 40597 40598
## [40261] 40599 40600 40601 40602 40603 40604 40605 40606 40607 40608 40609 40610
## [40273] 40611 40612 40613 40614 40615 40616 40617 40618 40619 40620 40621 40622
## [40285] 40623 40624 40625 40626 40627 40628 40629 40630 40631 40632 40633 40634
## [40297] 40635 40636 40637 40638 40639 40640 40641 40642 40643 40644 40645 40646
## [40309] 40647 40648 40649 40650 40651 40652 40653 40654 40655 40656 40657 40658
## [40321] 40659 40660 40661 40662 40663 40664 40665 40666 40667 40668 40669 40670
## [40333] 40671 40672 40673 40674 40675 40676 40677 40678 40679 40680 40681 40682
## [40345] 40683 40684 40685 40686 40687 40688 40689 40690 40691 40692 40693 40694
## [40357] 40695 40696 40697 40698 40699 40700 40701 40702 40703 40704 40705 40706
## [40369] 40707 40708 40709 40710 40711 40712 40713 40714 40715 40716 40717 40718
## [40381] 40719 40720 40721 40722 40723 40724 40725 40726 40727 40728 40729 40730
## [40393] 40731 40732 40733 40734 40735 40736 40737 40738 40739 40740 40741 40742
## [40405] 40743 40744 40745 40746 40747 40748 40749 40750 40751 40752 40753 40754
## [40417] 40755 40756 40757 40758 40759 40760 40761 40762 40763 40764 40765 40766
## [40429] 40767 40768 40769 40770 40771 40772 40773 40774 40775 40776 40777 40778
## [40441] 40779 40780 40781 40782 40783 40784 40785 40786 40787 40788 40789 40790
## [40453] 40791 40792 40793 40794 40795 40796 40797 40798 40799 40800 40801 40802
## [40465] 40803 40804 40805 40806 40807 40808 40809 40810 40811 40812 40813 40814
## [40477] 40815 40816 40817 40818 40819 40820 40821 40822 40823 40824 40825 40826
## [40489] 40827 40828 40829 40830 40831 40832 40833 40834 40835 40836 40837 40838
## [40501] 40839 40840 40841 40842 40843 40844 40845 40846 40847 40848 40849 40850
## [40513] 40851 40852 40853 40854 40855 40856 40857 40858 40859 40860 40861 40862
## [40525] 40863 40864 40865 40866 40867 40868 40869 40870 40871 40872 40873 40874
## [40537] 40875 40876 40877 40878 40879 40880 40881 40882 40883 40884 40885 40886
## [40549] 40887 40888 40889 40890 40891 40892 40893 40894 40895 40896 40897 40898
## [40561] 40899 40900 40901 40902 40903 40904 40905 40906 40907 40908 40909 40910
## [40573] 40911 40912 40913 40914 40915 40916 40917 40918 40919 40920 40921 40922
## [40585] 40923 40924 40925 40926 40927 40928 40929 40930 40931 40932 40933 40934
## [40597] 40935 40936 40937 40938 40939 40940 40941 40942 40943 40944 40945 40946
## [40609] 40947 40948 40949 40950 40951 40952 40953 40954 40955 40956 40957 40958
## [40621] 40959 40960 40961 40962 40963 40964 40965 40966 40967 40968 40969 40970
## [40633] 40971 40972 40973 40974 40975 40976 40977 40978 40979 40980 40981 40982
## [40645] 40983 40984 40985 40986 40987 40988 40989 40990 40991 40992 40993 40994
## [40657] 40995 40996 40997 40998 40999 41000 41001 41002 41003 41004 41005 41006
## [40669] 41007 41008 41009 41010 41011 41012 41013 41014 41015 41016 41017 41018
## [40681] 41019 41020 41021 41022 41023 41024 41025 41026 41027 41028 41029 41030
## [40693] 41031 41032 41033 41034 41035 41036 41037 41038 41039 41040 41041 41042
## [40705] 41043 41044 41045 41046 41047 41048 41049 41050 41051 41052 41053 41054
## [40717] 41055 41056 41057 41058 41059 41060 41061 41062 41063 41064 41065 41066
## [40729] 41067 41068 41069 41070 41071 41072 41073 41074 41075 41076 41077 41078
## [40741] 41079 41080 41081 41082 41083 41084 41085 41086 41087 41088 41089 41090
## [40753] 41091 41092 41093 41094 41095 41096 41097 41098 41099 41100 41101 41102
## [40765] 41103 41104 41105 41106 41107 41108 41109 41110 41111 41112 41113 41114
## [40777] 41115 41116 41117 41118 41119 41120 41121 41122 41123 41124 41125 41126
## [40789] 41127 41128 41129 41130 41131 41132 41133 41134 41135 41136 41137 41138
## [40801] 41139 41140 41141 41142 41143 41144 41145 41146 41147 41148 41149 41150
## [40813] 41151 41152 41153 41154 41155 41156 41157 41158 41159 41160 41161 41162
## [40825] 41163 41164 41165 41166 41167 41168 41169 41170 41171 41172 41173 41174
## [40837] 41175 41176 41177 41178 41179 41180 41181 41182 41183 41184 41185 41186
## [40849] 41187 41188 41189 41190 41191 41192 41193 41194 41195 41196 41197 41198
## [40861] 41199 41200 41201 41202 41203 41204 41205 41206 41207 41208 41209 41210
## [40873] 41211 41212 41213 41214 41215 41216 41217 41218 41219 41220 41221 41222
## [40885] 41223 41224 41225 41226 41227 41228 41229 41230 41231 41232 41233 41234
## [40897] 41235 41237 41238 41239 41240 41241 41242 41243 41244 41245 41246 41247
## [40909] 41248 41249 41250 41251 41252 41253 41254 41255 41256 41257 41258 41259
## [40921] 41260 41261 41262 41263 41264 41265 41266 41267 41268 41269 41270 41271
## [40933] 41272 41273 41274 41275 41276 41277 41278 41279 41280 41281 41282 41283
## [40945] 41284 41285 41286 41287 41288 41289 41290 41291 41292 41293 41294 41295
## [40957] 41296 41297 41298 41299 41300 41301 41302 41303 41304 41305 41306 41307
## [40969] 41308 41309 41310 41311 41312 41313 41314 41315 41316 41317 41318 41319
## [40981] 41320 41321 41322 41323 41324 41325 41326 41327 41328 41329 41330 41331
## [40993] 41332 41333 41334 41335 41336 41337 41338 41339 41340 41341 41342 41343
## [41005] 41344 41345 41346 41347 41348 41349 41350 41351 41352 41353 41354 41355
## [41017] 41356 41357 41358 41359 41360 41361 41362 41364 41365 41366 41367 41368
## [41029] 41369 41370 41371 41372 41373 41374 41375 41376 41377 41378 41379 41380
## [41041] 41381 41382 41383 41384 41385 41386 41387 41388 41389 41390 41391 41392
## [41053] 41393 41394 41395 41396 41397 41398 41399 41400 41401 41402 41403 41404
## [41065] 41405 41406 41407 41408 41409 41410 41411 41412 41413 41414 41415 41416
## [41077] 41417 41418 41419 41420 41421 41422 41423 41424 41425 41426 41427 41428
## [41089] 41429 41430 41431 41432 41433 41434 41435 41436 41437 41438 41439 41440
## [41101] 41441 41442 41443 41444 41445 41446 41447 41448 41449 41450 41451 41452
## [41113] 41453 41454 41455 41456 41457 41458 41459 41460 41461 41462 41463 41464
## [41125] 41465 41466 41467 41468 41469 41470 41471 41472 41473 41474 41475 41476
## [41137] 41477 41478 41479 41480 41481 41482 41483 41484 41485 41486 41487 41488
## [41149] 41489 41490 41491 41492 41493 41494 41495 41496 41497 41498 41499 41500
## [41161] 41501 41502 41503 41504 41505 41506 41507 41508 41509 41510 41511 41512
## [41173] 41513 41514 41515 41516 41517 41518 41519 41520 41521 41522 41523 41524
## [41185] 41525 41526 41527 41528 41529 41530 41531 41532 41533 41534 41535 41536
## [41197] 41537 41538 41539 41540 41541 41542 41543 41544 41545 41546 41547 41548
## [41209] 41549 41550 41551 41552 41553 41554 41555 41556 41557 41558 41559 41560
## [41221] 41561 41562 41563 41564 41565 41566 41567 41568 41569 41570 41571 41572
## [41233] 41573 41574 41575 41576 41577 41578 41579 41580 41581 41582 41583 41584
## [41245] 41585 41586 41587 41588 41589 41590 41591 41592 41593 41594 41595 41596
## [41257] 41597 41598 41599 41600 41601 41602 41603 41604 41605 41606 41607 41608
## [41269] 41609 41610 41611 41612 41613 41614 41615 41616 41617 41618 41619 41620
## [41281] 41621 41622 41623 41624 41625 41626 41627 41628 41629 41630 41631 41632
## [41293] 41633 41634 41635 41636 41637 41638 41639 41640 41641 41642 41643 41644
## [41305] 41645 41646 41647 41648 41649 41650 41651 41652 41653 41654 41655 41656
## [41317] 41657 41658 41659 41660 41661 41662 41663 41664 41665 41666 41667 41668
## [41329] 41669 41670 41671 41672 41673 41674 41675 41676 41677 41678 41679 41680
## [41341] 41681 41682 41683 41684 41685 41686 41687 41688 41689 41690 41691 41692
## [41353] 41693 41694 41695 41696 41697 41698 41699 41700 41702 41703 41704 41705
## [41365] 41706 41707 41708 41709 41710 41711 41712 41713 41714 41715 41716 41717
## [41377] 41718 41719 41720 41721 41722 41723 41724 41725 41726 41727 41728 41729
## [41389] 41730 41731 41732 41733 41734 41735 41736 41737 41738 41739 41740 41741
## [41401] 41742 41743 41744 41745 41746 41747 41748 41749 41750 41751 41752 41753
## [41413] 41754 41755 41756 41757 41758 41759 41760 41761 41762 41763 41764 41765
## [41425] 41766 41767 41768 41769 41770 41771 41772 41773 41774 41775 41776 41777
## [41437] 41778 41779 41780 41781 41782 41783 41784 41785 41786 41787 41788 41789
## [41449] 41790 41791 41792 41793 41794 41795 41796 41797 41798 41799 41800 41801
## [41461] 41802 41803 41804 41805 41806 41807 41808 41809 41810 41811 41812 41813
## [41473] 41814 41815 41816 41817 41818 41819 41820 41821 41822 41823 41824 41825
## [41485] 41826 41827 41828 41829 41830 41831 41832 41833 41834 41835 41836 41838
## [41497] 41839 41840 41841 41842 41843 41844 41845 41846 41847 41848 41849 41850
## [41509] 41851 41852 41853 41854 41855 41856 41857 41858 41859 41860 41861 41862
## [41521] 41863 41864 41865 41866 41867 41868 41869 41870 41871 41872 41873 41874
## [41533] 41875 41876 41877 41878 41879 41880 41881 41882 41883 41884 41885 41886
## [41545] 41887 41888 41889 41890 41891 41892 41893 41894 41895 41896 41897 41898
## [41557] 41899 41900 41901 41902 41903 41904 41905 41906 41907 41908 41909 41910
## [41569] 41911 41912 41913 41914 41915 41916 41917 41918 41919 41920 41921 41922
## [41581] 41923 41924 41925 41926 41927 41928 41929 41930 41931 41932 41933 41934
## [41593] 41935 41936 41937 41938 41939 41940 41941 41942 41943 41944 41945 41946
## [41605] 41947 41948 41949 41950 41951 41952 41953 41954 41955 41956 41957 41958
## [41617] 41959 41960 41961 41962 41963 41964 41965 41966 41967 41968 41969 41970
## [41629] 41971 41972 41973 41974 41975 41976 41977 41978 41979 41980 41981 41982
## [41641] 41983 41984 41985 41986 41987 41988 41989 41990 41991 41992 41993 41994
## [41653] 41995 41996 41997 41998 41999 42000 42001 42002 42003 42004 42005 42006
## [41665] 42007 42008 42009 42010 42011 42012 42013 42014 42015 42016 42017 42018
## [41677] 42019 42020 42021 42022 42023 42024 42025 42026 42027 42028 42029 42030
## [41689] 42031 42032 42033 42034 42035 42036 42037 42038 42039 42040 42041 42042
## [41701] 42043 42044 42045 42046 42047 42048 42049 42050 42051 42052 42053 42054
## [41713] 42055 42056 42057 42058 42059 42060 42061 42062 42063 42064 42065 42066
## [41725] 42067 42068 42069 42070 42071 42072 42073 42074 42075 42076 42077 42078
## [41737] 42079 42080 42081 42082 42083 42084 42085 42086 42087 42088 42089 42090
## [41749] 42091 42092 42093 42094 42095 42096 42097 42098 42099 42100 42101 42102
## [41761] 42103 42104 42105 42106 42107 42108 42109 42110 42111 42112 42113 42114
## [41773] 42115 42116 42117 42118 42119 42120 42121 42122 42123 42124 42125 42126
## [41785] 42127 42128 42129 42130 42131 42132 42133 42134 42135 42136 42137 42138
## [41797] 42139 42140 42141 42142 42143 42144 42145 42146 42147 42148 42149 42150
## [41809] 42151 42152 42153 42154 42155 42156 42157 42158 42159 42160 42161 42162
## [41821] 42163 42164 42165 42166 42167 42168 42170 42171 42172 42173 42174 42175
## [41833] 42176 42177 42178 42179 42180 42181 42182 42183 42184 42185 42186 42187
## [41845] 42188 42189 42190 42191 42192 42193 42194 42195 42196 42197 42198 42199
## [41857] 42200 42201 42202 42203 42204 42205 42206 42207 42208 42209 42210 42212
## [41869] 42214 42215 42216 42217 42218 42219 42220 42221 42222 42223 42224 42225
## [41881] 42226 42227 42228 42229 42230 42231 42232 42233 42234 42235 42236 42237
## [41893] 42238 42239 42240 42241 42242 42243 42244 42245 42246 42247 42248 42249
## [41905] 42250 42251 42252 42253 42254 42255 42256 42257 42258 42260 42261 42262
## [41917] 42263 42264 42265 42266 42267 42268 42269 42270 42271 42272 42273 42274
## [41929] 42275 42276 42277 42278 42279 42280 42281 42282 42283 42284 42285 42286
## [41941] 42287 42288 42289 42290 42291 42292 42293 42294 42295 42296 42297 42298
## [41953] 42299 42300 42301 42302 42303 42304 42305 42306 42307 42308 42309 42310
## [41965] 42311 42312 42313 42314 42315 42316 42317 42318 42319 42320 42321 42322
## [41977] 42323 42324 42325 42326 42327 42328 42329 42330 42331 42332 42333 42334
## [41989] 42335 42336 42337 42338 42339 42340 42341 42342 42343 42344 42345 42346
## [42001] 42347 42348 42349 42350 42351 42352 42353 42354 42355 42356 42357 42358
## [42013] 42359 42360 42361 42362 42363 42364 42365 42366 42367 42368 42369 42370
## [42025] 42371 42372 42373 42374 42375 42376 42377 42378 42379 42380 42381 42382
## [42037] 42383 42384 42385 42386 42387 42388 42389 42390 42391 42392 42393 42394
## [42049] 42395 42396 42397 42398 42399 42400 42401 42402 42403 42404 42405 42406
## [42061] 42407 42408 42409 42410 42411 42412 42413 42414 42415 42416 42417 42418
## [42073] 42419 42420 42421 42422 42423 42424 42425 42426 42427 42428 42429 42430
## [42085] 42431 42432 42433 42434 42435 42436 42437 42438 42439 42440 42441 42442
## [42097] 42443 42444 42445 42446 42447 42448 42449 42450 42451 42452 42453 42454
## [42109] 42455 42456 42457 42458 42459 42460 42461 42462 42463 42464 42465 42466
## [42121] 42467 42468 42469 42470 42471 42472 42473 42474 42475 42476 42477 42478
## [42133] 42479 42480 42481 42482 42483 42484 42485 42486 42487 42488 42489 42490
## [42145] 42491 42492 42493 42494 42495 42496 42497 42498 42499 42500 42501 42502
## [42157] 42503 42504 42505 42506 42507 42508 42509 42510 42511 42512 42513 42514
## [42169] 42515 42516 42517 42518 42519 42520 42521 42522 42523 42524 42525 42526
## [42181] 42527 42528 42529 42530 42531 42532 42533 42534 42535 42536 42537 42538
## [42193] 42539 42540 42541 42542 42543 42544 42545 42546 42547 42548 42549 42550
## [42205] 42551 42552 42553 42554 42555 42556 42557 42558 42559 42560 42561 42562
## [42217] 42563 42564 42565 42566 42567 42568 42569 42570 42571 42572 42573 42574
## [42229] 42575 42576 42577 42578 42579 42580 42581 42582 42583 42584 42585 42586
## [42241] 42587 42588 42589 42590 42591 42592 42593 42594 42595 42596 42597 42598
## [42253] 42599 42600 42601 42602 42603 42604 42605 42606 42607 42608 42609 42610
## [42265] 42611 42612 42613 42614 42615 42616 42617 42618 42619 42620 42621 42622
## [42277] 42623 42624 42625 42626 42627 42628 42629 42630 42631 42632 42633 42634
## [42289] 42635 42636 42637 42638 42639 42640 42641 42642 42643 42644 42645 42646
## [42301] 42647 42648 42649 42650 42651 42652 42654 42655 42656 42657 42658 42659
## [42313] 42660 42661 42662 42663 42664 42665 42666 42667 42668 42669 42670 42671
## [42325] 42672 42673 42674 42675 42676 42677 42678 42679 42680 42681 42682 42683
## [42337] 42684 42685 42686 42687 42688 42689 42690 42691 42692 42693 42694 42695
## [42349] 42696 42697 42698 42699 42700 42701 42702 42703 42704 42705 42706 42707
## [42361] 42708 42709 42710 42711 42712 42713 42714 42715 42716 42717 42718 42719
## [42373] 42720 42721 42722 42723 42724 42725 42726 42727 42728 42729 42730 42731
## [42385] 42732 42733 42734 42735 42736 42737 42738 42739 42740 42741 42742 42743
## [42397] 42744 42745 42746 42747 42748 42749 42750 42751 42752 42753 42754 42756
## [42409] 42757 42758 42759 42760 42761 42762 42763 42764 42765 42766 42767 42768
## [42421] 42769 42770 42771 42772 42773 42774 42775 42776 42777 42778 42779 42780
## [42433] 42781 42782 42783 42784 42785 42786 42787 42788 42789 42790 42791 42792
## [42445] 42793 42794 42795 42796 42797 42798 42799 42800 42801 42802 42803 42804
## [42457] 42805 42806 42807 42808 42809 42810 42811 42812 42813 42814 42815 42816
## [42469] 42817 42818 42819 42820 42821 42822 42823 42824 42825 42826 42827 42828
## [42481] 42829 42830 42831 42832 42833 42834 42835 42836 42837 42838 42839 42840
## [42493] 42841 42842 42843 42844 42845 42846 42847 42848 42849 42850 42851 42852
## [42505] 42853 42854 42855 42856 42857 42858 42859 42860 42861 42862 42863 42864
## [42517] 42865 42866 42867 42868 42869 42870 42871 42872 42873 42874 42875 42876
## [42529] 42877 42878 42879 42880 42881 42882 42883 42884 42885 42886 42887 42888
## [42541] 42889 42890 42891 42892 42893 42894 42895 42896 42897 42898 42899 42900
## [42553] 42901 42902 42903 42904 42905 42906 42907 42908 42909 42910 42911 42912
## [42565] 42913 42914 42915 42916 42917 42918 42919 42920 42921 42922 42923 42924
## [42577] 42925 42926 42927 42928 42929 42930 42931 42932 42933 42934 42935 42936
## [42589] 42937 42938 42939 42940 42941 42942 42943 42944 42945 42946 42947 42948
## [42601] 42949 42950 42951 42952 42953 42954 42955 42956 42957 42958 42959 42960
## [42613] 42961 42962 42963 42964 42965 42966 42967 42968 42969 42970 42971 42972
## [42625] 42973 42974 42975 42976 42977 42978 42979 42980 42981 42982 42983 42984
## [42637] 42985 42986 42987 42988 42989 42990 42991 42992 42993 42994 42995 42996
## [42649] 42997 42998 42999 43000 43001 43002 43003 43004 43005 43006 43007 43008
## [42661] 43009 43010 43011 43012 43013 43014 43015 43016 43017 43018 43019 43020
## [42673] 43021 43022 43023 43024 43025 43026 43027 43028 43029 43030 43031 43032
## [42685] 43033 43034 43035 43036 43037 43038 43039 43040 43041 43042 43043 43044
## [42697] 43045 43046 43047 43048 43049 43050 43051 43052 43053 43054 43055 43056
## [42709] 43057 43058 43059 43060 43061 43062 43063 43064 43065 43066 43067 43068
## [42721] 43069 43070 43071 43072 43073 43074 43075 43076 43077 43078 43079 43080
## [42733] 43081 43082 43083 43084 43085 43086 43087 43088 43089 43090 43091 43092
## [42745] 43093 43094 43095 43096 43097 43098 43099 43100 43101 43102 43103 43104
## [42757] 43105 43106 43107 43108 43109 43110 43111 43112 43113 43114 43116 43117
## [42769] 43118 43119 43120 43121 43122 43123 43124 43125 43126 43127 43128 43129
## [42781] 43130 43131 43132 43133 43134 43135 43136 43137 43138 43139 43140 43141
## [42793] 43142 43143 43144 43145 43146 43147 43148 43149 43150 43151 43152 43153
## [42805] 43154 43155 43156 43157 43158 43159 43160 43161 43162 43163 43164 43165
## [42817] 43166 43167 43168 43169 43170 43171 43172 43173 43174 43175 43176 43177
## [42829] 43178 43179 43180 43181 43182 43183 43184 43185 43186 43187 43188 43189
## [42841] 43190 43191 43192 43193 43194 43195 43196 43197 43198 43199 43200 43201
## [42853] 43202 43203 43204 43205 43206 43207 43208 43209 43210 43211 43212 43213
## [42865] 43214 43215 43216 43217 43218 43219 43220 43221 43222 43223 43225 43226
## [42877] 43227 43228 43229 43230 43231 43232 43233 43234 43235 43236 43237 43238
## [42889] 43239 43240 43241 43242 43243 43244 43245 43246 43247 43248 43249 43250
## [42901] 43251 43252 43253 43254 43255 43256 43257 43258 43259 43260 43261 43262
## [42913] 43263 43264 43265 43266 43267 43268 43269 43270 43271 43272 43273 43274
## [42925] 43275 43276 43277 43278 43279 43280 43281 43282 43283 43284 43285 43286
## [42937] 43287 43288 43289 43290 43291 43292 43293 43294 43295 43296 43297 43298
## [42949] 43299 43300 43301 43302 43303 43304 43305 43306 43307 43308 43309 43310
## [42961] 43311 43312 43313 43314 43315 43316 43317 43318 43319 43320 43321 43322
## [42973] 43323 43324 43325 43326 43327 43328 43329 43330 43331 43332 43333 43334
## [42985] 43335 43336 43337 43338 43339 43340 43341 43342 43343 43344 43345 43346
## [42997] 43347 43348 43349 43350 43351 43352 43353 43354 43355 43356 43357 43358
## [43009] 43359 43360 43361 43362 43363 43364 43365 43366 43367 43368 43369 43370
## [43021] 43371 43372 43373 43374 43375 43376 43377 43378 43381 43382 43383 43384
## [43033] 43385 43386 43387 43388 43389 43390 43391 43392 43393 43394 43395 43396
## [43045] 43397 43398 43399 43400 43401 43402 43403 43404 43405 43406 43407 43408
## [43057] 43409 43410 43411 43412 43413 43414 43415 43416 43417 43418 43419 43420
## [43069] 43421 43422 43423 43424 43425 43426 43427 43428 43429 43430 43431 43432
## [43081] 43433 43434 43435 43436 43437 43438 43439 43440 43441 43442 43443 43444
## [43093] 43445 43446 43447 43448 43449 43450 43451 43452 43453 43454 43455 43456
## [43105] 43457 43458 43459 43460 43461 43462 43463 43464 43465 43466 43467 43468
## [43117] 43469 43470 43471 43472 43473 43474 43475 43476 43477 43478 43479 43480
## [43129] 43481 43482 43483 43484 43485 43486 43487 43488 43489 43490 43491 43492
## [43141] 43493 43494 43495 43496 43497 43498 43499 43500 43501 43502 43503 43504
## [43153] 43505 43507 43508 43509 43510 43511 43512 43513 43514 43515 43516 43517
## [43165] 43518 43519 43520 43521 43522 43523 43524 43525 43526 43527 43528 43529
## [43177] 43530 43531 43532 43533 43534 43535 43536 43537 43538 43539 43540 43541
## [43189] 43542 43543 43544 43545 43546 43547 43548 43549 43550 43551 43552 43553
## [43201] 43554 43555 43556 43557 43558 43559 43560 43561 43562 43563 43564 43565
## [43213] 43566 43567 43568 43569 43570 43571 43572 43573 43574 43575 43576 43577
## [43225] 43578 43579 43580 43581 43582 43583 43584 43585 43586 43587 43588 43589
## [43237] 43590 43591 43592 43593 43594 43595 43596 43597 43598 43599 43600 43601
## [43249] 43602 43603 43604 43605 43606 43607 43608 43609 43610 43611 43612 43613
## [43261] 43614 43615 43616 43617 43618 43619 43620 43621 43622 43623 43624 43625
## [43273] 43626 43627 43628 43629 43630 43631 43632 43633 43634 43635 43636 43637
## [43285] 43638 43639 43640 43641 43642 43643 43644 43645 43646 43647 43648 43649
## [43297] 43650 43651 43652 43653 43654 43655 43656 43657 43658 43659 43660 43661
## [43309] 43662 43663 43664 43665 43666 43667 43668 43669 43670 43671 43672 43673
## [43321] 43674 43675 43676 43677 43678 43679 43680 43681 43682 43683 43684 43685
## [43333] 43686 43687 43688 43689 43690 43691 43692 43693 43694 43695 43696 43697
## [43345] 43698 43699 43700 43701 43702 43703 43704 43705 43706 43707 43708 43709
## [43357] 43710 43711 43712 43713 43714 43715 43716 43717 43719 43720 43721 43722
## [43369] 43723 43724 43725 43726 43727 43728 43729 43730 43731 43732 43733 43734
## [43381] 43735 43736 43737 43738 43739 43740 43741 43742 43743 43744 43745 43746
## [43393] 43747 43748 43749 43750 43751 43752 43753 43754 43755 43756 43757 43758
## [43405] 43759 43760 43761 43762 43763 43764 43765 43766 43767 43768 43769 43770
## [43417] 43771 43772 43773 43774 43775 43776 43777 43778 43779 43780 43781 43782
## [43429] 43783 43784 43785 43786 43787 43788 43789 43790 43791 43792 43793 43794
## [43441] 43795 43796 43797 43798 43799 43800 43801 43802 43803 43804 43805 43806
## [43453] 43807 43808 43809 43810 43811 43812 43813 43814 43815 43816 43817 43818
## [43465] 43819 43820 43821 43822 43823 43824 43825 43826 43827 43828 43829 43830
## [43477] 43832 43833 43834 43835 43836 43837 43838 43839 43840 43841 43842 43843
## [43489] 43844 43845 43846 43847 43848 43849 43850 43851 43852 43853 43854 43855
## [43501] 43856 43857 43858 43859 43860 43861 43862 43863 43864 43865 43866 43867
## [43513] 43868 43869 43870 43871 43872 43873 43874 43875 43876 43877 43878 43879
## [43525] 43880 43881 43882 43883 43884 43885 43886 43887 43888 43889 43890 43891
## [43537] 43892 43893 43894 43895 43896 43897 43898 43899 43900 43901 43902 43903
## [43549] 43904 43905 43906 43907 43908 43909 43910 43911 43913 43914 43915 43916
## [43561] 43917 43918 43919 43920 43921 43922 43923 43924 43925 43926 43927 43928
## [43573] 43929 43930 43931 43932 43933 43934 43935 43936 43937 43938 43939 43940
## [43585] 43941 43942 43943 43944 43945 43946 43947 43948 43949 43950 43951 43952
## [43597] 43953 43954 43955 43956 43957 43958 43959 43960 43961 43962 43963 43964
## [43609] 43965 43966 43967 43968 43969 43970 43971 43972 43973 43974 43975 43976
## [43621] 43977 43978 43979 43980 43981 43982 43983 43984 43985 43986 43987 43988
## [43633] 43989 43990 43991 43992 43993 43994 43995 43996 43997 43998 43999 44000
## [43645] 44001 44002 44003 44004 44005 44006 44007 44008 44009 44010 44011 44012
## [43657] 44013 44014 44015 44016 44017 44018 44019 44020 44021 44022 44023 44024
## [43669] 44025 44026 44027 44028 44029 44030 44031 44032 44033 44034 44035 44036
## [43681] 44037 44038 44039 44040 44041 44042 44043 44044 44045 44046 44047 44048
## [43693] 44049 44050 44051 44052 44053 44054 44055 44056 44057 44058 44059 44060
## [43705] 44061 44062 44063 44064 44065 44066 44067 44068 44069 44070 44071 44072
## [43717] 44073 44074 44075 44076 44077 44078 44079 44080 44081 44082 44083 44084
## [43729] 44085 44086 44087 44088 44089 44090 44091 44092 44093 44094 44095 44096
## [43741] 44097 44098 44099 44100 44101 44102 44103 44104 44105 44106 44107 44108
## [43753] 44109 44110 44111 44112 44113 44114 44115 44116 44117 44118 44119 44120
## [43765] 44121 44122 44123 44124 44125 44126 44127 44128 44129 44130 44131 44132
## [43777] 44133 44134 44135 44136 44137 44138 44139 44140 44141 44142 44143 44144
## [43789] 44145 44146 44147 44148 44149 44150 44151 44152 44153 44154 44155 44156
## [43801] 44157 44158 44159 44160 44161 44162 44163 44164 44165 44166 44167 44168
## [43813] 44169 44170 44171 44172 44173 44174 44175 44176 44177 44178 44179 44180
## [43825] 44181 44182 44183 44184 44185 44186 44187 44188 44189 44190 44191 44192
## [43837] 44193 44194 44195 44196 44197 44198 44199 44200 44201 44202 44203 44204
## [43849] 44205 44206 44207 44208 44209 44210 44211 44212 44213 44214 44215 44216
## [43861] 44217 44218 44219 44220 44221 44222 44223 44224 44225 44226 44227 44228
## [43873] 44229 44230 44231 44232 44233 44234 44235 44236 44237 44238 44239 44240
## [43885] 44241 44242 44243 44244 44245 44246 44247 44248 44249 44250 44251 44252
## [43897] 44253 44254 44255 44256 44257 44258 44259 44260 44261 44262 44263 44264
## [43909] 44265 44266 44267 44268 44269 44270 44271 44272 44273 44274 44275 44276
## [43921] 44277 44278 44279 44280 44281 44282 44283 44284 44285 44286 44287 44288
## [43933] 44289 44290 44291 44292 44293 44294 44295 44296 44297 44298 44299 44300
## [43945] 44301 44302 44303 44304 44305 44306 44307 44308 44309 44310 44311 44312
## [43957] 44313 44314 44315 44316 44317 44318 44319 44320 44321 44322 44323 44324
## [43969] 44325 44326 44327 44328 44329 44330 44331 44332 44333 44334 44335 44336
## [43981] 44337 44338 44339 44340 44341 44342 44343 44344 44345 44346 44347 44348
## [43993] 44349 44350 44351 44352 44353 44354 44355 44356 44357 44358 44359 44360
## [44005] 44361 44362 44363 44364 44365 44366 44368 44369 44370 44371 44372 44373
## [44017] 44374 44375 44376 44377 44378 44379 44380 44381 44382 44383 44384 44385
## [44029] 44386 44387 44388 44389 44390 44391 44392 44393 44394 44395 44396 44397
## [44041] 44398 44399 44400 44401 44402 44403 44404 44405 44406 44407 44408 44409
## [44053] 44410 44411 44412 44413 44414 44415 44416 44417 44418 44419 44420 44421
## [44065] 44422 44423 44424 44425 44426 44427 44428 44429 44430 44431 44432 44433
## [44077] 44434 44435 44436 44437 44438 44439 44440 44441 44442 44443 44444 44445
## [44089] 44446 44447 44448 44449 44450 44451 44452 44453 44454 44455 44456 44457
## [44101] 44458 44459 44460 44461 44462 44463 44464 44465 44466 44467 44468 44469
## [44113] 44470 44471 44472 44473 44474 44475 44476 44477 44478 44479 44480 44481
## [44125] 44482 44483 44484 44485 44486 44487 44488 44489 44490 44491 44492 44493
## [44137] 44494 44495 44496 44497 44498 44499 44500 44501 44502 44503 44504 44505
## [44149] 44506 44507 44508 44509 44510 44511 44512 44513 44514 44515 44516 44517
## [44161] 44518 44519 44520 44521 44522 44523 44524 44525 44526 44527 44528 44529
## [44173] 44530 44531 44532 44533 44534 44535 44536 44537 44538 44539 44540 44541
## [44185] 44542 44543 44544 44545 44546 44547 44548 44549 44550 44551 44552 44553
## [44197] 44554 44555 44556 44557 44558 44559 44560 44561 44562 44563 44564 44565
## [44209] 44566 44567 44568 44569 44570 44571 44572 44573 44574 44575 44576 44577
## [44221] 44578 44579 44580 44581 44582 44583 44584 44585 44586 44587 44588 44589
## [44233] 44590 44591 44592 44593 44594 44595 44596 44597 44598 44599 44600 44601
## [44245] 44602 44603 44604 44605 44607 44608 44609 44610 44611 44612 44613 44614
## [44257] 44615 44616 44617 44618 44619 44620 44621 44622 44623 44624 44625 44626
## [44269] 44627 44628 44629 44630 44631 44632 44633 44634 44635 44636 44637 44638
## [44281] 44639 44640 44641 44642 44643 44644 44645 44646 44647 44648 44649 44650
## [44293] 44651 44652 44653 44654 44655 44656 44657 44658 44659 44660 44661 44662
## [44305] 44663 44664 44665 44666 44667 44668 44669 44670 44671 44672 44673 44674
## [44317] 44675 44676 44677 44678 44679 44680 44681 44682 44683 44684 44685 44686
## [44329] 44687 44688 44689 44690 44691 44692 44693 44695 44696 44697 44698 44699
## [44341] 44700 44701 44702 44703 44704 44705 44706 44707 44708 44709 44710 44711
## [44353] 44712 44713 44714 44715 44716 44717 44718 44719 44720 44721 44722 44723
## [44365] 44724 44725 44726 44727 44728 44729 44730 44731 44732 44733 44734 44735
## [44377] 44736 44737 44738 44739 44740 44741 44742 44743 44744 44745 44746 44747
## [44389] 44748 44749 44750 44751 44752 44753 44754 44755 44756 44757 44758 44759
## [44401] 44760 44761 44762 44763 44764 44765 44766 44767 44768 44769 44770 44771
## [44413] 44772 44773 44774 44775 44776 44777 44778 44779 44780 44781 44782 44783
## [44425] 44784 44785 44786 44787 44788 44789 44790 44791 44792 44793 44794 44795
## [44437] 44796 44797 44798 44799 44800 44801 44802 44803 44804 44805 44806 44807
## [44449] 44808 44809 44810 44811 44812 44813 44814 44815 44816 44817 44818 44819
## [44461] 44820 44821 44822 44823 44824 44825 44826 44827 44828 44829 44830 44831
## [44473] 44832 44833 44834 44835 44836 44837 44838 44839 44840 44841 44842 44843
## [44485] 44844 44845 44846 44847 44848 44849 44850 44851 44852 44853 44854 44855
## [44497] 44856 44857 44858 44859 44860 44861 44862 44863 44864 44865 44866 44867
## [44509] 44868 44869 44870 44871 44872 44873 44874 44875 44876 44877 44878 44879
## [44521] 44880 44881 44882 44883 44884 44885 44886 44887 44888 44889 44890 44891
## [44533] 44892 44893 44894 44895 44896 44897 44898 44899 44900 44901 44902 44903
## [44545] 44904 44905 44906 44907 44908 44909 44910 44911 44912 44913 44914 44915
## [44557] 44916 44917 44918 44919 44920 44921 44923 44924 44925 44926 44927 44928
## [44569] 44929 44930 44932 44933 44934 44935 44936 44937 44938 44939 44940 44941
## [44581] 44942 44943 44944 44945 44946 44947 44948 44949 44950 44951 44952 44953
## [44593] 44954 44955 44956 44957 44958 44959 44960 44961 44962 44963 44964 44965
## [44605] 44966 44967 44968 44969 44970 44971 44972 44973 44974 44975 44976 44977
## [44617] 44978 44979 44980 44981 44982 44983 44984 44985 44986 44987 44988 44989
## [44629] 44990 44991 44992 44993 44994 44995 44996 44997 44998 44999 45000 45001
## [44641] 45002 45003 45004 45005 45006 45007 45008 45009 45010 45011 45012 45013
## [44653] 45014 45015 45016 45017 45018 45019 45020 45021 45022 45023 45024 45025
## [44665] 45026 45027 45028 45029 45030 45031 45032 45033 45034 45035 45036 45037
## [44677] 45038 45039 45040 45041 45042 45043 45044 45045 45046 45047 45048 45049
## [44689] 45050 45051 45052 45053 45054 45055 45056 45057 45058 45059 45060 45061
## [44701] 45062 45063 45064 45065 45066 45067 45068 45069 45070 45071 45072 45073
## [44713] 45074 45075 45076 45077 45078 45079 45080 45081 45082 45083 45084 45085
## [44725] 45086 45087 45088 45089 45090 45091 45092 45093 45094 45095 45096 45097
## [44737] 45098 45099 45100 45101 45102 45103 45104 45105 45106 45107 45108 45109
## [44749] 45110 45111 45112 45113 45114 45115 45116 45117 45118 45119 45120 45121
## [44761] 45122 45123 45124 45125 45126 45127 45128 45129 45130 45131 45132 45133
## [44773] 45134 45135 45136 45137 45138 45139 45140 45141 45142 45143 45144 45145
## [44785] 45146 45147 45148 45149 45150 45151 45152 45153 45154 45155 45156 45157
## [44797] 45158 45159 45160 45161 45162 45163 45164 45165 45166 45167 45168 45169
## [44809] 45170 45171 45172 45173 45174 45175 45176 45177 45178 45179 45180 45181
## [44821] 45182 45183 45184 45185 45186 45187 45188 45189 45190 45191 45192 45193
## [44833] 45194 45195 45196 45197 45198 45199 45200 45201 45202 45203 45204 45205
## [44845] 45206 45207 45208 45209 45210 45211 45212 45213 45214 45215 45216 45217
## [44857] 45218 45219 45220 45221 45222 45223 45224 45225 45226 45227 45228 45229
## [44869] 45230 45231 45232 45233 45234 45235 45236 45237 45238 45239 45240 45241
## [44881] 45242 45243 45244 45245 45246 45247 45248 45249 45250 45251 45252 45253
## [44893] 45254 45255 45256 45257 45258 45259 45260 45261 45262 45263 45264 45265
## [44905] 45266 45267 45268 45269 45270 45271 45272 45273 45274 45275 45276 45277
## [44917] 45278 45279 45280 45281 45282 45283 45284 45285 45286 45287 45288 45289
## [44929] 45290 45291 45292 45293 45294 45295 45296 45297 45298 45299 45300 45301
## [44941] 45302 45303 45304 45305 45306 45307 45308 45309 45310 45311 45312 45313
## [44953] 45314 45315 45316 45317 45318 45319 45320 45321 45322 45323 45324 45325
## [44965] 45326 45327 45328 45329 45330 45331 45332 45333 45334 45335 45336 45337
## [44977] 45338 45339 45340 45341 45342 45343 45344 45345 45346 45347 45348 45349
## [44989] 45350 45351 45352 45353 45354 45355 45356 45357 45358 45359 45360 45361
## [45001] 45362 45363 45364 45365 45366 45367 45368 45369 45370 45371 45372 45373
## [45013] 45374 45375 45376 45377 45378 45379 45380 45381 45382 45383 45384 45385
## [45025] 45386 45387 45388 45389 45390 45391 45392 45393 45394 45395 45396 45397
## [45037] 45398 45399 45400 45401 45402 45403 45404 45405 45406 45407 45408 45409
## [45049] 45410 45411 45412 45413 45414 45415 45416 45417 45418 45419 45420 45421
## [45061] 45422 45423 45424 45425 45426 45427 45428 45429 45430 45431 45432 45433
## [45073] 45434 45435 45436 45437 45438 45439 45440 45441 45442 45443 45444 45445
## [45085] 45446 45447 45448 45449 45450 45451 45452 45453 45454 45455 45456 45457
## [45097] 45458 45459 45460 45461 45462 45463 45464 45465 45466 45467 45468 45469
## [45109] 45470 45471 45472 45473 45474 45475 45476 45477 45478 45479 45480 45481
## [45121] 45482 45483 45484 45485 45486 45487 45488 45489 45490 45491 45492 45493
## [45133] 45494 45495 45496 45497 45498 45499 45500 45501 45502 45503 45504 45505
## [45145] 45506 45507 45508 45509 45510 45511 45512 45513 45514 45515 45516 45517
## [45157] 45518 45519 45520 45521 45522 45523 45524 45525 45526 45527 45528 45529
## [45169] 45530 45531 45532 45533 45534 45535 45536 45537 45538 45539 45541 45542
## [45181] 45543 45544 45545 45546 45547 45548 45549 45550 45551 45552 45553 45554
## [45193] 45555 45556 45557 45558 45559 45560 45561 45562 45563 45564 45565 45566
## [45205] 45567 45568 45569 45570 45571 45572 45573 45574 45575 45576 45577 45578
## [45217] 45579 45580 45581 45582 45584 45585 45586 45587 45588 45589 45590 45591
## [45229] 45592 45593 45594 45595 45596 45597 45598 45599 45600 45602 45603 45604
## [45241] 45605 45606 45607 45608 45609 45610 45611 45612 45613 45614 45615 45616
## [45253] 45617 45618 45619 45620 45621 45622 45623 45624 45625 45627 45629 45630
## [45265] 45631 45632 45633 45634 45635 45636 45637 45638 45639 45640 45641 45642
## [45277] 45643 45644 45645 45646 45647 45648 45649 45650 45651 45652 45653 45654
## [45289] 45655 45656 45657 45658 45659 45660 45661 45662 45663 45664 45665 45666
## [45301] 45667 45668 45669 45670 45671 45672 45673 45674 45675 45676 45677 45678
## [45313] 45679 45680 45681 45682 45683 45684 45685 45686 45687 45688 45689 45691
## [45325] 45692 45693 45694 45695 45696 45697 45698 45699 45700 45701 45702 45703
## [45337] 45704 45705 45706 45707 45708 45710 45711 45712 45713 45714 45715 45716
## [45349] 45717 45718 45719 45720 45721 45722 45723 45724 45725 45726 45727 45728
## [45361] 45729 45730 45731 45733 45734 45735 45736 45737 45738 45739 45740 45741
## [45373] 45742 45743 45744 45745 45746 45747 45748 45749 45750 45751 45752 45753
## [45385] 45754 45755 45756 45757 45758 45759 45760 45761 45762 45763 45764 45765
## [45397] 45766 45767 45768 45769 45770 45771 45772 45773 45774 45775 45776 45777
## [45409] 45778 45779 45780 45781 45782 45783 45784 45785 45786 45787 45788 45789
## [45421] 45790 45791 45792 45793 45794 45795 45796 45797 45798 45799 45800 45801
## [45433] 45802 45803 45804 45805 45806 45807 45808 45809 45810 45811 45812 45813
## [45445] 45815 45816 45817 45818 45819 45820 45821 45822 45823 45824 45825 45826
## [45457] 45827 45828 45829 45830 45831 45832 45833 45834 45835 45836 45837 45838
## [45469] 45839 45840 45841 45842 45843 45844 45845 45846 45847 45848 45849 45850
## [45481] 45851 45852 45853 45854 45855 45856 45857 45858 45859 45860 45861 45862
## [45493] 45863 45864 45865 45866 45867 45868 45869 45870 45871 45872 45873 45874
## [45505] 45875 45876 45877 45878 45879 45880 45881 45882 45883 45884 45885 45886
## [45517] 45887 45888 45889 45890 45891 45892 45894 45895 45896 45897 45898 45899
## [45529] 45900 45901 45902 45903 45904 45905 45906 45907 45908 45909 45910 45911
## [45541] 45912 45913 45914 45915 45916 45917 45918 45919 45920 45921 45922 45923
## [45553] 45924 45925 45926 45927 45928 45929 45930 45932 45933 45934 45935 45936
## [45565] 45937 45938 45939 45940 45941 45942 45943 45944 45945 45946 45947 45948
## [45577] 45949 45950 45951 45952 45953 45954 45955 45956 45957 45958 45959 45960
## [45589] 45961 45962 45963 45964 45965 45966 45967 45968 45969 45970 45971 45972
## [45601] 45973 45974 45975 45976 45977 45978 45979 45980 45981 45982 45983 45984
## [45613] 45985 45986 45987 45988 45989 45990 45991 45992 45993 45994 45995 45996
## [45625] 45997 45998 45999 46000 46001 46002 46003 46004 46005 46006 46007 46008
## [45637] 46009 46010 46011 46012 46013 46014 46016 46017 46018 46019 46020 46021
## [45649] 46022 46023 46024 46025 46026 46027 46028 46029 46030 46031 46032 46033
## [45661] 46034 46035 46036 46037 46038 46039 46040 46041 46042 46043 46044 46045
## [45673] 46046 46047 46048 46049 46050 46051 46052 46053 46054 46055 46056 46057
## [45685] 46058 46059 46060 46061 46062 46063 46064 46065 46066 46067 46068 46069
## [45697] 46070 46071 46072 46073 46074 46075 46076 46077 46078 46079 46080 46081
## [45709] 46082 46083 46084 46085 46086 46087 46088 46089 46090 46091 46092 46093
## [45721] 46094 46095 46096 46097 46098 46099 46100 46101 46102 46103 46104 46105
## [45733] 46106 46107 46108 46109 46110 46111 46112 46113 46114 46115 46116 46117
## [45745] 46118 46119 46120 46121 46122 46123 46124 46125 46126 46127 46128 46129
## [45757] 46130 46131 46132 46133 46134 46135 46136 46137 46138 46139 46140 46141
## [45769] 46142 46143 46144 46145 46146 46147 46148 46149 46150 46151 46152 46153
## [45781] 46154 46155 46156 46157 46158 46159 46160 46161 46162 46163 46164 46165
## [45793] 46166 46168 46169 46170 46171 46172 46173 46174 46175 46176 46177 46178
## [45805] 46179 46180 46181 46182 46183 46184 46185 46186 46187 46188 46189 46190
## [45817] 46191 46192 46193 46194 46195 46196 46197 46198 46199 46200 46201 46202
## [45829] 46203 46204 46205 46206 46207 46208 46209 46210 46211 46212 46213 46214
## [45841] 46215 46216 46217 46218 46219 46220 46221 46222 46223 46224 46225 46226
## [45853] 46227 46228 46229 46230 46231 46232 46233 46234 46235 46236 46237 46238
## [45865] 46239 46240 46241 46242 46243 46244 46245 46246 46247 46248 46249 46250
## [45877] 46251 46252 46253 46254 46255 46256 46257 46258 46259 46260 46261 46262
## [45889] 46263 46264 46265 46266 46267 46268 46269 46270 46271 46272 46273 46274
## [45901] 46275 46276 46277 46278 46279 46280 46281 46282 46283 46284 46285 46286
## [45913] 46287 46288 46289 46290 46291 46292 46293 46294 46295 46296 46297 46298
## [45925] 46299 46300 46301 46302 46303 46305 46306 46307 46308 46309 46310 46311
## [45937] 46312 46313 46314 46315 46316 46317 46318 46319 46320 46321 46322 46323
## [45949] 46324 46325 46326 46327 46328 46329 46330 46331 46332 46333 46334 46335
## [45961] 46336 46337 46338 46339 46340 46341 46342 46343 46344 46345 46346 46347
## [45973] 46348 46349 46350 46351 46352 46353 46354 46355 46356 46357 46358 46359
## [45985] 46360 46361 46362 46363 46364 46365 46366 46367 46368 46369 46370 46371
## [45997] 46372 46373 46374 46375 46376 46377 46378 46379 46380 46381 46382 46383
## [46009] 46384 46385 46386 46387 46388 46389 46390 46391 46392 46393 46394 46395
## [46021] 46396 46397 46398 46399 46400 46401 46402 46403 46404 46405 46406 46407
## [46033] 46408 46409 46410 46411 46412 46413 46414 46415 46416 46417 46418 46419
## [46045] 46420 46421 46422 46423 46424 46425 46426 46427 46428 46429 46430 46431
## [46057] 46432 46433 46434 46435 46436 46437 46438 46439 46440 46441 46442 46443
## [46069] 46444 46445 46446 46447 46448 46449 46450 46451 46452 46453 46454 46455
## [46081] 46456 46457 46458 46459 46460 46461 46462 46463 46464 46465 46466 46467
## [46093] 46468 46469 46470 46471 46472 46473 46474 46475 46476 46477 46478 46479
## [46105] 46480 46481 46482 46483 46484 46485 46486 46487 46488 46489 46490 46491
## [46117] 46492 46493 46494 46495 46496 46497 46498 46499 46500 46501 46502 46503
## [46129] 46504 46505 46506 46507 46508 46509 46510 46511 46512 46513 46514 46515
## [46141] 46516 46517 46518 46519 46520 46521 46522 46523 46524 46525 46526 46527
## [46153] 46528 46529 46530 46531 46532 46533 46534 46535 46536 46537 46538 46539
## [46165] 46540 46541 46542 46543 46544 46545 46546 46547 46548 46549 46550 46552
## [46177] 46553 46554 46555 46556 46557 46558 46559 46560 46561 46562 46563 46564
## [46189] 46565 46566 46568 46569 46570 46571 46572 46573 46574 46575 46576 46577
## [46201] 46578 46579 46580 46581 46582 46583 46584 46585 46586 46587 46588 46589
## [46213] 46590 46591 46592 46593 46594 46595 46596 46597 46598 46599 46600 46601
## [46225] 46602 46603 46604 46605 46606 46607 46608 46609 46610 46611 46612 46613
## [46237] 46614 46615 46616 46617 46618 46619 46620 46621 46622 46623 46624 46625
## [46249] 46626 46627 46628 46629 46630 46631 46632 46633 46634 46635 46636 46637
## [46261] 46638 46639 46640 46641 46642 46643 46644 46645 46646 46647 46648 46649
## [46273] 46650 46651 46652 46653 46654 46655 46656 46657 46658 46659 46660 46661
## [46285] 46662 46663 46664 46665 46666 46667 46668 46669 46670 46671 46672 46673
## [46297] 46674 46675 46676 46677 46678 46679 46680 46681 46682 46683 46684 46685
## [46309] 46686 46687 46688 46689 46690 46691 46692 46693 46694 46695 46696 46698
## [46321] 46699 46700 46701 46702 46703 46704 46705 46706 46707 46708 46709 46710
## [46333] 46711 46712 46713 46714 46715 46716 46717 46718 46719 46720 46721 46722
## [46345] 46723 46724 46725 46726 46727 46728 46729 46730 46731 46732 46733 46734
## [46357] 46735 46736 46737 46738 46739 46740 46741 46742 46743 46744 46745 46746
## [46369] 46747 46748 46749 46750 46751 46752 46753 46754 46755 46756 46757 46758
## [46381] 46759 46760 46761 46762 46763 46764 46765 46766 46767 46768 46769 46770
## [46393] 46771 46772 46773 46774 46775 46776 46777 46778 46779 46780 46781 46782
## [46405] 46783 46784 46785 46786 46787 46788 46789 46790 46791 46792 46793 46794
## [46417] 46795 46796 46797 46798 46799 46800 46801 46802 46803 46804 46805 46806
## [46429] 46807 46808 46809 46810 46811 46812 46813 46814 46815 46816 46817 46818
## [46441] 46819 46820 46821 46822 46823 46824 46825 46826 46827 46828 46829 46830
## [46453] 46831 46832 46833 46834 46835 46836 46837 46838 46839 46840 46841 46842
## [46465] 46843 46844 46845 46846 46847 46848 46849 46850 46851 46852 46853 46854
## [46477] 46855 46856 46857 46858 46859 46860 46861 46862 46863 46864 46865 46866
## [46489] 46867 46868 46869 46870 46871 46872 46873 46874 46875 46876 46877 46878
## [46501] 46879 46880 46881 46882 46883 46884 46885 46886 46887 46888 46889 46890
## [46513] 46891 46892 46893 46894 46895 46896 46897 46898 46899 46900 46901 46902
## [46525] 46903 46904 46905 46906 46907 46908 46909 46910 46911 46912 46913 46914
## [46537] 46915 46916 46917 46918 46919 46920 46921 46922 46923 46924 46925 46926
## [46549] 46927 46928 46929 46930 46931 46932 46933 46934 46935 46936 46937 46938
## [46561] 46939 46940 46941 46942 46943 46944 46945 46946 46947 46948 46949 46950
## [46573] 46951 46952 46953 46954 46955 46956 46957 46958 46959 46960 46961 46962
## [46585] 46963 46964 46965 46966 46967 46968 46969 46970 46971 46972 46973 46974
## [46597] 46975 46976 46977 46978 46979 46980 46981 46982 46983 46984 46985 46986
## [46609] 46987 46988 46989 46990 46991 46992 46993 46994 46995 46996 46997 46998
## [46621] 46999 47000 47001 47002 47003 47004 47005 47006 47007 47008 47009 47010
## [46633] 47011 47012 47013 47014 47015 47016 47017 47018 47019 47020 47021 47022
## [46645] 47023 47024 47025 47026 47027 47028 47029 47030 47031 47032 47033 47034
## [46657] 47035 47036 47037 47038 47039 47040 47041 47042 47043 47044 47045 47046
## [46669] 47047 47048 47049 47050 47051 47052 47053 47054 47055 47056 47057 47058
## [46681] 47059 47060 47061 47062 47063 47064 47065 47066 47067 47068 47069 47070
## [46693] 47071 47072 47073 47074 47075 47076 47077 47078 47079 47080 47081 47082
## [46705] 47083 47084 47085 47086 47087 47088 47089 47090 47091 47092 47093 47094
## [46717] 47095 47096 47097 47098 47099 47100 47101 47102 47103 47104 47105 47106
## [46729] 47107 47108 47109 47110 47111 47112 47113 47114 47115 47116 47117 47118
## [46741] 47119 47120 47121 47122 47123 47124 47125 47126 47127 47128 47129 47130
## [46753] 47131 47132 47133 47134 47135 47136 47137 47138 47139 47140 47141 47143
## [46765] 47144 47145 47146 47147 47148 47149 47150 47151 47152 47153 47154 47155
## [46777] 47156 47157 47158 47159 47160 47161 47162 47163 47164 47165 47166 47167
## [46789] 47168 47169 47170 47171 47172 47173 47174 47175 47176 47177 47178 47179
## [46801] 47180 47181 47182 47183 47184 47185 47186 47187 47188 47189 47190 47191
## [46813] 47192 47193 47194 47195 47196 47197 47198 47199 47200 47201 47202 47203
## [46825] 47204 47205 47206 47207 47208 47209 47210 47211 47212 47213 47214 47215
## [46837] 47216 47217 47218 47219 47220 47221 47222 47223 47224 47225 47226 47227
## [46849] 47228 47229 47230 47231 47232 47233 47234 47235 47236 47237 47238 47239
## [46861] 47240 47241 47242 47243 47244 47245 47246 47247 47248 47249 47250 47251
## [46873] 47252 47253 47254 47255 47256 47257 47258 47259 47260 47261 47262 47263
## [46885] 47264 47265 47266 47267 47268 47269 47270 47271 47272 47273 47274 47275
## [46897] 47276 47277 47278 47279 47280 47281 47282 47283 47284 47285 47286 47287
## [46909] 47288 47289 47290 47291 47292 47293 47294 47295 47296 47297 47298 47299
## [46921] 47300 47301 47302 47303 47304 47305 47306 47307 47308 47309 47310 47311
## [46933] 47312 47313 47314 47315 47316 47317 47318 47319 47320 47321 47322 47323
## [46945] 47324 47325 47326 47327 47328 47329 47330 47332 47333 47334 47335 47336
## [46957] 47337 47338 47339 47340 47341 47342 47343 47344 47345 47346 47347 47348
## [46969] 47349 47350 47351 47352 47353 47354 47355 47356 47357 47358 47359 47360
## [46981] 47361 47362 47363 47364 47365 47366 47367 47368 47369 47370 47371 47372
## [46993] 47373 47374 47375 47376 47377 47378 47379 47380 47381 47382 47383 47384
## [47005] 47385 47386 47387 47388 47389 47390 47391 47392 47393 47394 47395 47396
## [47017] 47397 47398 47399 47400 47401 47402 47403 47404 47405 47406 47407 47408
## [47029] 47409 47410 47411 47412 47413 47414 47415 47416 47417 47418 47419 47420
## [47041] 47421 47422 47423 47424 47425 47426 47427 47428 47429 47430 47431 47432
## [47053] 47434 47435 47436 47437 47438 47439 47440 47441 47442 47443 47444 47445
## [47065] 47446 47447 47448 47449 47450 47451 47452 47453 47454 47455 47456 47457
## [47077] 47458 47459 47460 47461 47462 47463 47464 47465 47466 47467 47468 47469
## [47089] 47470 47471 47472 47473 47474 47475 47476 47477 47478 47479 47480 47481
## [47101] 47482 47483 47484 47485 47486 47487 47488 47489 47490 47491 47492 47493
## [47113] 47494 47495 47496 47497 47498 47499 47500 47501 47502 47503 47504 47505
## [47125] 47506 47507 47508 47509 47510 47511 47512 47513 47514 47515 47516 47517
## [47137] 47518 47519 47520 47521 47522 47523 47524 47525 47526 47527 47528 47529
## [47149] 47530 47531 47532 47533 47534 47535 47536 47537 47538 47539 47540 47541
## [47161] 47542 47543 47544 47545 47546 47547 47548 47549 47550 47551 47552 47553
## [47173] 47554 47555 47556 47557 47558 47559 47560 47561 47562 47563 47564 47565
## [47185] 47566 47567 47568 47569 47570 47571 47572 47573 47574 47575 47576 47577
## [47197] 47578 47579 47580 47581 47582 47583 47584 47585 47586 47587 47588 47589
## [47209] 47590 47591 47592 47593 47594 47595 47596 47597 47598 47599 47600 47601
## [47221] 47602 47603 47604 47605 47606 47607 47608 47609 47610 47611 47612 47613
## [47233] 47614 47615 47616 47617 47618 47619 47620 47621 47622 47623 47624 47625
## [47245] 47626 47627 47628 47629 47630 47631 47632 47633 47634 47635 47636 47637
## [47257] 47638 47639 47640 47641 47642 47643 47644 47645 47646 47647 47648 47649
## [47269] 47650 47651 47652 47653 47654 47655 47656 47657 47658 47659 47660 47661
## [47281] 47662 47663 47664 47665 47666 47667 47668 47669 47670 47671 47672 47673
## [47293] 47674 47675 47676 47677 47678 47679 47680 47681 47682 47683 47684 47685
## [47305] 47686 47687 47688 47689 47690 47691 47692 47693 47694 47695 47696 47697
## [47317] 47698 47699 47700 47701 47702 47703 47704 47705 47706 47707 47708 47709
## [47329] 47710 47711 47712 47713 47714 47715 47716 47717 47718 47719 47720 47721
## [47341] 47722 47723 47724 47725 47726 47727 47728 47729 47730 47731 47732 47733
## [47353] 47734 47735 47736 47737 47738 47739 47740 47741 47742 47743 47744 47745
## [47365] 47746 47747 47748 47749 47750 47751 47752 47753 47754 47755 47756 47757
## [47377] 47758 47759 47760 47761 47762 47763 47764 47765 47766 47767 47768 47769
## [47389] 47770 47771 47772 47773 47774 47775 47776 47777 47778 47779 47780 47781
## [47401] 47782 47783 47784 47785 47786 47787 47788 47789 47790 47791 47792 47793
## [47413] 47794 47795 47796 47797 47798 47799 47800 47801 47802 47803 47804 47805
## [47425] 47806 47807 47808 47809 47810 47811 47812 47813 47814 47815 47816 47817
## [47437] 47818 47819 47820 47821 47822 47823 47824 47825 47826 47827 47828 47829
## [47449] 47830 47831 47832 47833 47834 47835 47836 47837 47838 47839 47840 47841
## [47461] 47842 47843 47844 47845 47846 47847 47848 47849 47850 47851 47852 47853
## [47473] 47854 47855 47856 47857 47858 47859 47860 47861 47862 47863 47864 47865
## [47485] 47866 47867 47868 47869 47870 47871 47872 47873 47874 47875 47876 47877
## [47497] 47878 47879 47880 47881 47882 47883 47884 47885 47886 47887 47888 47889
## [47509] 47890 47891 47892 47893 47894 47895 47896 47897 47898 47899 47900 47901
## [47521] 47902 47903 47904 47905 47906 47907 47908 47909 47910 47911 47912 47913
## [47533] 47914 47915 47916 47917 47918 47919 47920 47921 47922 47923 47924 47925
## [47545] 47926 47927 47928 47929 47930 47931 47932 47933 47934 47935 47936 47937
## [47557] 47938 47939 47940 47941 47942 47943 47944 47945 47946 47947 47948 47949
## [47569] 47950 47951 47952 47953 47954 47955 47956 47957 47958 47959 47960 47961
## [47581] 47962 47963 47964 47965 47966 47967 47968 47969 47970 47971 47972 47973
## [47593] 47974 47975 47976 47977 47978 47979 47980 47981 47982 47983 47984 47985
## [47605] 47986 47987 47988 47989 47990 47991 47992 47993 47994 47995 47996 47997
## [47617] 47998 47999 48000 48001 48002 48003 48004 48005 48006 48007 48008 48009
## [47629] 48010 48011 48012 48013 48014 48015 48016 48017 48018 48019 48020 48021
## [47641] 48022 48023 48024 48025 48026 48027 48028 48029 48030 48031 48032 48033
## [47653] 48034 48035 48036 48037 48038 48039 48040 48041 48042 48043 48044 48045
## [47665] 48046 48047 48048 48049 48050 48051 48052 48053 48054 48055 48056 48057
## [47677] 48058 48059 48060 48061 48062 48063 48064 48065 48066 48067 48068 48069
## [47689] 48070 48071 48072 48073 48074 48075 48076 48077 48078 48079 48080 48081
## [47701] 48082 48083 48084 48085 48086 48087 48088 48089 48090 48091 48092 48093
## [47713] 48094 48095 48096 48097 48098 48099 48100 48101 48102 48103 48104 48105
## [47725] 48106 48107 48108 48109 48110 48111 48112 48113 48114 48115 48116 48117
## [47737] 48118 48119 48120 48121 48122 48123 48124 48125 48126 48127 48128 48129
## [47749] 48130 48131 48132 48133 48134 48135 48136 48137 48138 48139 48140 48141
## [47761] 48142 48143 48144 48145 48146 48147 48148 48149 48150 48151 48152 48153
## [47773] 48154 48155 48156 48157 48158 48159 48160 48161 48162 48163 48164 48165
## [47785] 48166 48167 48168 48169 48170 48171 48172 48173 48174 48175 48176 48177
## [47797] 48178 48179 48180 48181 48182 48183 48184 48185 48186 48187 48188 48189
## [47809] 48190 48191 48192 48193 48194 48195 48196 48197 48198 48199 48200 48201
## [47821] 48202 48203 48204 48205 48206 48207 48208 48209 48210 48211 48212 48213
## [47833] 48214 48215 48216 48217 48218 48219 48220 48221 48222 48223 48224 48225
## [47845] 48226 48227 48228 48229 48230 48231 48232 48233 48234 48235 48236 48237
## [47857] 48238 48239 48240 48241 48242 48243 48244 48245 48246 48247 48248 48249
## [47869] 48250 48251 48252 48253 48254 48255 48256 48257 48258 48259 48260 48261
## [47881] 48262 48263 48264 48265 48266 48267 48268 48269 48270 48271 48272 48273
## [47893] 48274 48275 48276 48277 48278 48279 48280 48281 48282 48283 48284 48285
## [47905] 48286 48287 48288 48289 48290 48291 48292 48293 48294 48295 48296 48297
## [47917] 48298 48299 48300 48301 48302 48303 48304 48305 48306 48307 48308 48309
## [47929] 48310 48311 48312 48313 48314 48315 48316 48317 48318 48319 48320 48321
## [47941] 48322 48323 48324 48325 48326 48327 48328 48329 48330 48331 48332 48333
## [47953] 48334 48335 48336 48337 48338 48339 48340 48341 48342 48343 48344 48345
## [47965] 48346 48347 48348 48349 48350 48351 48352 48353 48354 48355 48356 48357
## [47977] 48358 48359 48360 48361 48362 48363 48364 48365 48366 48367 48368 48369
## [47989] 48370 48371 48372 48373 48374 48376 48377 48378 48379 48380 48381 48382
## [48001] 48383 48384 48385 48386 48387 48388 48390 48391 48392 48393 48394 48395
## [48013] 48396 48397 48398 48399 48400 48401 48402 48403 48404 48405 48406 48407
## [48025] 48408 48409 48410 48411 48412 48413 48414 48415 48416 48417 48418 48419
## [48037] 48420 48421 48422 48423 48424 48425 48426 48427 48428 48429 48430 48431
## [48049] 48432 48433 48434 48435 48436 48437 48438 48439 48440 48441 48442 48443
## [48061] 48444 48445 48446 48447 48448 48449 48450 48451 48452 48453 48454 48455
## [48073] 48456 48457 48458 48459 48460 48461 48462 48463 48464 48465 48466 48467
## [48085] 48468 48469 48470 48471 48472 48473 48474 48475 48476 48477 48478 48479
## [48097] 48480 48481 48482 48483 48484 48485 48486 48487 48488 48489 48490 48492
## [48109] 48493 48494 48495 48496 48497 48498 48499 48500 48501 48502 48503 48504
## [48121] 48505 48506 48507 48508 48509 48510 48511 48512 48513 48514 48515 48516
## [48133] 48517 48518 48519 48520 48521 48522 48523 48524 48525 48526 48527 48528
## [48145] 48529 48530 48531 48532 48533 48534 48535 48536 48537 48538 48540 48541
## [48157] 48542 48543 48545 48547 48548 48549 48550 48551 48552 48553 48554 48555
## [48169] 48556 48557 48558 48559 48560 48561 48562 48563 48564 48565 48566 48567
## [48181] 48568 48569 48570 48571 48572 48573 48574 48575 48576 48577 48578 48579
## [48193] 48580 48581 48582 48583 48584 48585 48586 48587 48588 48589 48590 48591
## [48205] 48592 48593 48594 48595 48596 48597 48598 48599 48600 48601 48602 48603
## [48217] 48604 48605 48606 48607 48608 48609 48610 48611 48612 48613 48614 48615
## [48229] 48616 48617 48618 48619 48620 48621 48622 48623 48624 48625 48626 48627
## [48241] 48628 48629 48630 48631 48632 48633 48634 48635 48636 48637 48638 48639
## [48253] 48640 48641 48642 48643 48644 48645 48646 48647 48648 48650 48652 48653
## [48265] 48654 48655 48656 48657 48658 48659 48660 48661 48662 48663 48664 48665
## [48277] 48666 48667 48668 48669 48670 48671 48672 48673 48674 48675 48676 48677
## [48289] 48678 48679 48680 48681 48682 48683 48684 48685 48686 48687 48688 48689
## [48301] 48690 48691 48692 48693 48694 48695 48696 48697 48698 48699 48700 48701
## [48313] 48702 48703 48704 48705 48706 48707 48708 48709 48710 48711 48712 48713
## [48325] 48714 48715 48716 48717 48718 48719 48720 48721 48722 48723 48724 48725
## [48337] 48726 48727 48728 48729 48730 48731 48732 48733 48734 48735 48736 48737
## [48349] 48738 48739 48740 48741 48742 48743 48744 48745 48746 48747 48748 48749
## [48361] 48750 48751 48752 48753 48754 48755 48756 48757 48758 48759 48760 48761
## [48373] 48762 48763 48764 48765 48766 48767 48768 48769 48770 48771 48772 48773
## [48385] 48774 48775 48776 48777 48778 48779 48780 48781 48782 48783 48784 48785
## [48397] 48786 48787 48788 48789 48790 48791 48792 48793 48794 48795 48796 48797
## [48409] 48798 48799 48800 48801 48802 48803 48804 48805 48806 48807 48808 48809
## [48421] 48810 48811 48812 48813 48814 48815 48816 48817 48818 48819 48820 48821
## [48433] 48822 48823 48824 48825 48826 48827 48828 48829 48830 48831 48832 48833
## [48445] 48835 48836 48837 48838 48839 48840 48841 48842 48843 48844 48845 48846
## [48457] 48847 48848 48849 48850 48851 48852 48853 48854 48855 48856 48857 48858
## [48469] 48859 48860 48861 48862 48863 48864 48865 48866 48867 48868 48869 48870
## [48481] 48871 48872 48873 48874 48875 48876 48877 48878 48879 48880 48881 48882
## [48493] 48883 48884 48885 48886 48887 48888 48889 48890 48891 48892 48893 48894
## [48505] 48895 48896 48897 48898 48899 48900 48901 48902 48903 48904 48905 48906
## [48517] 48907 48908 48909 48910 48911 48912 48913 48914 48915 48916 48917 48918
## [48529] 48919 48920 48921 48922 48923 48924 48925 48926 48927 48928 48929 48930
## [48541] 48931 48932 48933 48934 48935 48936 48937 48938 48939 48940 48941 48942
## [48553] 48943 48944 48945 48946 48947 48948 48949 48950 48951 48952 48953 48954
## [48565] 48955 48956 48957 48958 48959 48960 48961 48962 48963 48964 48965 48966
## [48577] 48967 48968 48969 48970 48971 48972 48973 48974 48975 48976 48977 48978
## [48589] 48979 48980 48981 48982 48983 48984 48985 48986 48987 48988 48989 48990
## [48601] 48991 48992 48993 48994 48995 48996 48998 48999 49000 49001 49002 49003
## [48613] 49004 49005 49006 49007 49008 49009 49010 49012 49013 49014 49016 49017
## [48625] 49018 49019 49020 49021 49022 49023 49024 49025 49026 49027 49028 49029
## [48637] 49030 49031 49032 49033 49035 49036 49037 49038 49039 49040 49041 49042
## [48649] 49043 49044 49045 49046 49047 49048 49049 49050 49051 49052 49053 49054
## [48661] 49055 49056 49057 49058 49059 49060 49061 49062 49063 49064 49065 49066
## [48673] 49067 49068 49069 49070 49071 49072 49073 49074 49075 49076 49077 49078
## [48685] 49079 49080 49081 49082 49083 49084 49085 49086 49087 49088 49089 49090
## [48697] 49091 49092 49093 49094 49095 49096 49097 49098 49099 49100 49101 49102
## [48709] 49103 49104 49105 49106 49107 49108 49109 49110 49111 49112 49113 49114
## [48721] 49115 49116 49117 49118 49119 49121 49122 49123 49124 49125 49126 49127
## [48733] 49128 49129 49130 49131 49132 49133 49134 49135 49136 49137 49138 49139
## [48745] 49140 49141 49142 49143 49144 49145 49146 49147 49148 49149 49150 49151
## [48757] 49152 49153 49154 49155 49156 49157 49158 49159 49160 49161 49162 49163
## [48769] 49164 49165 49166 49167 49168 49169 49170 49171 49172 49173 49174 49175
## [48781] 49176 49177 49178 49179 49180 49181 49182 49183 49184 49185 49186 49187
## [48793] 49188 49189 49190 49191 49192 49193 49194 49195 49196 49197 49198 49199
## [48805] 49200 49201 49202 49203 49204 49205 49206 49207 49208 49209 49210 49211
## [48817] 49212 49213 49214 49215 49216 49217 49218 49219 49220 49221 49222 49223
## [48829] 49224 49225 49226 49227 49228 49229 49230 49231 49232 49233 49234 49235
## [48841] 49236 49237 49238 49239 49240 49241 49242 49243 49244 49245 49246 49247
## [48853] 49248 49249 49250 49251 49252 49253 49254 49255 49256 49257 49258 49259
## [48865] 49260 49261 49262 49263 49264 49265 49266 49267 49268 49269 49270 49271
## [48877] 49272 49273 49274 49275 49276 49277 49278 49279 49280 49281 49282 49283
## [48889] 49284 49285 49286 49287 49288 49289 49290 49291 49292 49293 49294 49295
## [48901] 49296 49297 49298 49299 49300 49301 49302 49303 49304 49305 49306 49307
## [48913] 49308 49309 49310 49311 49312 49313 49314 49315 49316 49317 49318 49319
## [48925] 49320 49321 49322 49323 49324 49325 49326 49327 49328 49329 49330 49331
## [48937] 49332 49333 49334 49335 49336 49337 49338 49339 49341 49342 49343 49344
## [48949] 49345 49346 49347 49348 49349 49350 49351 49352 49353 49354 49355 49356
## [48961] 49357 49358 49359 49360 49361 49362 49363 49364 49365 49366 49367 49368
## [48973] 49369 49370 49371 49372 49373 49375 49376 49377 49378 49379 49380 49381
## [48985] 49382 49383 49384 49385 49386 49387 49388 49389 49390 49391 49392 49393
## [48997] 49394 49395 49396 49397 49398 49399 49400 49401 49402 49403 49404 49405
## [49009] 49406 49407 49408 49409 49410 49411 49413 49414 49415 49416 49417 49418
## [49021] 49419 49420 49421 49422 49423 49424 49425 49426 49427 49428 49429 49430
## [49033] 49431 49432 49433 49434 49435 49436 49437 49438 49439 49440 49441 49442
## [49045] 49443 49444 49445 49446 49447 49448 49449 49450 49451 49452 49453 49454
## [49057] 49455 49456 49457 49458 49459 49460 49461 49462 49463 49464 49465 49466
## [49069] 49467 49468 49469 49470 49471 49472 49473 49474 49475 49476 49477 49478
## [49081] 49479 49480 49481 49482 49483 49484 49485 49486 49487 49488 49489 49490
## [49093] 49491 49492 49493 49494 49495 49496 49497 49498 49499 49500 49501 49502
## [49105] 49503 49504 49505 49506 49507 49508 49509 49510 49511 49512 49513 49514
## [49117] 49515 49516 49517 49518 49519 49520 49521 49522 49523 49524 49525 49526
## [49129] 49527 49528 49530 49531 49532 49533 49534 49535 49536 49538 49539 49540
## [49141] 49542 49543 49544 49545 49546 49547 49548 49549 49550 49552 49553 49554
## [49153] 49555 49556 49557 49558 49559 49560 49561 49562 49563 49564 49565 49566
## [49165] 49567 49568 49569 49570 49571 49572 49573 49574 49575 49576 49577 49578
## [49177] 49579 49580 49581 49582 49583 49584 49585 49586 49587 49588 49589 49590
## [49189] 49591 49592 49593 49594 49595 49596 49597 49598 49599 49600 49601 49602
## [49201] 49603 49604 49605 49606 49607 49608 49609 49610 49611 49612 49613 49614
## [49213] 49615 49616 49617 49618 49619 49620 49621 49622 49623 49624 49625 49626
## [49225] 49627 49628 49629 49630 49631 49632 49633 49634 49635 49636 49637 49638
## [49237] 49639 49640 49641 49642 49643 49644 49645 49646 49647 49648 49649 49650
## [49249] 49651 49652 49653 49654 49655 49656 49657 49658 49659 49660 49661 49662
## [49261] 49663 49664 49665 49666 49667 49669 49670 49671 49672 49673 49674 49675
## [49273] 49676 49677 49678 49679 49680 49681 49682 49683 49684 49685 49686 49687
## [49285] 49688 49689 49690 49691 49692 49693 49694 49695 49696 49697 49698 49699
## [49297] 49700 49701 49702 49703 49704 49705 49706 49707 49708 49709 49710 49711
## [49309] 49712 49713 49714 49715 49716 49717 49718 49719 49720 49721 49722 49723
## [49321] 49724 49725 49726 49727 49728 49729 49730 49731 49732 49733 49734 49735
## [49333] 49736 49737 49738 49739 49740 49741 49742 49743 49744 49745 49746 49747
## [49345] 49748 49749 49750 49751 49752 49753 49754 49755 49756 49757 49758 49759
## [49357] 49760 49761 49762 49765 49766 49767 49768 49769 49771 49772 49773 49774
## [49369] 49775 49776 49778 49779 49780 49781 49782 49783 49784 49785 49786 49787
## [49381] 49788 49789 49790 49791 49792 49793 49794 49795 49796 49797 49798 49799
## [49393] 49800 49801 49802 49803 49804 49805 49806 49807 49808 49809 49810 49811
## [49405] 49812 49813 49814 49815 49816 49817 49818 49819 49820 49821 49822 49823
## [49417] 49824 49825 49826 49827 49828 49829 49830 49831 49832 49833 49834 49835
## [49429] 49836 49837 49838 49839 49840 49841 49842 49843 49844 49845 49846 49847
## [49441] 49848 49849 49850 49851 49852 49853 49854 49855 49856 49857 49858 49859
## [49453] 49860 49861 49862 49863 49864 49865 49866 49867 49868 49869 49870 49871
## [49465] 49872 49873 49874 49875 49876 49877 49878 49879 49880 49881 49884 49886
## [49477] 49887 49888 49890 49891 49892 49893 49894 49895 49896 49897 49898 49899
## [49489] 49900 49901 49902 49903 49904 49905 49906 49907 49908 49909 49910 49911
## [49501] 49912 49913 49914 49915 49916 49917 49918 49919 49920 49921 49922 49923
## [49513] 49924 49925 49926 49927 49928 49929 49930 49931 49933 49934 49935 49936
## [49525] 49937 49938 49939 49940 49941 49942 49943 49944 49945 49946 49947 49948
## [49537] 49949 49950 49951 49952 49953 49954 49955 49956 49957 49959 49960 49961
## [49549] 49962 49963 49964 49965 49966 49967 49968 49969 49970 49971 49972 49973
## [49561] 49974 49975 49976 49977 49978 49979 49980 49981 49982 49983 49984 49985
## [49573] 49986 49987 49988 49989 49990 49991 49992 49993 49994 49995 49996 49997
## [49585] 49998 49999 50000 50001 50002 50003 50004 50005 50007 50008 50009 50010
## [49597] 50011 50012 50013 50014 50015 50016 50017 50018 50019 50020 50021 50022
## [49609] 50023 50024 50025 50026 50027 50028 50029 50030 50031 50032 50033 50034
## [49621] 50035 50036 50037 50038 50039 50040 50041 50042 50043 50044 50045 50046
## [49633] 50047 50048 50049 50050 50051 50052 50053 50054 50055 50056 50057 50058
## [49645] 50059 50060 50061 50062 50063 50064 50065 50066 50067 50068 50069 50070
## [49657] 50071 50072 50073 50074 50075 50076 50077 50078 50079 50080 50081 50082
## [49669] 50083 50084 50085 50086 50087 50088 50089 50090 50091 50092 50093 50094
## [49681] 50095 50096 50097 50098 50099 50100 50101 50102 50103 50104 50105 50106
## [49693] 50107 50108 50109 50110 50111 50112 50113 50114 50115 50116 50117 50118
## [49705] 50119 50120 50121 50122 50123 50124 50125 50126 50127 50128 50129 50130
## [49717] 50131 50132 50133 50134 50135 50136 50138 50139 50140 50141 50142 50143
## [49729] 50144 50145 50146 50147 50148 50149 50150 50151 50152 50153 50154 50155
## [49741] 50156 50157 50158 50159 50160 50161 50162 50163 50164 50165 50166 50167
## [49753] 50168 50169 50170 50171 50172 50173 50174 50175 50176 50177 50178 50179
## [49765] 50180 50181 50182 50183 50184 50185 50186 50187 50188 50189 50190 50191
## [49777] 50192 50193 50194 50195 50196 50197 50198 50199 50200 50201 50202 50203
## [49789] 50204 50205 50206 50207 50208 50209 50210 50211 50212 50213 50214 50215
## [49801] 50216 50217 50218 50219 50220 50221 50222 50223 50224 50225 50226 50227
## [49813] 50228 50229 50230 50231 50232 50233 50234 50235 50236 50237 50238 50239
## [49825] 50240 50241 50242 50243 50244 50245 50246 50247 50248 50249 50250 50251
## [49837] 50252 50253 50254 50255 50256 50257 50258 50259 50260 50261 50262 50263
## [49849] 50264 50265 50266 50267 50268 50269 50270 50271 50272 50273 50274 50275
## [49861] 50276 50277 50278 50279 50280 50281 50282 50283 50284 50285 50286 50287
## [49873] 50288 50289 50290 50291 50292 50293 50294 50295 50296 50297 50298 50299
## [49885] 50300 50301 50302 50303 50304 50305 50306 50307 50308 50309 50310 50311
## [49897] 50312 50313 50314 50315 50316 50317 50318 50319 50320 50321 50322 50323
## [49909] 50324 50325 50326 50327 50328 50329 50330 50331 50332 50333 50334 50335
## [49921] 50336 50337 50338 50339 50340 50341 50342 50343 50344 50345 50346 50347
## [49933] 50348 50349 50350 50351 50352 50353 50354 50355 50356 50357 50358 50359
## [49945] 50360 50361 50362 50363 50364 50365 50366 50367 50368 50369 50370 50371
## [49957] 50372 50373 50374 50375 50376 50377 50378 50379 50380 50381 50382 50383
## [49969] 50384 50385 50386 50387 50388 50389 50390 50391 50392 50393 50394 50395
## [49981] 50396 50397 50398 50399 50400 50401 50402 50404 50405 50406 50407 50408
## [49993] 50409 50410 50411 50412 50413 50414 50415 50416 50417 50418 50419 50420
## [50005] 50421 50422 50423 50424 50425 50426 50427 50428 50429 50430 50431 50432
## [50017] 50433 50434 50435 50436 50437 50438 50439 50440 50441 50442 50443 50444
## [50029] 50445 50446 50447 50448 50449 50450 50451 50452 50453 50454 50455 50456
## [50041] 50457 50458 50459 50460 50461 50462 50463 50464 50465 50466 50467 50468
## [50053] 50469 50470 50471 50472 50473 50474 50475 50476 50477 50478 50479 50480
## [50065] 50481 50482 50483 50484 50485 50486 50487 50488 50489 50490 50491 50492
## [50077] 50493 50494 50495 50496 50497 50498 50499 50500 50501 50502 50503 50504
## [50089] 50505 50506 50507 50508 50509 50510 50511 50512 50513 50514 50515 50516
## [50101] 50517 50518 50519 50520 50521 50522 50523 50524 50525 50526 50527 50528
## [50113] 50529 50530 50531 50532 50533 50534 50535 50536 50537 50538 50539 50540
## [50125] 50541 50542 50543 50544 50545 50546 50547 50548 50549 50550 50551 50552
## [50137] 50553 50554 50555 50556 50557 50558 50559 50560 50561 50562 50563 50564
## [50149] 50565 50566 50567 50568 50569 50571 50572 50573 50574 50575 50577 50578
## [50161] 50579 50580 50581 50582 50583 50584 50585 50586 50587 50588 50589 50590
## [50173] 50591 50592 50593 50594 50595 50596 50597 50598 50599 50600 50601 50602
## [50185] 50603 50604 50605 50606 50607 50608 50609 50610 50611 50612 50613 50614
## [50197] 50615 50616 50617 50618 50619 50620 50621 50622 50624 50625 50626 50627
## [50209] 50628 50629 50630 50631 50632 50633 50634 50635 50636 50637 50638 50639
## [50221] 50640 50641 50643 50644 50645 50646 50648 50649 50650 50651 50652 50653
## [50233] 50654 50655 50656 50657 50658 50659 50660 50661 50662 50663 50664 50665
## [50245] 50666 50667 50668 50669 50670 50671 50672 50673 50674 50675 50676 50677
## [50257] 50678 50679 50680 50681 50682 50683 50685 50686 50687 50688 50689 50690
## [50269] 50691 50692 50693 50694 50695 50696 50697 50698 50699 50700 50701 50702
## [50281] 50703 50704 50705 50706 50707 50708 50709 50710 50711 50712 50713 50714
## [50293] 50715 50716 50717 50718 50719 50720 50721 50722 50723 50724 50725 50726
## [50305] 50727 50728 50729 50730 50731 50732 50733 50734 50735 50736 50737 50738
## [50317] 50739 50740 50741 50742 50743 50744 50745 50746 50747 50748 50749 50750
## [50329] 50751 50752 50753 50754 50755 50756 50757 50758 50759 50760 50761 50762
## [50341] 50763 50764 50765 50766 50767 50768 50769 50770 50771 50772 50773 50774
## [50353] 50775 50776 50777 50778 50779 50780 50781 50782 50783 50784 50785 50786
## [50365] 50787 50788 50789 50790 50791 50792 50793 50794 50795 50796 50797 50798
## [50377] 50799 50800 50801 50802 50803 50804 50805 50806 50807 50808 50809 50810
## [50389] 50811 50813 50814 50815 50816 50817 50818 50820 50821 50822 50823 50824
## [50401] 50825 50826 50827 50828 50829 50830 50831 50832 50833 50834 50835 50836
## [50413] 50837 50838 50839 50840 50841 50842 50843 50844 50845 50846 50847 50848
## [50425] 50849 50850 50851 50852 50854 50855 50856 50857 50858 50859 50860 50861
## [50437] 50862 50863 50864 50865 50866 50867 50868 50869 50870 50871 50872 50873
## [50449] 50874 50875 50876 50877 50878 50879 50880 50881 50882 50883 50884 50885
## [50461] 50886 50887 50888 50889 50890 50891 50892 50893 50894 50895 50896 50897
## [50473] 50898 50899 50900 50901 50902 50903 50904 50905 50906 50907 50908 50909
## [50485] 50910 50911 50912 50913 50914 50915 50916 50917 50918 50919 50920 50921
## [50497] 50922 50923 50924 50925 50926 50927 50928 50929 50930 50931 50932 50933
## [50509] 50934 50935 50936 50937 50938 50939 50940 50941 50942 50943 50944 50945
## [50521] 50946 50947 50948 50949 50950 50951 50952 50953 50954 50955 50956 50957
## [50533] 50958 50959 50960 50961 50962 50964 50965 50966 50967 50968 50969 50970
## [50545] 50971 50972 50973 50974 50975 50976 50977 50978 50979 50980 50981 50982
## [50557] 50983 50984 50985 50986 50987 50988 50989 50990 50991 50992 50993 50994
## [50569] 50995 50996 50997 50999 51000 51001 51002 51003 51004 51005 51006 51007
## [50581] 51008 51009 51010 51011 51012 51013 51014 51015 51016 51017 51018 51019
## [50593] 51020 51021 51022 51023 51024 51025 51026 51027 51028 51029 51030 51031
## [50605] 51032 51033 51034 51035 51036 51037 51038 51039 51040 51041 51042 51043
## [50617] 51045 51046 51047 51048 51049 51050 51051 51052 51053 51054 51055 51056
## [50629] 51057 51058 51060 51061 51062 51063 51064 51065 51066 51067 51068 51069
## [50641] 51070 51071 51072 51073 51074 51075 51076 51077 51078 51079 51080 51081
## [50653] 51082 51083 51084 51085 51087 51088 51089 51090 51091 51092 51093 51094
## [50665] 51095 51096 51097 51098 51099 51100 51101 51102 51103 51104 51105 51106
## [50677] 51107 51108 51110 51111 51112 51113 51114 51115 51116 51117 51119 51120
## [50689] 51121 51122 51123 51124 51125 51126 51127 51128 51129 51130 51131 51132
## [50701] 51133 51134 51135 51136 51137 51138 51139 51140 51141 51142 51143 51144
## [50713] 51145 51146 51147 51148 51149 51150 51151 51152 51153 51154 51155 51156
## [50725] 51157 51159 51160 51161 51162 51164 51165 51166 51167 51168 51169 51170
## [50737] 51171 51172 51173 51174 51175 51176 51177 51178 51179 51180 51181 51182
## [50749] 51183 51184 51185 51186 51187 51188 51189 51190 51191 51192 51193 51194
## [50761] 51195 51196 51197 51198 51199 51200 51201 51202 51203 51204 51205 51206
## [50773] 51207 51208 51209 51210 51212 51213 51214 51215 51216 51217 51218 51219
## [50785] 51220 51221 51222 51223 51224 51226 51227 51228 51229 51230 51231 51232
## [50797] 51233 51234 51235 51236 51237 51238 51239 51240 51241 51242 51243 51244
## [50809] 51245 51246 51247 51248 51249 51250 51251 51252 51253 51254 51256 51257
## [50821] 51258 51259 51260 51261 51262 51263 51264 51265 51266 51267 51268 51269
## [50833] 51270 51272 51273 51274 51275 51276 51277 51278 51279 51280 51281 51282
## [50845] 51283 51284 51285 51286 51287 51288 51289 51290 51291 51292 51293 51294
## [50857] 51295 51296 51297 51298 51299 51300 51301 51302 51303 51304 51305 51306
## [50869] 51307 51308 51309 51310 51311 51312 51313 51314 51315 51319 51320 51321
## [50881] 51322 51323 51324 51325 51326 51327 51328 51329 51330 51331 51332 51333
## [50893] 51334 51335 51336 51337 51338 51339 51340 51341 51342 51343 51344 51345
## [50905] 51346 51347 51348 51349 51350 51351 51352 51353 51354 51355 51356 51357
## [50917] 51358 51359 51361 51362 51363 51364 51365 51366 51367 51368 51369 51370
## [50929] 51371 51372 51373 51374 51375 51376 51377 51378 51379 51380 51381 51382
## [50941] 51383 51384 51385 51386 51387 51388 51389 51390 51391 51392 51393 51394
## [50953] 51395 51396 51397 51398 51400 51401 51402 51403 51404 51405 51406 51407
## [50965] 51408 51409 51410 51411 51412 51413 51414 51415 51416 51417 51418 51419
## [50977] 51420 51421 51422 51423 51424 51425 51426 51427 51428 51429 51430 51431
## [50989] 51432 51433 51434 51435 51436 51437 51438 51439 51440 51441 51442 51443
## [51001] 51444 51445 51446 51447 51448 51449 51450 51451 51452 51453 51454 51455
## [51013] 51456 51457 51458 51459 51460 51461 51462 51463 51464 51465 51466 51467
## [51025] 51468 51469 51470 51471 51472 51473 51474 51475 51476 51477 51478 51479
## [51037] 51480 51481 51482 51483 51484 51485 51486 51487 51488 51489 51490 51491
## [51049] 51492 51493 51494 51495 51496 51497 51498 51499 51500 51501 51502 51503
## [51061] 51504 51505 51506 51507 51508 51509 51510 51511 51512 51513 51514 51515
## [51073] 51516 51517 51518 51519 51520 51521 51522 51523 51524 51525 51526 51527
## [51085] 51528 51529 51530 51531 51532 51533 51534 51535 51536 51537 51538 51539
## [51097] 51540 51541 51542 51543 51544 51545 51546 51547 51548 51549 51550 51551
## [51109] 51552 51553 51554 51555 51556 51557 51558 51559 51560 51561 51562 51563
## [51121] 51564 51565 51566 51567 51568 51569 51570 51571 51572 51573 51574 51575
## [51133] 51576 51577 51578 51579 51580 51581 51582 51583 51584 51585 51586 51587
## [51145] 51588 51589 51590 51591 51592 51593 51594 51595 51596 51598 51599 51600
## [51157] 51601 51602 51603 51604 51605 51606 51607 51608 51609 51610 51611 51612
## [51169] 51613 51614 51615 51616 51617 51618 51619 51620 51621 51622 51623 51624
## [51181] 51625 51626 51627 51628 51629 51630 51631 51632 51633 51634 51635 51636
## [51193] 51637 51638 51639 51640 51641 51642 51643 51644 51645 51646 51647 51648
## [51205] 51649 51650 51651 51652 51653 51654 51655 51656 51657 51658 51659 51660
## [51217] 51661 51662 51663 51664 51665 51666 51667 51668 51669 51670 51671 51672
## [51229] 51673 51674 51675 51676 51677 51678 51679 51680 51681 51682 51683 51684
## [51241] 51685 51686 51687 51688 51689 51690 51691 51692 51693 51694 51695 51696
## [51253] 51697 51698 51699 51700 51701 51702 51703 51704 51707 51708 51709 51710
## [51265] 51711 51712 51713 51714 51715 51716 51717 51718 51719 51720 51721 51722
## [51277] 51724 51725 51726 51727 51728 51729 51730 51731 51732 51733 51734 51735
## [51289] 51736 51737 51738 51739 51740 51741 51742 51743 51744 51745 51746 51747
## [51301] 51748 51749 51750 51751 51752 51753 51754 51755 51756 51757 51758 51759
## [51313] 51760 51761 51762 51763 51764 51765 51766 51767 51770 51771 51772 51773
## [51325] 51774 51775 51776 51777 51778 51779 51780 51781 51782 51783 51784 51785
## [51337] 51786 51787 51788 51789 51790 51791 51792 51793 51794 51795 51796 51797
## [51349] 51798 51799 51800 51801 51803 51804 51805 51806 51807 51808 51809 51810
## [51361] 51811 51812 51813 51814 51815 51816 51817 51818 51819 51820 51821 51822
## [51373] 51823 51824 51825 51826 51827 51828 51829 51830 51831 51832 51833 51834
## [51385] 51835 51836 51838 51839 51840 51841 51842 51844 51845 51846 51847 51848
## [51397] 51849 51850 51851 51852 51853 51854 51855 51856 51857 51858 51859 51860
## [51409] 51863 51864 51865 51866 51867 51868 51869 51871 51872 51873 51874 51875
## [51421] 51876 51877 51878 51879 51880 51881 51882 51883 51886 51887 51889 51890
## [51433] 51891 51892 51893 51894 51895 51896 51897 51898 51899 51902 51903 51904
## [51445] 51905 51907 51910 51911 51912 51913 51914 51915 51916 51917 51918 51919
## [51457] 51920 51922 51923 51924 51925 51926 51927 51928 51929 51930 51931 51932
## [51469] 51933 51934 51935 51936 51937 51938 51939 51940 51941 51943 51944 51945
## [51481] 51947 51948 51949 51950 51951 51952 51953 51954 51956 51957 51958 51959
## [51493] 51960 51961 51962 51963 51964 51965 51966 51967 51968 51969 51970 51971
## [51505] 51972 51974 51975 51978 51979 51980 51981 51982 51983 51986 51987 51988
## [51517] 51991 51992 51993 51995 51996 51997 51998 51999 52000 52001 52002 52003
## [51529] 52004 52005 52006 52007 52008 52009 52010 52011 52012 52013 52014 52015
## [51541] 52016 52017 52018 52019 52020 52021 52022 52023 52024 52025 52026 52027
## [51553] 52028 52029 52030 52031 52032 52033 52034 52037 52038 52040 52044 52045
## [51565] 52047 52049 52050 52051 52052 52053 52054 52055 52056 52057 52058 52059
## [51577] 52060 52061 52062 52063 52064 52065 52066 52067 52068 52069 52070 52071
## [51589] 52072 52073 52074 52075 52076 52077 52078 52079 52080 52081 52082 52083
## [51601] 52084 52085 52086 52087 52088 52089 52090 52091 52092 52093 52094 52095
## [51613] 52096 52097 52098 52099 52100 52101 52102 52103 52104 52105 52106 52107
## [51625] 52108 52109 52110 52111 52112 52113 52114 52115 52116 52117 52118 52119
## [51637] 52120 52121 52122 52123 52124 52125 52126 52127 52128 52129 52130 52131
## [51649] 52132 52133 52134 52135 52136 52137 52138 52139 52140 52141 52142 52143
## [51661] 52144 52145 52147 52148 52149 52150 52151 52152 52153 52154 52155 52156
## [51673] 52157 52158 52159 52161 52162 52164 52165 52166 52167 52168 52169 52170
## [51685] 52171 52172 52173 52174 52175 52176 52177 52178 52179 52180 52181 52182
## [51697] 52183 52184 52185 52186 52187 52188 52189 52190 52191 52192 52193 52194
## [51709] 52195 52196 52197 52198 52199 52200 52201 52202 52203 52204 52205 52206
## [51721] 52207 52208 52209 52210 52211 52212 52213 52214 52215 52217 52218 52219
## [51733] 52220 52221 52222 52223 52224 52225 52226 52227 52228 52229 52230 52231
## [51745] 52232 52233 52234 52235 52236 52237 52238 52239 52240 52242 52243 52244
## [51757] 52245 52246 52247 52248 52249 52250 52251 52252 52253 52254 52255 52256
## [51769] 52257 52258 52259 52260 52262 52264 52265 52266 52267 52268 52269 52270
## [51781] 52271 52272 52273 52274 52275 52276 52277 52279 52281 52282 52285 52286
## [51793] 52287 52288 52289 52290 52291 52292 52293 52294 52295 52296 52297 52298
## [51805] 52299 52301 52302 52303 52304 52305 52306 52307 52308 52309 52310 52311
## [51817] 52312 52313 52314 52315 52316 52317 52318 52319 52320 52321 52322 52323
## [51829] 52324 52325 52326 52327 52328 52329 52330 52331 52332 52333 52334 52335
## [51841] 52336 52337 52339 52341 52342 52343 52344 52345 52346 52347 52348 52349
## [51853] 52350 52351 52352 52353 52354 52355 52356 52357 52358 52359 52360 52361
## [51865] 52362 52363 52364 52365 52366 52367 52368 52369 52370 52371 52372 52373
## [51877] 52374 52375 52376 52377 52378 52379 52380 52381 52382 52383 52384 52385
## [51889] 52386 52387 52388 52389 52390 52391 52392 52393 52394 52395 52396 52397
## [51901] 52398 52399 52400 52401 52402 52403 52404 52405 52406 52407 52408 52409
## [51913] 52410 52411 52412 52413 52414 52415 52416 52417 52418 52419 52420 52421
## [51925] 52422 52423 52424 52425 52426 52427 52428 52429 52430 52431 52432 52433
## [51937] 52434 52435 52436 52437 52438 52439 52440 52441 52442 52443 52444 52445
## [51949] 52446 52447 52448 52449 52450 52451 52452 52453 52454 52455 52456 52457
## [51961] 52458 52459 52460 52461 52462 52463 52464 52465 52467 52468 52469 52470
## [51973] 52471 52472 52473 52474 52475 52476 52477 52478 52479 52480 52481 52482
## [51985] 52483 52484 52485 52486 52487 52488 52489 52490 52491 52492 52493 52495
## [51997] 52496 52497 52498 52499 52500 52501 52502 52503 52504 52505 52506 52507
## [52009] 52508 52509 52510 52511 52512 52513 52515 52516 52517 52518 52519 52520
## [52021] 52521 52522 52523 52524 52525 52526 52527 52528 52529 52530 52531 52532
## [52033] 52533 52534 52535 52536 52537 52538 52539 52540 52541 52542 52543 52544
## [52045] 52545 52546 52547 52548 52549 52550 52551 52552 52553 52554 52555 52556
## [52057] 52557 52558 52559 52560 52561 52562 52563 52564 52565 52566 52567 52568
## [52069] 52569 52570 52571 52572 52573 52574 52575 52576 52577 52578 52579 52580
## [52081] 52581 52582 52583 52584 52585 52586 52587 52588 52589 52590 52591 52592
## [52093] 52593 52594 52595 52596 52597 52598 52599 52600 52601 52602 52603 52604
## [52105] 52605 52606 52607 52608 52609 52610 52611 52612 52613 52614 52615 52616
## [52117] 52617 52618 52619 52620 52621 52622 52623 52624 52625 52626 52627 52628
## [52129] 52629 52630 52631 52632 52633 52634 52636 52637 52638 52639 52640 52641
## [52141] 52642 52643 52644 52645 52646 52647 52648 52649 52650 52651 52652 52653
## [52153] 52654 52655 52656 52657 52658 52659 52660 52661 52662 52663 52664 52666
## [52165] 52667 52668 52669 52670 52671 52672 52673 52674 52675 52676 52677 52678
## [52177] 52680 52681 52682 52683 52684 52685 52686 52687 52688 52689 52690 52691
## [52189] 52692 52693 52694 52695 52696 52697 52698 52699 52700 52701 52702 52703
## [52201] 52704 52705 52706 52707 52708 52709 52710 52711 52712 52713 52714 52715
## [52213] 52716 52717 52718 52719 52720 52721 52722 52723 52724 52725 52726 52727
## [52225] 52728 52729 52730 52731 52732 52733 52734 52735 52736 52737 52738 52739
## [52237] 52740 52741 52742 52743 52744 52745 52746 52747 52748 52749 52750 52751
## [52249] 52752 52753 52754 52755 52756 52757 52758 52759 52760 52761 52762 52763
## [52261] 52764 52765 52766 52767 52768 52769 52770 52771 52773 52774 52775 52776
## [52273] 52777 52778 52779 52780 52781 52782 52783 52784 52786 52787 52788 52789
## [52285] 52790 52791 52792 52794 52795 52796 52798 52799 52800 52801 52802 52803
## [52297] 52804 52805 52806 52807 52808 52809 52810 52811 52813 52814 52815 52816
## [52309] 52817 52818 52819 52820 52821 52822 52823 52824 52825 52826 52827 52828
## [52321] 52829 52830 52831 52832 52833 52834 52835 52836 52837 52838 52839 52840
## [52333] 52841 52842 52843 52844 52845 52846 52847 52848 52849 52850 52851 52852
## [52345] 52853 52854 52855 52856 52857 52858 52859 52860 52861 52862 52863 52864
## [52357] 52865 52866 52867 52868 52869 52870 52871 52872 52873 52874 52875 52876
## [52369] 52877 52879 52880 52881 52882 52883 52884 52885 52886 52887 52888 52889
## [52381] 52890 52891 52892 52893 52894 52895 52896 52897 52898 52899 52900 52901
## [52393] 52902 52903 52904 52905 52906 52908 52909 52910 52911 52912 52913 52914
## [52405] 52915 52916 52917 52918 52919 52920 52921 52922 52923 52924 52925 52926
## [52417] 52927 52928 52929 52930 52931 52932 52933 52934 52935 52936 52937 52938
## [52429] 52939 52940 52941 52942 52943 52944 52945 52946 52947 52948 52949 52950
## [52441] 52951 52952 52953 52954 52955 52956 52957 52958 52959 52960 52961 52962
## [52453] 52963 52964 52965 52967 52968 52969 52970 52971 52972 52973 52974 52975
## [52465] 52976 52977 52978 52979 52980 52981 52982 52983 52984 52985 52986 52987
## [52477] 52988 52989 52990 52991 52992 52993 52994 52995 52996 52997 52998 52999
## [52489] 53000 53001 53003 53004 53005 53006 53007 53008 53009 53010 53011 53012
## [52501] 53013 53014 53015 53016 53017 53018 53019 53020 53021 53022 53023 53024
## [52513] 53025 53026 53027 53028 53029 53030 53031 53032 53033 53034 53035 53036
## [52525] 53037 53038 53039 53040 53041 53042 53043 53044 53045 53046 53047 53048
## [52537] 53049 53050 53051 53052 53053 53054 53055 53056 53057 53058 53059 53060
## [52549] 53061 53062 53063 53064 53065 53066 53067 53068 53069 53070 53071 53072
## [52561] 53073 53074 53075 53076 53077 53078 53079 53080 53081 53082 53083 53084
## [52573] 53085 53086 53087 53088 53089 53090 53091 53092 53093 53094 53095 53096
## [52585] 53097 53098 53099 53100 53101 53102 53103 53104 53105 53106 53107 53108
## [52597] 53109 53110 53111 53112 53113 53114 53115 53116 53117 53118 53119 53121
## [52609] 53122 53123 53124 53125 53126 53127 53128 53129 53130 53131 53132 53133
## [52621] 53134 53135 53136 53137 53138 53139 53140 53141 53142 53143 53144 53145
## [52633] 53146 53147 53148 53149 53150 53151 53152 53153 53154 53155 53156 53157
## [52645] 53158 53159 53160 53162 53163 53164 53165 53166 53167 53168 53169 53170
## [52657] 53171 53172 53173 53174 53175 53176 53177 53178 53179 53180 53181 53182
## [52669] 53183 53184 53185 53186 53187 53188 53189 53190 53191 53192 53193 53194
## [52681] 53195 53196 53197 53198 53199 53200 53201 53202 53203 53204 53205 53206
## [52693] 53207 53208 53209 53210 53211 53212 53213 53214 53215 53216 53217 53219
## [52705] 53220 53221 53222 53223 53224 53225 53226 53227 53228 53229 53230 53231
## [52717] 53232 53233 53234 53235 53236 53237 53238 53239 53240 53241 53242 53243
## [52729] 53244 53245 53246 53247 53249 53250 53251 53252 53253 53254 53255 53256
## [52741] 53257 53258 53259 53260 53261 53263 53264 53265 53266 53267 53268 53269
## [52753] 53270 53271 53272 53273 53274 53275 53276 53277 53278 53279 53280 53281
## [52765] 53282 53283 53284 53285 53286 53287 53288 53289 53290 53291 53293 53294
## [52777] 53295 53296 53297 53298 53299 53300 53301 53302 53303 53304 53305 53306
## [52789] 53307 53308 53309 53310 53311 53312 53313 53314 53315 53316 53317 53318
## [52801] 53319 53320 53321 53322 53323 53324 53325 53326 53327 53328 53329 53330
## [52813] 53331 53332 53333 53334 53335 53336 53337 53338 53340 53341 53342 53343
## [52825] 53344 53345 53346 53347 53348 53349 53350 53351 53352 53353 53354 53355
## [52837] 53356 53357 53358 53359 53360 53361 53362 53363 53364 53365 53366 53367
## [52849] 53368 53369 53370 53371 53372 53373 53374 53375 53376 53377 53378 53379
## [52861] 53380 53381 53382 53384 53385 53386 53387 53388 53389 53390 53391 53392
## [52873] 53393 53394 53395 53396 53397 53398 53399 53400 53401 53402 53403 53404
## [52885] 53405 53406 53407 53408 53409 53410 53411 53412 53413 53414 53415 53417
## [52897] 53418 53419 53420 53421 53422 53424 53425 53427 53428 53429 53430 53431
## [52909] 53432 53433 53434 53435 53436 53437 53438 53439 53440 53441 53442 53443
## [52921] 53444 53445 53446 53447 53448 53449 53450 53451 53452 53453 53454 53456
## [52933] 53458 53459 53460 53461 53462 53463 53464 53465 53466 53467 53468 53469
## [52945] 53470 53471 53472 53473 53474 53475 53476 53477 53479 53480 53481 53482
## [52957] 53483 53484 53485 53486 53487 53488 53489 53490 53491 53492 53493 53494
## [52969] 53495 53496 53497 53498 53499 53500 53501 53502 53503 53504 53505 53506
## [52981] 53507 53508 53509 53510 53511 53512 53513 53514 53515 53516 53517 53518
## [52993] 53519 53520 53521 53522 53523 53524 53525 53526 53527 53528 53529 53530
## [53005] 53531 53532 53533 53535 53536 53537 53538 53539 53540 53541 53542 53543
## [53017] 53544 53545 53546 53547 53548 53549 53550 53551 53552 53553 53554 53555
## [53029] 53556 53557 53558 53559 53560 53561 53562 53563 53564 53565 53566 53567
## [53041] 53568 53569 53570 53571 53572 53573 53574 53575 53576 53577 53578 53579
## [53053] 53581 53582 53583 53584 53585 53587 53588 53589 53590 53591 53592 53593
## [53065] 53594 53595 53596 53597 53598 53599 53600 53601 53602 53603 53604 53606
## [53077] 53607 53608 53609 53610 53611 53612 53613 53614 53615 53616 53617 53618
## [53089] 53619 53620 53621 53622 53623 53624 53625 53626 53627 53628 53629 53630
## [53101] 53631 53632 53633 53634 53635 53636 53637 53638 53639 53640 53641 53642
## [53113] 53643 53644 53645 53646 53647 53649 53652 53653 53654 53655 53656 53657
## [53125] 53658 53659 53660 53661 53662 53663 53664 53665 53666 53667 53668 53669
## [53137] 53670 53671 53672 53673 53674 53675 53676 53677 53678 53679 53680 53681
## [53149] 53682 53683 53684 53685 53686 53687 53688 53689 53690 53691 53692 53694
## [53161] 53695 53696 53697 53698 53699 53700 53703 53704 53705 53706 53707 53708
## [53173] 53709 53710 53711 53712 53713 53714 53715 53716 53717 53718 53719 53720
## [53185] 53721 53722 53723 53724 53725 53726 53727 53728 53729 53730 53731 53732
## [53197] 53733 53734 53735 53736 53737 53738 53739 53740 53741 53742 53743 53744
## [53209] 53745 53746 53747 53749 53750 53751 53752 53753 53754 53755 53756 53757
## [53221] 53758 53759 53760 53761 53762 53763 53764 53765 53766 53767 53768 53769
## [53233] 53770 53771 53772 53773 53774 53775 53776 53777 53778 53779 53780 53781
## [53245] 53782 53783 53784 53785 53786 53787 53788 53789 53790 53791 53792 53793
## [53257] 53794 53795 53796 53797 53798 53799 53800 53801 53802 53803 53804 53805
## [53269] 53806 53807 53808 53809 53810 53811 53812 53814 53815 53816 53817 53818
## [53281] 53819 53820 53821 53823 53824 53825 53826 53830 53831 53832 53833 53834
## [53293] 53835 53836 53837 53838 53839 53840 53841 53842 53843 53844 53845 53846
## [53305] 53847 53848 53849 53850 53851 53852 53853 53854 53855 53856 53857 53858
## [53317] 53859 53860 53861 53862 53863 53864 53865 53866 53867 53868 53869 53870
## [53329] 53871 53872 53873 53874 53876 53877 53878 53879 53880 53881 53882 53883
## [53341] 53884 53885 53886 53887 53890 53891 53892 53893 53894 53895 53896 53897
## [53353] 53898 53899 53900 53901 53902 53903 53904 53905 53906 53907 53908 53909
## [53365] 53910 53911 53912 53913 53914 53915 53916 53917 53918 53919 53920 53921
## [53377] 53922 53923 53924 53925 53926 53927 53928 53929 53930 53931 53932 53933
## [53389] 53934 53935 53936 53937 53938 53939 53940 53941 53942 53943 53944 53945
## [53401] 53946 53947 53948 53949 53950 53951 53952 53953 53954 53955 53956 53957
## [53413] 53958 53959 53960 53961 53962 53963 53964 53965 53966 53967 53968 53969
## [53425] 53970 53971 53973 53974 53975 53976 53977 53978 53979 53980 53982 53983
## [53437] 53984 53985 53987 53988 53989 53990 53991 53992 53993 53995 53996 53997
## [53449] 53998 53999 54000 54001 54002 54003 54004 54005 54006 54007 54008 54009
## [53461] 54010 54011 54012 54013 54014 54015 54016 54017 54018 54019 54020 54021
## [53473] 54022 54023 54024 54025 54026 54027 54028 54029 54030 54031 54032 54033
## [53485] 54034 54035 54036 54037 54038 54039 54040 54041 54042 54043 54044 54045
## [53497] 54046 54047 54048 54049 54050 54051 54052 54053 54054 54055 54057 54058
## [53509] 54059 54060 54061 54062 54063 54064 54065 54066 54067 54068 54069 54070
## [53521] 54071 54072 54073 54074 54075 54076 54077 54078 54079 54080 54081 54082
## [53533] 54083 54084 54085 54086 54087 54088 54089 54090 54091 54092 54093 54094
## [53545] 54095 54096 54097 54098 54099 54100 54101 54102 54103 54104 54105 54106
## [53557] 54107 54108 54109 54110 54112 54113 54114 54115 54116 54117 54118 54119
## [53569] 54120 54121 54122 54123 54124 54125 54126 54127 54128 54129 54130 54131
## [53581] 54132 54133 54134 54135 54136 54137 54138 54139 54140 54141 54142 54143
## [53593] 54144 54145 54146 54147 54149 54150 54151 54152 54153 54154 54155 54156
## [53605] 54157 54158 54159 54161 54162 54163 54164 54167 54168 54169 54170 54171
## [53617] 54172 54173 54174 54175 54176 54178 54179 54180 54181 54182 54183 54184
## [53629] 54185 54186 54188 54190 54191 54192 54193 54194 54195 54197 54198 54199
## [53641] 54200 54204 54205 54206 54207 54208 54209 54210 54212 54216 54218 54219
## [53653] 54221 54222 54223 54224 54225 54226 54227 54228 54229 54230 54231 54232
## [53665] 54233 54234 54235 54236 54238 54239 54240 54241 54242 54243 54244 54245
## [53677] 54246 54247 54248 54249 54250 54251 54252 54253 54254 54255 54256 54257
## [53689] 54258 54259 54261 54262 54264 54266 54267 54268 54269 54270 54271 54272
## [53701] 54273 54274 54275 54276 54277 54278 54279 54280 54281 54282 54283 54284
## [53713] 54285 54286 54287 54288 54289 54290 54291 54292 54293 54294 54295 54296
## [53725] 54297 54298 54299 54300 54301 54302 54303 54304 54305 54306 54307 54308
## [53737] 54309 54310 54311 54312 54313 54314 54315 54316 54317 54318 54319 54320
## [53749] 54321 54322 54323 54324 54325 54326 54327 54328 54329 54330 54331 54332
## [53761] 54333 54334 54335 54336 54337 54338 54339 54340 54341 54342 54343 54344
## [53773] 54346 54347 54348 54349 54350 54352 54353 54357 54358 54359 54360 54361
## [53785] 54362 54363 54364 54365 54366 54367 54369 54370 54371 54372 54373 54375
## [53797] 54376 54377 54378 54379 54380 54381 54382 54383 54384 54385 54386 54387
## [53809] 54388 54389 54390 54391 54392 54393 54394 54395 54396 54397 54398 54399
## [53821] 54400 54401 54402 54403 54404 54405 54406 54407 54408 54409 54410 54411
## [53833] 54412 54413 54414 54415 54416 54417 54418 54420 54421 54422 54423 54424
## [53845] 54425 54426 54427 54428 54429 54430 54431 54433 54434 54435 54436 54437
## [53857] 54438 54439 54440 54441 54442 54443 54444 54445 54446 54447 54448 54449
## [53869] 54450 54451 54452 54453 54454 54455 54456 54457 54458 54459 54460 54461
## [53881] 54462 54463 54464 54465 54466 54467 54468 54469 54470 54471 54472 54473
## [53893] 54474 54475 54476 54477 54478 54479 54480 54481 54482 54483 54484 54485
## [53905] 54486 54487 54488 54490 54492 54494 54495 54496 54497 54498 54499 54500
## [53917] 54501 54502 54503 54504 54505 54506 54507 54508 54509 54510 54511 54513
## [53929] 54514 54515 54516 54518 54519 54520 54521 54522 54523 54524 54525 54526
## [53941] 54527 54528 54529 54530 54531 54532 54533 54534 54535 54536 54537 54539
## [53953] 54540 54541 54542 54543 54544 54545 54546 54547 54548 54549 54550 54551
## [53965] 54552 54553 54554 54555 54556 54557 54558 54559 54560 54561 54562 54563
## [53977] 54564 54565 54566 54567 54568 54569 54570 54571 54572 54573 54574 54575
## [53989] 54576 54578 54579 54581 54582 54583 54584 54585 54586 54587 54588 54589
## [54001] 54590 54591 54592 54593 54594 54595 54596 54597 54598 54599 54600 54601
## [54013] 54602 54603 54604 54605 54606 54607 54608 54609 54610 54611 54612 54613
## [54025] 54614 54615 54616 54617 54618 54619 54620 54621 54622 54623 54624 54625
## [54037] 54626 54627 54628 54629 54630 54631 54632 54633 54634 54635 54636 54637
## [54049] 54638 54639 54640 54641 54642 54643 54644 54645 54646 54647 54648 54649
## [54061] 54650 54651 54652 54653 54654 54655 54656 54657 54658 54659 54660 54661
## [54073] 54662 54663 54664 54665 54666 54667 54668 54669 54670 54671 54672 54673
## [54085] 54674 54675 54676 54677 54678 54679 54680 54681 54682 54683 54684 54685
## [54097] 54686 54687 54688 54689 54690 54692 54693 54694 54695 54696 54698 54699
## [54109] 54702 54703 54707 54708 54709 54710 54711 54712 54713 54714 54715 54716
## [54121] 54717 54718 54719 54720 54721 54722 54723 54724 54725 54726 54727 54728
## [54133] 54729 54730 54732 54733 54734 54735 54736 54737 54738 54739 54740 54741
## [54145] 54742 54743 54744 54745 54746 54747 54748 54749 54750 54751 54752 54753
## [54157] 54754 54755 54756 54757 54758 54759 54760 54761 54762 54763 54764 54765
## [54169] 54766 54767 54768 54769 54770 54771 54772 54773 54774 54775 54776 54777
## [54181] 54778 54779 54780 54781 54783 54784 54785 54786 54787 54789 54790 54791
## [54193] 54792 54793 54794 54795 54796 54797 54798 54799 54800 54801 54802 54803
## [54205] 54804 54805 54806 54807 54808 54809 54812 54813 54814 54815 54816 54817
## [54217] 54818 54819 54820 54821 54822 54823 54824 54825 54826 54827 54828 54829
## [54229] 54830 54831 54833 54834 54835 54836 54838 54839 54840 54841 54842 54843
## [54241] 54844 54845 54846 54847 54848 54849 54850 54851 54852 54854 54855 54856
## [54253] 54857 54858 54859 54861 54862 54863 54864 54865 54866 54867 54869 54870
## [54265] 54871 54872 54873 54874 54875 54876 54877 54878 54879 54880 54881 54882
## [54277] 54883 54884 54885 54886 54887 54888 54889 54890 54891 54892 54893 54894
## [54289] 54895 54896 54897 54898 54899 54901 54902 54903 54904 54907 54908 54909
## [54301] 54910 54911 54912 54913 54914 54915 54916 54918 54919 54920 54921 54922
## [54313] 54923 54924 54925 54926 54927 54928 54929 54930 54931 54932 54933 54934
## [54325] 54935 54936 54937 54939 54940 54942 54943 54946 54947 54948 54949 54952
## [54337] 54953 54954 54955 54956 54957 54958 54959 54960 54961 54962 54963 54964
## [54349] 54965 54966 54967 54968 54969 54970 54971 54972 54973 54974 54975 54976
## [54361] 54977 54978 54979 54980 54981 54982 54984 54985 54986 54987 54988 54989
## [54373] 54990 54991 54992 54993 54994 54995 54996 54997 54998 54999 55000 55001
## [54385] 55002 55003 55004 55005 55006 55008 55009 55010 55011 55012 55013 55014
## [54397] 55015 55017 55018 55019 55020 55021 55022 55023 55024 55025 55026 55027
## [54409] 55028 55029 55030 55031 55032 55033 55034 55035 55037 55038 55039 55041
## [54421] 55042 55043 55044 55046 55047 55048 55049 55050 55052 55053 55054 55056
## [54433] 55057 55058 55059 55060 55062 55063 55064 55065 55066 55067 55068 55069
## [54445] 55071 55072 55073 55074 55075 55076 55078 55079 55080 55081 55082 55083
## [54457] 55084 55085 55086 55087 55088 55089 55090 55091 55092 55094 55095 55096
## [54469] 55098 55099 55100 55101 55102 55103 55104 55106 55107 55108 55109 55110
## [54481] 55111 55113 55114 55115 55116 55117 55118 55119 55120 55123 55125 55126
## [54493] 55127 55128 55129 55130 55131 55132 55133 55134 55135 55136 55137 55139
## [54505] 55140 55141 55142 55143 55144 55145 55147 55148 55149 55150 55151 55152
## [54517] 55153 55154 55155 55156 55158 55159 55160 55162 55163 55164 55165 55166
## [54529] 55167 55168 55169 55170 55171 55172 55173 55174 55175 55176 55177 55178
## [54541] 55179 55181 55182 55183 55184 55185 55186 55188 55189 55190 55192 55197
## [54553] 55198 55199 55200 55201 55202 55203 55204 55205 55206 55207 55208 55209
## [54565] 55210 55211 55214 55215 55216 55217 55219 55220 55222 55224 55225 55227
## [54577] 55228 55229 55230 55231 55232 55233 55234 55235 55236 55237 55238 55239
## [54589] 55240 55243 55244 55245 55246 55247 55248 55249 55250 55251 55254 55256
## [54601] 55257 55258 55259 55260 55261 55262 55264 55265 55266 55268 55269 55271
## [54613] 55274 55275 55276 55277 55278 55279 55280 55281 55283 55284 55286 55287
## [54625] 55288 55289 55290 55292 55294 55296 55297 55298 55299 55300 55301 55302
## [54637] 55303 55304 55305 55306 55307 55308 55309 55310 55311 55314 55316 55317
## [54649] 55319 55320 55321 55322 55323 55324 55326 55327 55328 55329 55330 55332
## [54661] 55333 55334 55335 55336 55337 55338 55339 55340 55341 55342 55343 55344
## [54673] 55345 55346 55347 55349 55350 55351 55352 55353 55354 55355 55356 55358
## [54685] 55359 55360 55361 55362 55364 55365 55366 55367 55368 55369 55370 55371
## [54697] 55372 55373 55374 55376 55377 55378 55379 55380 55381 55382 55383 55385
## [54709] 55386 55387 55388 55389 55390 55391 55392 55393 55394 55395 55396 55397
## [54721] 55398 55399 55400 55401 55402 55403 55405 55406 55407 55408 55409 55410
## [54733] 55411 55412 55413 55414 55415 55416 55417 55418 55419 55420 55421 55422
## [54745] 55423 55424 55425 55426 55427 55428 55429 55430 55431 55432 55433 55434
## [54757] 55435 55436 55437 55438 55439 55440 55441 55442 55443 55444 55445 55446
## [54769] 55447 55448 55449 55450 55451 55452 55454 55455 55456 55457 55458 55459
## [54781] 55460 55461 55462 55465 55468 55469 55470 55472 55473 55474 55475 55476
## [54793] 55477 55478 55480 55481 55482 55483 55484 55485 55486 55487 55488 55489
## [54805] 55490 55491 55493 55494 55495 55496 55497 55498 55499 55500 55501 55503
## [54817] 55504 55505 55506 55507 55508 55509 55510 55512 55513 55514 55515 55516
## [54829] 55517 55518 55519 55520 55521 55522 55523 55524 55525 55526 55527 55528
## [54841] 55531 55532 55533 55534 55535 55536 55537 55538 55539 55540 55541 55542
## [54853] 55543 55544 55545 55546 55547 55548 55549 55551 55552 55553 55554 55555
## [54865] 55556 55557 55558 55559 55560 55561 55562 55563 55564 55565 55566 55567
## [54877] 55568 55569 55570 55571 55572 55573 55574 55575 55576 55577 55578 55579
## [54889] 55580 55581 55582 55583 55584 55585 55587 55588 55589 55590 55591 55592
## [54901] 55593 55594 55595 55596 55597 55598 55599 55600 55601 55602 55603 55604
## [54913] 55605 55606 55607 55608 55609 55610 55611 55612 55613 55614 55615 55618
## [54925] 55619 55620 55621 55622 55623 55624 55625 55626 55627 55628 55629 55630
## [54937] 55631 55632 55633 55634 55635 55636 55637 55638 55639 55640 55641 55642
## [54949] 55643 55644 55645 55646 55647 55648 55649 55650 55651 55652 55653 55654
## [54961] 55655 55656 55657 55658 55659 55660 55661 55662 55663 55664 55665 55666
## [54973] 55667 55668 55669 55670 55671 55672 55674 55675 55676 55677 55678 55679
## [54985] 55680 55681 55682 55683 55684 55685 55686 55687 55688 55689 55690 55691
## [54997] 55692 55693 55694 55695 55696 55697 55698 55699 55700 55701 55702 55703
## [55009] 55704 55705 55706 55708 55709 55712 55713 55714 55715 55716 55717 55718
## [55021] 55719 55721 55722 55723 55724 55725 55726 55727 55728 55729 55730 55731
## [55033] 55732 55733 55734 55735 55736 55737 55738 55739 55740 55741 55742 55743
## [55045] 55744 55745 55746 55747 55748 55749 55750 55751 55752 55753 55754 55755
## [55057] 55756 55757 55758 55759 55760 55761 55762 55763 55764 55765 55766 55767
## [55069] 55768 55770 55771 55772 55773 55774 55775 55776 55777 55778 55779 55780
## [55081] 55781 55782 55783 55784 55785 55788 55789 55790 55791 55792 55793 55794
## [55093] 55795 55796 55797 55798 55799 55800 55801 55803 55804 55805 55806 55807
## [55105] 55808 55809 55810 55811 55812 55813 55814 55815 55816 55817 55818 55819
## [55117] 55820 55821 55822 55823 55824 55825 55826 55827 55828 55829 55830 55831
## [55129] 55832 55833 55834 55835 55836 55837 55838 55839 55840 55842 55843 55844
## [55141] 55845 55846 55847 55848 55849 55851 55852 55853 55854 55855 55856 55858
## [55153] 55859 55860 55861 55862 55863 55864 55865 55866 55867 55868 55869 55870
## [55165] 55871 55872 55873 55874 55875 55876 55877 55878 55879 55880 55881 55882
## [55177] 55883 55884 55885 55886 55887 55888 55889 55890 55891 55892 55893 55894
## [55189] 55895 55896 55897 55898 55899 55900 55901 55902 55903 55904 55905 55906
## [55201] 55907 55908 55909 55910 55911 55912 55914 55915 55916 55917 55918 55919
## [55213] 55920 55921 55923 55924 55925 55926 55928 55929 55930 55931 55933 55934
## [55225] 55935 55936 55937 55938 55939 55940 55941 55942 55943 55944 55945 55946
## [55237] 55947 55948 55949 55950 55951 55952 55953 55954 55955 55956 55957 55958
## [55249] 55960 55962 55963 55964 55965 55966 55967 55969 55971 55972 55974 55975
## [55261] 55977 55978 55979 55980 55981 55982 55983 55984 55985 55986 55987 55988
## [55273] 55989 55990 55991 55992 55993 55994 55995 55996 55998 55999 56000 56001
## [55285] 56002 56003 56004 56005 56006 56007 56008 56009 56010 56011 56012 56013
## [55297] 56014 56015 56016 56017 56018 56019 56020 56021 56022 56023 56024 56025
## [55309] 56026 56027 56028 56029 56030 56031 56032 56033 56034 56035 56036 56037
## [55321] 56039 56040 56041 56042 56043 56044 56045 56046 56047 56048 56049 56050
## [55333] 56051 56053 56054 56055 56056 56057 56058 56059 56060 56061 56062 56063
## [55345] 56064 56065 56068 56069 56070 56071 56072 56073 56074 56075 56076 56077
## [55357] 56078 56079 56080 56081 56082 56084 56085 56086 56087 56089 56090 56091
## [55369] 56092 56093 56094 56095 56096 56097 56098 56099 56100 56101 56102 56103
## [55381] 56104 56105 56106 56107 56108 56109 56110 56111 56112 56113 56114 56115
## [55393] 56116 56117 56118 56119 56120 56121 56122 56123 56124 56125 56126 56127
## [55405] 56128 56129 56130 56131 56132 56133 56134 56136 56137 56138 56139 56140
## [55417] 56141 56144 56145 56147 56148 56149 56150 56152 56153 56154 56155 56156
## [55429] 56157 56158 56159 56160 56161 56162 56163 56164 56165 56166 56167 56168
## [55441] 56169 56170 56171 56172 56173 56174 56175 56176 56177 56178 56179 56180
## [55453] 56181 56182 56183 56184 56185 56186 56187 56188 56189 56190 56191 56192
## [55465] 56193 56194 56195 56196 56197 56198 56199 56200 56201 56202 56203 56204
## [55477] 56205 56206 56207 56208 56209 56210 56211 56212 56213 56214 56216 56217
## [55489] 56218 56219 56220 56221 56222 56223 56224 56225 56226 56227 56229 56230
## [55501] 56231 56232 56233 56234 56235 56236 56238 56239 56240 56241 56242 56243
## [55513] 56244 56245 56246 56247 56248 56249 56250 56251 56252 56253 56254 56255
## [55525] 56256 56257 56258 56259 56260 56261 56262 56263 56264 56265 56266 56267
## [55537] 56268 56269 56270 56271 56272 56273 56274 56275 56276 56277 56278 56279
## [55549] 56280 56281 56282 56283 56284 56285 56287 56288 56289 56290 56291 56292
## [55561] 56293 56294 56295 56296 56297 56298 56300 56301 56302 56303 56304 56305
## [55573] 56306 56308 56309 56310 56311 56312 56313 56315 56316 56317 56318 56319
## [55585] 56320 56321 56323 56324 56325 56326 56327 56328 56329 56330 56331 56332
## [55597] 56333 56334 56335 56336 56337 56338 56339 56340 56343 56344 56346 56347
## [55609] 56348 56349 56350 56351 56352 56354 56355 56356 56357 56359 56361 56362
## [55621] 56363 56364 56365 56366 56367 56368 56369 56370 56371 56372 56373 56374
## [55633] 56375 56376 56377 56378 56379 56380 56381 56382 56383 56384 56385 56386
## [55645] 56387 56388 56389 56390 56391 56392 56393 56394 56395 56396 56397 56398
## [55657] 56399 56400 56401 56402 56403 56404 56405 56406 56407 56408 56409 56410
## [55669] 56411 56412 56413 56414 56415 56416 56417 56418 56419 56420 56421 56422
## [55681] 56423 56424 56425 56426 56428 56429 56430 56431 56432 56433 56434 56435
## [55693] 56436 56437 56438 56439 56440 56441 56442 56443 56444 56445 56446 56447
## [55705] 56448 56449 56451 56452 56453 56454 56455 56456 56457 56458 56459 56460
## [55717] 56461 56462 56463 56464 56465 56466 56467 56468 56469 56470 56471 56472
## [55729] 56473 56474 56475 56476 56477 56478 56479 56480 56481 56482 56483 56484
## [55741] 56485 56486 56487 56488 56489 56490 56491 56492 56493 56495 56496 56497
## [55753] 56498 56499 56500 56501 56503 56504 56505 56506 56507 56508 56509 56510
## [55765] 56511 56512 56513 56515 56516 56517 56518 56519 56520 56521 56522 56524
## [55777] 56525 56526 56527 56528 56529 56530 56531 56532 56533 56534 56535 56536
## [55789] 56537 56538 56539 56540 56541 56542 56543 56544 56545 56546 56547 56549
## [55801] 56550 56551 56553 56554 56555 56556 56557 56558 56559 56560 56561 56562
## [55813] 56563 56564 56565 56566 56567 56568 56569 56570 56571 56572 56573 56574
## [55825] 56575 56576 56577 56578 56579 56581 56582 56583 56584 56585 56586 56587
## [55837] 56588 56589 56590 56591 56592 56593 56594 56595 56596 56597 56598 56599
## [55849] 56600 56601 56602 56603 56604 56605 56606 56607 56608 56609 56611 56612
## [55861] 56613 56614 56615 56616 56617 56618 56619 56620 56621 56622 56623 56624
## [55873] 56625 56626 56627 56628 56629 56630 56632 56633 56634 56635 56636 56637
## [55885] 56638 56639 56642 56644 56645 56646 56647 56648 56649 56650 56651 56652
## [55897] 56653 56654 56656 56657 56658 56659 56660 56661 56662 56663 56665 56666
## [55909] 56667 56668 56669 56670 56671 56672 56673 56674 56675 56676 56677 56678
## [55921] 56679 56681 56682 56683 56684 56685 56686 56687 56688 56689 56690 56691
## [55933] 56692 56693 56694 56695 56696 56697 56698 56699 56700 56703 56705 56706
## [55945] 56707 56709 56710 56711 56712 56713 56714 56715 56716 56717 56718 56719
## [55957] 56720 56721 56722 56723 56724 56725 56726 56727 56728 56729 56730 56731
## [55969] 56733 56735 56737 56738 56739 56740 56742 56743 56744 56745 56746 56747
## [55981] 56748 56749 56750 56751 56752 56753 56754 56755 56756 56758 56759 56760
## [55993] 56761 56763 56764 56765 56766 56767 56768 56769 56770 56772 56773 56774
## [56005] 56775 56777 56778 56779 56780 56781 56782 56783 56784 56785 56786 56787
## [56017] 56788 56789 56790 56791 56792 56793 56794 56795 56796 56797 56798 56799
## [56029] 56801 56802 56803 56804 56805 56806 56807 56808 56809 56810 56811 56812
## [56041] 56813 56815 56816 56817 56818 56819 56820 56821 56822 56823 56824 56825
## [56053] 56826 56827 56828 56829 56831 56834 56835 56836 56837 56838 56839 56840
## [56065] 56841 56842 56843 56844 56847 56848 56849 56850 56851 56852 56853 56854
## [56077] 56856 56859 56860 56861 56862 56863 56864 56865 56866 56867 56868 56869
## [56089] 56870 56871 56872 56873 56874 56875 56876 56877 56878 56879 56880 56881
## [56101] 56882 56883 56884 56885 56886 56887 56888 56889 56890 56891 56892 56893
## [56113] 56894 56895 56896 56897 56898 56899 56900 56901 56902 56903 56904 56905
## [56125] 56906 56907 56909 56912 56913 56914 56915 56916 56917 56918 56919 56920
## [56137] 56921 56922 56923 56924 56926 56927 56928 56929 56930 56931 56932 56933
## [56149] 56934 56935 56936 56937 56938 56939 56941 56942 56943 56944 56945 56946
## [56161] 56948 56949 56950 56951 56952 56953 56954 56955 56956 56957 56958 56959
## [56173] 56960 56961 56962 56963 56964 56965 56966 56967 56968 56969 56971 56972
## [56185] 56973 56975 56977 56978 56979 56980 56981 56982 56984 56985 56986 56987
## [56197] 56988 56989 56990 56991 56992 56993 56994 56995 56997 56998 56999 57000
## [56209] 57001 57002 57004 57005 57006 57010 57011 57012 57013 57014 57015 57016
## [56221] 57017 57020 57022 57023 57024 57025 57026 57027 57028 57029 57030 57032
## [56233] 57033 57034 57036 57037 57038 57039 57040 57042 57044 57045 57046 57047
## [56245] 57050 57051 57053 57054 57055 57056 57057 57058 57060 57061 57063 57064
## [56257] 57065 57066 57067 57068 57070 57071 57072 57073 57074 57076 57077 57078
## [56269] 57079 57081 57082 57083 57084 57085 57086 57087 57088 57089 57092 57093
## [56281] 57095 57096 57097 57098 57100 57103 57104 57105 57107 57108 57109 57110
## [56293] 57113 57114 57115 57116 57117 57120 57122 57123 57124 57125 57127 57128
## [56305] 57129 57130 57131 57132 57133 57134 57135 57136 57138 57139 57140 57141
## [56317] 57142 57144 57145 57149 57150 57151 57152 57153 57157 57159 57160 57162
## [56329] 57164 57165 57166 57167 57168 57170 57172 57173 57174 57175 57177 57178
## [56341] 57181 57182 57183 57184 57185 57186 57187 57188 57190 57191 57192 57193
## [56353] 57194 57196 57198 57199 57200 57201 57203 57204 57206 57207 57208 57209
## [56365] 57210 57211 57212 57215 57216 57218 57220 57221 57222 57223 57224 57225
## [56377] 57226 57228 57229 57233 57234 57235 57236 57238 57239 57241 57242 57243
## [56389] 57244 57245 57246 57247 57248 57250 57254 57255 57256 57257 57258 57259
## [56401] 57261 57262 57264 57266 57267 57268 57270 57271 57273 57276 57277 57279
## [56413] 57281 57282 57283 57285 57286 57287 57288 57289 57290 57291 57292 57294
## [56425] 57295 57296 57297 57298 57299 57300 57301 57302 57306 57307 57308 57309
## [56437] 57310 57311 57312 57314 57315 57316 57317 57321 57322 57323 57325 57326
## [56449] 57327 57328 57329 57330 57331 57332 57336 57337 57340 57345 57346 57347
## [56461] 57351 57352 57357 57358 57361 57362 57363 57367 57368 57369 57370 57371
## [56473] 57373 57374 57375 57376 57377 57378 57379 57380 57383 57384 57386 57387
## [56485] 57388 57389 57390 57393 57394 57398 57399 57400 57402 57403 57405 57406
## [56497] 57408 57410 57411 57412 57417 57418 57419 57420 57432 57433 57436 57439
## [56509] 57440 57442 57444 57448 57449 57453 57454 57455 57457 57458 57461 57463
## [56521] 57464 57465 57466 57470 57471 57473 57476 57477 57480 57481 57485 57486
## [56533] 57487 57488 57494 57498 57500 57504 57505 57509 57510 57511 57512 57516
## [56545] 57518 57522 57524 57531 57537 57541 57542 57544 57545 57546 57548 57555
## [56557] 57557 57559 57560 57562 57563 57565 57566 57567 57571 57580 57583 57585
## [56569] 57586 57587 57588 57591 57592 57596 57598 57601 57603 57604 57605 57607
## [56581] 57608 57609 57610 57611 57613 57618 57619 57622 57623 57625 57626 57627
## [56593] 57632 57637 57638 57639 57640 57641 57643 57644 57648 57650 57651 57653
## [56605] 57654 57657 57658 57659 57661 57663 57666 57669 57673 57674 57675 57676
## [56617] 57677 57678 57680 57684 57685 57686 57687 57688 57689 57690 57695 57696
## [56629] 57698 57701 57706 57707 57708 57710 57711 57712 57716 57718 57720 57722
## [56641] 57723 57724 57726 57727 57729 57730 57731 57732 57733 57735 57736 57737
## [56653] 57738 57739 57740 57741 57743 57744 57745 57746 57747 57748 57750 57751
## [56665] 57752 57753 57754 57755 57756 57757 57758 57760 57761 57762 57763 57764
## [56677] 57765 57766 57768 57769 57771 57772 57776 57779 57780 57781 57782 57783
## [56689] 57784 57785 57786 57787 57788 57791 57792 57793 57796 57797 57798 57800
## [56701] 57801 57802 57806 57807 57808 57809 57813 57817 57818 57826 57827 57832
## [56713] 57833 57846 57847 57848 57851 57853 57855 57856 57860 57861 57862 57863
## [56725] 57865 57868 57869 57871 57872 57875 57877 57878 57879 57880 57881 57882
## [56737] 57883 57884 57885 57886 57888 57889 57891 57892 57895 57899 57900 57904
## [56749] 57906 57907 57911 57913 57914 57916 57917 57919 57920 57921 57922 57923
## [56761] 57925 57926 57927 57928 57933 57934 57938 57940 57941 57942 57943 57957
## [56773] 57958 57965 57966 57968 57970 57971 57973 57975 57977 57980 57983 57984
## [56785] 57985 57987 57989 57990 57992 57993 57994 57995 57996 57997 57999 58002
## [56797] 58003 58009 58010 58017 58019 58023 58025 58028 58029 58033 58035 58037
## [56809] 58038 58039 58040 58041 58044 58045 58047 58050 58053 58057 58058 58060
## [56821] 58061 58064 58065 58066 58067 58068 58069 58071 58072 58080 58084 58086
## [56833] 58089 58090 58091 58093 58094 58095 58096 58098 58108 58115 58116 58117
## [56845] 58119 58125 58127 58128 58129 58134 58136 58140 58141 58142 58148 58149
## [56857] 58150 58151 58153 58154 58155 58159 58161 58164 58173 58174 58177 58182
## [56869] 58184 58185 58186 58188 58189 58190 58191 58196 58199 58211 58212 58216
## [56881] 58217 58222 58223 58229 58230 58234 58238 58239 58240 58242 58243 58245
## [56893] 58246 58248 58249 58251 58252 58254 58255 58259 58263 58265 58266 58267
## [56905] 58270 58273 58274 58275 58281 58284 58285 58286 58288 58290 58291 58292
## [56917] 58295 58296 58301 58303 58307 58310 58312 58317 58320 58322 58325 58326
## [56929] 58328 58340 58341 58342 58346 58349 58350 58351 58352 58353 58354 58358
## [56941] 58364 58372 58373 58374 58378 58379 58380 58382 58390 58391 58401 58403
## [56953] 58405 58413 58417 58423 58424 58425 58428 58429 58437 58439 58441 58442
## [56965] 58446 58451 58455 58463 58464 58465 58475 58479 58480 58481 58482 58483
## [56977] 58484 58485 58486 58489 58490 58493 58498 58507 58508 58510 58511 58514
## [56989] 58516 58518 58520 58522 58528 58530 58532 58535 58536 58538 58543 58545
## [57001] 58548 58549 58550 58551 58552 58553 58554 58555 58556 58560 58561 58565
## [57013] 58567 58568 58570 58573 58579 58580 58581 58582 58583 58591 58592 58593
## [57025] 58594 58595 58597 58600 58602 58603 58604 58608 58611 58613 58616 58620
## [57037] 58622 58623 58624 58625 58627 58629 58634 58635 58636 58639 58640 58644
## [57049] 58645 58648 58655 58656 58658 58659 58661 58663 58666 58668 58671 58672
## [57061] 58676 58678 58682 58683 58684 58687 58688 58694 58698 58700 58702 58708
## [57073] 58709 58711 58717 58724 58725 58726 58729 58730 58732 58737 58738 58740
## [57085] 58742 58745 58750 58754 58758 58759 58760 58773 58778 58791 58792 58793
## [57097] 58794 58800 58802 58803 58808 58809 58817 58822 58826 58827 58831 58832
## [57109] 58836 58837 58846 58848 58850 58854 58856 58857 58860 58866 58868 58879
## [57121] 58880 58883 58885 58886 58887 58890 58892 58897 58900 58904 58907 58908
## [57133] 58909 58910 58911 58912 58913 58915 58920 58923 58924 58928 58933 58937
## [57145] 58938 58939 58944 58945 58946 58947 58954 58971 58976 58978 58979 58980
## [57157] 58981 58989 58990 58993 58995 59002 59004 59005 59006 59012 59013 59014
## [57169] 59022 59024 59026 59027 59028 59031 59032 59034 59036 59037 59038 59039
## [57181] 59040 59042 59043 59044 59045 59049 59054 59055 59058 59063 59064 59065
## [57193] 59066 59067 59068 59069 59074 59077 59079 59081 59084 59086 59088 59089
## [57205] 59092 59096 59102 59103 59108 59109 59112 59113 59117 59118 59119 59123
## [57217] 59124 59125 59126 59127 59128 59129 59133 59137 59138 59140 59141 59144
## [57229] 59145 59147 59150 59159 59161 59162 59166 59191 59192 59193 59196 59197
## [57241] 59199 59200 59201 59204 59208 59209 59210 59212 59215 59217 59218 59221
## [57253] 59222 59224 59228 59229 59241 59246 59248 59252 59253 59255 59256 59257
## [57265] 59259 59262 59274 59276 59281 59283 59285 59286 59292 59296 59297 59305
## [57277] 59307 59313 59316 59317 59321 59322 59325 59328 59329 59330 59331 59332
## [57289] 59338 59339 59345 59347 59351 59352 59355 59356 59358 59363 59366 59367
## [57301] 59368 59369 59372 59374 59376 59381 59382 59385 59387 59388 59392 59393
## [57313] 59395 59402 59409 59411 59415 59416 59418 59420 59421 59422 59423 59424
## [57325] 59429 59430 59434 59435 59436 59438 59439 59444 59445 59453 59454 59458
## [57337] 59460 59466 59467 59471 59472 59475 59478 59479 59481 59483 59484 59486
## [57349] 59487 59498 59504 59505 59508 59510 59511 59512 59514 59515 59516 59517
## [57361] 59524 59529 59535 59539 59540 59541 59543 59549 59550 59551 59552 59557
## [57373] 59558 59559 59561 59566 59577 59579 59584 59586 59587 59590 59592 59594
## [57385] 59596 59597 59601 59602 59603 59606 59608 59612 59613 59616 59618 59619
## [57397] 59620 59624 59625 59626 59627 59628 59631 59632 59633 59634 59635 59637
## [57409] 59638 59639 59640 59645 59650 59654 59655 59658 59664 59666 59668 59670
## [57421] 59672 59673 59674 59676 59678 59680 59681 59683 59684 59686 59690 59695
## [57433] 59704 59706 59711 59712 59714 59722 59723 59726 59728 59730 59731 59736
## [57445] 59738 59741 59745 59746 59749 59750 59751 59753 59755 59758 59759 59763
## [57457] 59765 59766 59767 59768 59771 59773 59775 59779 59781 59782 59784 59785
## [57469] 59787 59790 59792 59795 59798 59799 59803 59809 59810 59811 59821 59823
## [57481] 59826 59832 59835 59837 59843 59844 59845 59847 59848 59849 59850 59851
## [57493] 59852 59853 59856 59863 59867 59869 59870 59878 59881 59883 59885 59886
## [57505] 59891 59892 59894 59895 59896 59902 59906 59911 59913 59914 59915 59916
## [57517] 59917 59918 59921 59922 59924 59926 59927 59932 59937 59940 59941 59946
## [57529] 59947 59955 59958 59963 59964 59965 59966 59968 59969 59970 59971 59972
## [57541] 59973 59974 59975 59981 59982 59984 59988 59997 59999 60000 60001 60002
## [57553] 60005 60008 60011 60012 60018 60019 60021 60026 60028 60030 60033 60038
## [57565] 60040 60042 60043 60044 60049 60050 60051 60052 60056 60057 60058 60060
## [57577] 60061 60064 60070 60071 60077 60078 60085 60087 60088 60089 60090 60092
## [57589] 60094 60095 60096 60097 60098 60100 60101 60104 60105 60106 60108 60109
## [57601] 60116 60117 60120 60121 60126 60127 60129 60132 60134 60139 60141 60145
## [57613] 60148 60150 60151 60154 60156 60159 60160 60166 60168 60169 60170 60178
## [57625] 60181 60185 60186 60190 60195 60196 60197 60198 60199 60200 60201 60203
## [57637] 60204 60207 60210 60211 60212 60215 60217 60218 60219 60221 60222 60226
## [57649] 60236 60238 60239 60240 60241 60246 60249 60250 60252 60254 60255 60259
## [57661] 60261 60265 60266 60268 60270 60271 60275 60277 60281 60282 60284 60285
## [57673] 60287 60291 60292 60298 60299 60300 60301 60305 60308 60313 60321 60322
## [57685] 60323 60326 60329 60334 60336 60337 60342 60343 60353 60362 60364 60365
## [57697] 60370 60373 60375 60380 60382 60385 60387 60388 60389 60391 60399 60402
## [57709] 60403 60405 60406 60407 60408 60413 60414 60419 60420 60424 60426 60428
## [57721] 60429 60431 60434 60435 60436 60437 60442 60446 60447 60449 60452 60456
## [57733] 60458 60460 60463 60467 60469 60470 60474 60478 60480 60482 60483 60484
## [57745] 60485 60490 60500 60502 60503 60505 60506 60509 60511 60513 60518 60521
## [57757] 60522 60524 60525 60526 60528 60531 60533 60534 60538 60543 60551 60552
## [57769] 60554 60555 60557 60559 60564 60566 60568 60576 60577 60579 60581 60591
## [57781] 60592 60593 60594 60597 60598 60602 60604 60611 60621 60623 60624 60632
## [57793] 60634 60635 60639 60643 60648 60649 60650 60651 60652 60657 60659 60660
## [57805] 60661 60662 60664 60665 60674 60675 60679 60680 60681 60682 60683 60684
## [57817] 60685 60687 60692 60694 60695 60698 60699 60700 60701 60702 60707 60709
## [57829] 60711 60713 60716 60719 60720 60722 60724 60725 60729 60731 60732 60735
## [57841] 60736 60737 60738 60740 60743 60747 60749 60750 60751 60756 60757 60758
## [57853] 60761 60762 60763 60764 60768 60769 60770 60771 60775 60778 60780 60783
## [57865] 60784 60785 60792 60797 60798 60799 60800 60801 60802 60803 60807 60814
## [57877] 60815 60816 60817 60819 60822 60825 60827 60830 60834 60840 60842 60849
## [57889] 60851 60852 60862 60867 60871 60872 60874 60875 60881 60882 60885 60887
## [57901] 60889 60890 60892 60893 60895 60896 60900 60902 60903 60904 60905 60906
## [57913] 60910 60913 60915 60916 60917 60919 60920 60921 60924 60925 60927 60931
## [57925] 60932 60939 60941 60942 60945 60946 60947 60949 60950 60951 60956 60957
## [57937] 60958 60959 60960 60963 60969 60970 60973 60974 60978 60980 60985 60986
## [57949] 60990 60992 60993 60994 60995 60997 60999 61001 61002 61007 61010 61012
## [57961] 61014 61015 61016 61017 61021 61023 61024 61030 61031 61034 61035 61037
## [57973] 61040 61041 61047 61052 61053 61056 61057 61059 61062 61064 61065 61069
## [57985] 61070 61071 61073 61074 61075 61076 61077 61080 61083 61087 61093 61094
## [57997] 61095 61096 61098 61099 61102 61104 61105 61108 61109 61112 61113 61116
## [58009] 61118 61119 61120 61122 61126 61129 61130 61132 61133 61136 61140 61142
## [58021] 61143 61144 61148 61157 61158 61160 61169 61171 61173 61183 61185 61187
## [58033] 61189 61190 61192 61197 61200 61201 61202 61203 61204 61205 61206 61208
## [58045] 61209 61211 61214 61215 61217 61218 61220 61221 61223 61224 61229 61234
## [58057] 61236 61240 61241 61242 61244 61245 61248 61250 61251 61252 61253 61254
## [58069] 61255 61257 61258 61261 61262 61263 61266 61268 61269 61270 61273 61276
## [58081] 61278 61279 61281 61284 61287 61288 61291 61292 61296 61302 61303 61306
## [58093] 61308 61311 61315 61316 61319 61320 61322 61323 61330 61332 61334 61335
## [58105] 61336 61340 61345 61349 61350 61354 61356 61357 61362 61363 61366 61367
## [58117] 61370 61374 61378 61379 61380 61381 61382 61383 61385 61386 61387 61389
## [58129] 61390 61397 61398 61400 61401 61402 61403 61404 61405 61406 61411 61412
## [58141] 61414 61416 61417 61420 61421 61422 61424 61425 61436 61442 61444 61445
## [58153] 61446 61448 61449 61453 61459 61460 61461 61462 61463 61464 61466 61469
## [58165] 61470 61471 61472 61473 61475 61478 61479 61481 61483 61485 61486 61487
## [58177] 61488 61490 61491 61493 61494 61500 61501 61502 61503 61508 61509 61513
## [58189] 61514 61515 61519 61526 61537 61538 61539 61540 61543 61544 61547 61549
## [58201] 61550 61552 61558 61566 61567 61573 61574 61577 61581 61584 61589 61591
## [58213] 61598 61601 61602 61604 61606 61609 61610 61613 61614 61615 61616 61617
## [58225] 61619 61620 61623 61628 61629 61630 61632 61634 61636 61637 61638 61639
## [58237] 61641 61642 61643 61648 61651 61653 61654 61656 61663 61666 61668 61670
## [58249] 61672 61679 61680 61682 61684 61686 61688 61689 61691 61695 61696 61697
## [58261] 61699 61700 61703 61705 61706 61709 61710 61712 61714 61718 61719 61720
## [58273] 61723 61728 61732 61733 61735 61737 61739 61741 61742 61743 61744 61745
## [58285] 61747 61755 61757 61760 61761 61762 61764 61765 61766 61767 61774 61777
## [58297] 61785 61788 61789 61790 61798 61802 61812 61821 61826 61827 61828 61829
## [58309] 61830 61836 61843 61844 61847 61853 61855 61860 61861 61863 61865 61869
## [58321] 61874 61881 61882 61889 61891 61893 61894 61898 61900 61904 61905 61909
## [58333] 61910 61913 61920 61921 61928 61930 61932 61933 61934 61935 61936 61939
## [58345] 61944 61945 61950 61951 61952 61954 61961 61963 61964 61965 61966 61968
## [58357] 61972 61975 61978 61981 61982 61984 61988 61992 61993 61998 62001 62004
## [58369] 62016 62017 62023 62025 62033 62034 62037 62039 62041 62044 62046 62047
## [58381] 62050 62052 62054 62057 62063 62066 62069 62075 62079 62080 62090 62093
## [58393] 62095 62096 62097 62098 62099 62109 62110 62111 62112 62114 62115 62116
## [58405] 62119 62120 62121 62126 62128 62129 62135 62136 62137 62138 62139 62141
## [58417] 62146 62147 62156 62162 62164 62166 62169 62174 62175 62176 62180 62183
## [58429] 62186 62189 62190 62193 62194 62203 62204 62207 62212 62215 62217 62219
## [58441] 62224 62226 62228 62234 62236 62237 62239 62240 62241 62242 62243 62246
## [58453] 62247 62250 62251 62252 62254 62261 62263 62269 62270 62272 62275 62276
## [58465] 62277 62279 62280 62281 62284 62285 62286 62290 62291 62297 62298 62303
## [58477] 62304 62305 62308 62313 62316 62320 62321 62325 62326 62329 62332 62334
## [58489] 62336 62341 62345 62346 62348 62349 62351 62353 62355 62365 62367 62369
## [58501] 62371 62372 62374 62381 62385 62386 62389 62391 62392 62393 62394 62398
## [58513] 62400 62403 62413 62415 62420 62425 62426 62427 62435 62436 62438 62439
## [58525] 62440 62442 62453 62456 62459 62460 62461 62464 62466 62468 62469 62470
## [58537] 62472 62473 62474 62475 62476 62480 62482 62483 62485 62487 62489 62493
## [58549] 62494 62495 62497 62498 62499 62501 62502 62503 62504 62507 62511 62512
## [58561] 62513 62514 62520 62524 62529 62536 62538 62546 62548 62550 62553 62557
## [58573] 62558 62559 62560 62561 62565 62568 62570 62574 62578 62579 62581 62583
## [58585] 62592 62593 62595 62596 62597 62599 62600 62601 62604 62605 62609 62611
## [58597] 62614 62616 62617 62618 62619 62621 62622 62627 62631 62638 62642 62647
## [58609] 62648 62650 62655 62657 62659 62660 62661 62662 62666 62667 62670 62671
## [58621] 62672 62673 62676 62680 62681 62682 62684 62685 62687 62688 62690 62694
## [58633] 62695 62696 62704 62710 62714 62716 62722 62725 62726 62728 62729 62734
## [58645] 62735 62742 62744 62751 62752 62753 62754 62759 62762 62763 62767 62771
## [58657] 62781 62784 62785 62788 62789 62793 62802 62805 62810 62818 62821 62822
## [58669] 62826 62827 62829 62833 62836 62839 62849 62851 62852 62856 62857 62861
## [58681] 62862 62863 62873 62876 62877 62878 62895 62896 62899 62900 62901 62902
## [58693] 62907 62913 62916 62919 62926 62927 62929 62931 62932 62933 62937 62941
## [58705] 62942 62946 62949 62950 62952 62957 62960 62962 62964 62966 62968 62969
## [58717] 62970 62971 62975 62977 62981 62982 62983 62986 62993 62994 62999 63008
## [58729] 63011 63019 63020 63021 63024 63032 63037 63039 63041 63042 63046 63047
## [58741] 63048 63051 63053 63056 63061 63063 63069 63071 63073 63075 63080 63083
## [58753] 63084 63087 63091 63093 63095 63096 63097 63099 63101 63102 63104 63107
## [58765] 63116 63117 63118 63120 63122 63124 63125 63126 63127 63129 63133 63137
## [58777] 63140 63141 63144 63150 63152 63153 63156 63157 63161 63162 63164 63165
## [58789] 63167 63170 63172 63178 63179 63180 63181 63183 63184 63188 63189 63191
## [58801] 63199 63200 63202 63203 63204 63205 63208 63209 63213 63215 63217 63219
## [58813] 63228 63229 63231 63232 63233 63234 63238 63239 63242 63246 63251 63253
## [58825] 63254 63258 63262 63267 63268 63269 63270 63282 63285 63292 63294 63296
## [58837] 63300 63301 63308 63309 63310 63312 63316 63318 63319 63320 63326 63329
## [58849] 63330 63332 63334 63337 63340 63348 63353 63354 63360 63361 63366 63367
## [58861] 63368 63369 63381 63390 63397 63398 63400 63401 63403 63407 63411 63415
## [58873] 63420 63421 63423 63424 63425 63428 63429 63430 63433 63434 63442 63443
## [58885] 63447 63451 63454 63455 63456 63457 63460 63462 63470 63479 63481 63486
## [58897] 63492 63495 63496 63503 63504 63511 63512 63514 63515 63520 63522 63527
## [58909] 63530 63532 63533 63535 63536 63538 63539 63540 63550 63555 63556 63562
## [58921] 63563 63567 63568 63571 63573 63574 63575 63576 63577 63578 63580 63582
## [58933] 63584 63588 63589 63591 63594 63597 63599 63601 63602 63603 63604 63611
## [58945] 63617 63619 63627 63630 63631 63637 63639 63640 63641 63643 63644 63645
## [58957] 63648 63649 63654 63655 63659 63663 63666 63669 63672 63677 63679 63681
## [58969] 63689 63691 63693 63694 63695 63698 63699 63700 63702 63703 63706 63716
## [58981] 63717 63718 63720 63721 63722 63724 63727 63731 63732 63739 63741 63744
## [58993] 63747 63751 63758 63759 63760 63761 63763 63764 63773 63777 63778 63781
## [59005] 63784 63785 63788 63794 63802 63803 63804 63806 63811 63814 63815 63818
## [59017] 63819 63820 63823 63824 63827 63830 63831 63834 63839 63841 63843 63845
## [59029] 63849 63850 63852 63853 63855 63857 63864 63870 63871 63872 63873 63874
## [59041] 63877 63882 63883 63889 63891 63893 63894 63898 63899 63901 63906 63909
## [59053] 63914 63915 63919 63920 63922 63923 63941 63942 63945 63948 63949 63950
## [59065] 63953 63954 63955 63956 63958 63964 63965 63967 63968 63972 63974 63975
## [59077] 63976 63977 63980 63984 63986 63987 63989 63990 63991 63994 63995 63999
## [59089] 64007 64009 64010 64013 64014 64015 64019 64020 64023 64025 64029 64032
## [59101] 64034 64036 64039 64043 64045 64046 64050 64056 64066 64068 64069 64076
## [59113] 64080 64081 64082 64083 64084 64086 64096 64097 64102 64106 64107 64110
## [59125] 64111 64115 64116 64117 64121 64126 64128 64130 64132 64138 64142 64143
## [59137] 64148 64152 64158 64160 64161 64165 64167 64168 64169 64173 64174 64175
## [59149] 64179 64184 64194 64195 64210 64212 64219 64230 64231 64233 64239 64240
## [59161] 64241 64242 64243 64246 64252 64255 64261 64264 64265 64270 64271 64274
## [59173] 64275 64277 64279 64283 64286 64291 64293 64295 64301 64308 64309 64312
## [59185] 64323 64328 64335 64336 64338 64356 64359 64365 64366 64370 64373 64374
## [59197] 64375 64376 64379 64383 64386 64388 64389 64391 64394 64395 64401 64415
## [59209] 64417 64427 64428 64429 64430 64433 64445 64449 64455 64457 64462 64463
## [59221] 64464 64470 64471 64474 64480 64489 64492 64496 64499 64500 64502 64506
## [59233] 64518 64519 64520 64524 64525 64528 64531 64533 64535 64536 64537 64539
## [59245] 64540 64541 64543 64545 64558 64564 64567 64568 64571 64573 64574 64577
## [59257] 64582 64584 64585 64591 64594 64595 64596 64601 64603 64611 64614 64618
## [59269] 64620 64625 64626 64628 64629 64630 64631 64642 64643 64644 64645 64646
## [59281] 64651 64656 64657 64661 64664 64665 64669 64673 64674 64675 64678 64679
## [59293] 64681 64682 64687 64688 64691 64692 64693 64694 64698 64701 64702 64704
## [59305] 64705 64707 64709 64710 64712 64714 64719 64721 64723 64725 64726 64727
## [59317] 64733 64736 64738 64740 64742 64743 64751 64753 64756 64757 64758 64759
## [59329] 64761 64762 64763 64772 64774 64776 64778 64779 64780 64781 64782 64789
## [59341] 64790 64791 64795 64797 64801 64802 64803 64806 64807 64809 64817 64821
## [59353] 64824 64825 64827 64828 64830 64831 64832 64836 64838 64839 64841 64844
## [59365] 64845 64848 64852 64856 64858 64859 64861 64868 64871 64872 64873 64874
## [59377] 64876 64877 64879 64880 64883 64885 64886 64890 64892 64899 64900 64901
## [59389] 64906 64908 64913 64914 64916 64920 64922 64930 64931 64932 64933 64935
## [59401] 64939 64941 64942 64943 64944 64945 64946 64949 64950 64952 64953 64954
## [59413] 64960 64964 64967 64968 64971 64972 64973 64974 64978 64979 64981 64982
## [59425] 64983 64984 64985 64988 64989 64996 64998 64999 65001 65005 65013 65018
## [59437] 65022 65029 65030 65032 65034 65038 65040 65042 65047 65049 65054 65059
## [59449] 65065 65066 65067 65073 65076 65080 65084 65089 65090 65091 65092 65093
## [59461] 65094 65095 65096 65097 65098 65099 65104 65107 65110 65117 65119 65120
## [59473] 65121 65123 65124 65129 65131 65133 65135 65140 65141 65142 65149 65150
## [59485] 65151 65152 65153 65157 65163 65164 65165 65167 65170 65171 65175 65183
## [59497] 65190 65193 65197 65199 65202 65203 65204 65206 65207 65211 65214 65215
## [59509] 65217 65218 65219 65220 65228 65230 65233 65236 65239 65240 65244 65252
## [59521] 65255 65259 65263 65268 65272 65273 65277 65278 65279 65280 65282 65289
## [59533] 65290 65296 65297 65298 65299 65301 65302 65306 65307 65309 65311 65312
## [59545] 65315 65317 65320 65322 65326 65329 65330 65333 65337 65341 65343 65346
## [59557] 65353 65355 65358 65365 65367 65369 65371 65372 65378 65379 65380 65381
## [59569] 65385 65386 65388 65389 65390 65405 65406 65409 65415 65421 65423 65428
## [59581] 65429 65430 65431 65434 65435 65436 65437 65438 65448 65450 65451 65452
## [59593] 65461 65465 65466 65472 65473 65474 65476 65477 65484 65486 65492 65493
## [59605] 65498 65499 65503 65506 65507 65508 65510 65511 65513 65514 65515 65516
## [59617] 65519 65520 65522 65524 65527 65530 65532 65541 65542 65544 65546 65549
## [59629] 65551 65554 65557 65558 65561 65566 65571 65575 65576 65577 65578 65579
## [59641] 65580 65581 65584 65586 65590 65591 65595 65602 65603 65604 65607 65609
## [59653] 65610 65612 65626 65629 65631 65634 65635 65639 65640 65643 65645 65646
## [59665] 65647 65651 65652 65656 65659 65661 65662 65663 65664 65666 65668 65671
## [59677] 65672 65674 65677 65679 65680 65683 65684 65685 65687 65690 65694 65701
## [59689] 65706 65708 65710 65715 65716 65717 65727 65728 65731 65735 65736 65739
## [59701] 65740 65743 65746 65748 65749 65751 65753 65755 65759 65760 65762 65763
## [59713] 65766 65771 65772 65773 65776 65778 65779 65786 65787 65792 65794 65796
## [59725] 65798 65802 65803 65812 65814 65815 65818 65819 65820 65831 65834 65835
## [59737] 65836 65837 65840 65846 65848 65849 65851 65852 65855 65857 65862 65864
## [59749] 65872 65873 65876 65877 65878 65879 65882 65887 65890 65892 65893 65904
## [59761] 65908 65909 65911 65913 65916 65927 65929 65931 65932 65936 65938 65940
## [59773] 65944 65946 65949 65953 65968 65969 65970 65971 65973 65974 65980 65981
## [59785] 65982 65985 65989 65990 65993 65994 66003 66004 66007 66008 66009 66010
## [59797] 66013 66017 66024 66027 66029 66030 66033 66043 66044 66047 66048 66052
## [59809] 66053 66054 66058 66059 66066 66067 66070 66071 66072 66073 66075 66076
## [59821] 66081 66082 66085 66086 66088 66089 66090 66091 66092 66093 66100 66101
## [59833] 66105 66107 66109 66110 66111 66112 66116 66123 66126 66130 66133 66134
## [59845] 66135 66137 66138 66140 66141 66142 66144 66145 66146 66148 66149 66150
## [59857] 66151 66152 66156 66159 66165 66166 66172 66173 66174 66175 66178 66185
## [59869] 66187 66188 66190 66193 66197 66199 66203 66210 66211 66212 66213 66214
## [59881] 66218 66221 66224 66225 66226 66227 66228 66229 66230 66233 66238 66242
## [59893] 66246 66247 66248 66249 66251 66255 66256 66257 66259 66261 66262 66263
## [59905] 66266 66271 66274 66275 66278 66282 66283 66287 66292 66293 66295 66296
## [59917] 66298 66301 66305 66309 66310 66312 66314 66323 66324 66325 66329 66331
## [59929] 66332 66334 66336 66339 66340 66341 66342 66344 66345 66347 66350 66354
## [59941] 66357 66362 66363 66364 66366 66369 66373 66377 66378 66381 66382 66389
## [59953] 66390 66391 66392 66393 66396 66401 66402 66403 66404 66405 66406 66407
## [59965] 66409 66410 66411 66412 66420 66423 66424 66425 66430 66435 66437 66438
## [59977] 66439 66440 66443 66444 66446 66447 66450 66453 66461 66462 66463 66465
## [59989] 66466 66467 66468 66470 66473 66474 66476 66477 66481 66486 66493 66497
## [60001] 66498 66500 66511 66512 66513 66523 66525 66534 66539 66540 66542 66544
## [60013] 66549 66555 66556 66557 66559 66560 66561 66563 66564 66565 66566 66567
## [60025] 66568 66570 66573 66575 66576 66582 66595 66598 66602 66604 66608 66609
## [60037] 66612 66613 66619 66622 66625 66626 66627 66629 66632 66633 66636 66637
## [60049] 66640 66646 66651 66652 66654 66655 66663 66665 66666 66667 66669 66670
## [60061] 66671 66678 66680 66681 66682 66686 66687 66692 66698 66699 66700 66704
## [60073] 66705 66706 66710 66714 66715 66718 66719 66720 66721 66722 66724 66725
## [60085] 66727 66728 66731 66733 66734 66737 66739 66742 66750 66751 66752 66753
## [60097] 66756 66760 66761 66775 66782 66785 66786 66787 66788 66789 66792 66793
## [60109] 66794 66795 66796 66797 66799 66801 66802 66807 66809 66810 66811 66815
## [60121] 66816 66820 66821 66825 66826 66829 66830 66832 66834 66838 66840 66841
## [60133] 66843 66845 66846 66847 66848 66849 66850 66851 66852 66853 66855 66858
## [60145] 66860 66864 66868 66869 66872 66873 66875 66878 66882 66886 66887 66888
## [60157] 66890 66893 66894 66896 66899 66900 66902 66903 66905 66906 66907 66910
## [60169] 66914 66918 66930 66931 66932 66933 66934 66935 66936 66944 66949 66951
## [60181] 66954 66956 66960 66961 66965 66967 66971 66973 66976 66977 66978 66980
## [60193] 66982 66983 66988 66991 66994 66995 66998 66999 67000 67003 67004 67007
## [60205] 67010 67020 67028 67030 67033 67034 67040 67041 67044 67045 67046 67047
## [60217] 67048 67050 67055 67062 67066 67067 67068 67070 67072 67073 67076 67080
## [60229] 67082 67094 67106 67107 67110 67120 67121 67128 67129 67130 67131 67132
## [60241] 67133 67134 67135 67137 67141 67143 67148 67149 67150 67153 67154 67155
## [60253] 67156 67157 67163 67167 67169 67171 67172 67175 67176 67180 67181 67183
## [60265] 67185 67186 67187 67188 67189 67193 67195 67196 67197 67198 67208 67210
## [60277] 67213 67215 67217 67218 67220 67221 67222 67229 67230 67232 67233 67237
## [60289] 67239 67240 67245 67249 67250 67251 67252 67253 67255 67259 67260 67261
## [60301] 67266 67267 67269 67271 67272 67274 67275 67277 67279 67280 67281 67283
## [60313] 67287 67290 67295 67302 67309 67313 67314 67315 67318 67319 67322 67325
## [60325] 67329 67331 67332 67333 67335 67336 67337 67340 67341 67353 67355 67358
## [60337] 67362 67363 67367 67368 67369 67372 67382 67384 67389 67391 67397 67400
## [60349] 67416 67418 67419 67420 67421 67422 67425 67426 67427 67432 67436 67437
## [60361] 67440 67442 67444 67445 67447 67448 67449 67450 67455 67458 67459 67460
## [60373] 67470 67482 67486 67487 67488 67489 67490 67491 67492 67494 67495 67501
## [60385] 67505 67509 67511 67512 67515 67516 67517 67525 67526 67531 67533 67537
## [60397] 67538 67539 67541 67542 67546 67547 67549 67551 67558 67559 67560 67561
## [60409] 67562 67564 67567 67568 67570 67572 67580 67584 67585 67586 67587 67588
## [60421] 67591 67593 67597 67598 67605 67607 67610 67611 67621 67622 67624 67627
## [60433] 67628 67636 67637 67641 67644 67647 67653 67658 67660 67662 67663 67665
## [60445] 67666 67669 67670 67673 67674 67679 67681 67686 67687 67688 67691 67692
## [60457] 67693 67697 67700 67701 67708 67710 67712 67715 67717 67720 67721 67722
## [60469] 67723 67724 67725 67727 67732 67733 67737 67739 67741 67744 67746 67747
## [60481] 67748 67749 67752 67761 67762 67763 67765 67768 67769 67770 67777 67780
## [60493] 67785 67786 67788 67793 67795 67796 67797 67799 67801 67804 67805 67807
## [60505] 67809 67813 67818 67822 67826 67827 67841 67844 67849 67850 67855 67859
## [60517] 67864 67865 67869 67873 67877 67885 67895 67904 67906 67921 67924 67932
## [60529] 67938 67940 67943 67946 67949 67956 67962 67965 67966 67967 67968 67970
## [60541] 67973 67975 67976 67980 67988 67989 67990 67992 67993 67995 68002 68008
## [60553] 68011 68012 68013 68014 68015 68016 68021 68023 68025 68026 68032 68033
## [60565] 68035 68038 68039 68040 68047 68049 68050 68051 68054 68056 68059 68064
## [60577] 68065 68068 68071 68074 68076 68077 68081 68082 68083 68088 68089 68097
## [60589] 68100 68104 68105 68106 68109 68110 68112 68113 68115 68116 68117 68118
## [60601] 68119 68120 68121 68129 68135 68136 68138 68148 68150 68151 68153 68154
## [60613] 68155 68158 68159 68161 68163 68164 68165 68166 68167 68169 68170 68171
## [60625] 68175 68181 68182 68186 68189 68191 68192 68193 68201 68203 68209 68213
## [60637] 68216 68218 68222 68223 68224 68226 68228 68231 68232 68236 68237 68238
## [60649] 68239 68241 68242 68244 68245 68257 68273 68277 68280 68281 68284 68286
## [60661] 68287 68289 68293 68296 68300 68301 68302 68308 68310 68321 68322 68324
## [60673] 68326 68327 68328 68332 68338 68339 68340 68341 68342 68344 68346 68347
## [60685] 68351 68352 68353 68356 68357 68360 68361 68363 68369 68370 68372 68375
## [60697] 68377 68380 68381 68393 68394 68395 68397 68398 68399 68401 68402 68403
## [60709] 68404 68405 68407 68409 68414 68417 68418 68420 68423 68426 68430 68431
## [60721] 68433 68438 68439 68441 68444 68445 68449 68452 68457 68458 68459 68460
## [60733] 68469 68472 68478 68479 68483 68485 68486 68487 68493 68494 68498 68500
## [60745] 68501 68502 68504 68506 68514 68515 68516 68530 68532 68534 68535 68537
## [60757] 68539 68542 68545 68546 68547 68548 68549 68550 68551 68552 68559 68567
## [60769] 68568 68574 68576 68577 68578 68580 68585 68586 68593 68595 68598 68600
## [60781] 68603 68604 68609 68610 68615 68617 68622 68624 68625 68626 68627 68628
## [60793] 68629 68630 68631 68634 68642 68643 68650 68651 68655 68657 68658 68660
## [60805] 68662 68664 68669 68678 68691 68696 68697 68698 68710 68711 68713 68714
## [60817] 68719 68726 68732 68737 68742 68745 68752 68753 68756 68760 68761 68763
## [60829] 68764 68765 68766 68767 68772 68773 68775 68777 68780 68781 68782 68785
## [60841] 68787 68788 68794 68795 68796 68798 68799 68808 68810 68813 68814 68816
## [60853] 68818 68822 68823 68826 68827 68830 68834 68847 68850 68851 68853 68854
## [60865] 68862 68867 68868 68869 68874 68875 68878 68881 68883 68884 68885 68887
## [60877] 68889 68892 68893 68896 68900 68903 68905 68909 68910 68913 68914 68915
## [60889] 68916 68920 68921 68922 68923 68929 68930 68932 68938 68943 68945 68946
## [60901] 68947 68948 68949 68950 68951 68954 68969 68975 68977 68983 68986 68989
## [60913] 68990 68992 68994 68995 68997 68998 68999 69006 69010 69011 69012 69017
## [60925] 69018 69025 69028 69032 69033 69034 69038 69039 69052 69065 69070 69074
## [60937] 69082 69090 69099 69100 69101 69103 69105 69110 69112 69113 69116 69121
## [60949] 69122 69123 69131 69135 69136 69138 69139 69141 69146 69148 69153 69155
## [60961] 69156 69157 69160 69165 69170 69172 69175 69176 69177 69178 69179 69180
## [60973] 69184 69185 69189 69190 69191 69193 69194 69195 69205 69206 69216 69217
## [60985] 69219 69220 69224 69226 69227 69228 69231 69235 69237 69239 69243 69251
## [60997] 69253 69254 69257 69259 69260 69261 69265 69268 69269 69271 69272 69278
## [61009] 69279 69280 69281 69286 69289 69292 69306 69309 69312 69314 69316 69317
## [61021] 69318 69320 69327 69331 69337 69338 69339 69341 69346 69348 69350 69351
## [61033] 69353 69355 69359 69364 69366 69371 69372 69382 69386 69387 69388 69392
## [61045] 69394 69397 69398 69399 69400 69402 69403 69404 69412 69416 69418 69423
## [61057] 69430 69438 69439 69440 69444 69445 69448 69450 69459 69460 69461 69463
## [61069] 69464 69466 69467 69470 69475 69477 69479 69481 69482 69491 69492 69493
## [61081] 69494 69495 69496 69498 69500 69501 69503 69504 69505 69507 69511 69514
## [61093] 69515 69516 69518 69520 69521 69526 69536 69540 69541 69543 69567 69568
## [61105] 69569 69571 69572 69573 69575 69576 69578 69579 69582 69583 69584 69585
## [61117] 69586 69591 69592 69593 69598 69604 69605 69608 69610 69616 69617 69619
## [61129] 69620 69621 69623 69624 69631 69632 69637 69638 69640 69641 69656 69657
## [61141] 69658 69661 69662 69663 69670 69671 69677 69681 69682 69684 69690 69695
## [61153] 69698 69702 69706 69710 69719 69720 69722 69728 69729 69732 69733 69735
## [61165] 69736 69737 69747 69749 69751 69753 69756 69757 69758 69759 69760 69768
## [61177] 69771 69774 69776 69777 69783 69785 69796 69807 69809 69811 69820 69824
## [61189] 69825 69826 69830 69832 69833 69836 69845 69849 69854 69855 69856 69858
## [61201] 69859 69862 69863 69869 69874 69878 69879 69889 69895 69902 69904 69907
## [61213] 69908 69911 69917 69918 69922 69925 69926 69929 69930 69933 69934 69935
## [61225] 69943 69944 69951 69952 69953 69960 69961 69962 69965 69969 69973 69976
## [61237] 69979 69982 69983 69985 69991 69992 69993 69996 69997 69998 70000 70002
## [61249] 70004 70005 70007 70008 70010 70016 70023 70026 70027 70028 70031 70034
## [61261] 70042 70043 70044 70045 70050 70051 70052 70060 70063 70065 70066 70067
## [61273] 70068 70074 70080 70086 70091 70095 70099 70100 70111 70114 70121 70123
## [61285] 70124 70125 70129 70132 70136 70137 70141 70144 70152 70159 70160 70164
## [61297] 70166 70170 70172 70174 70181 70191 70194 70202 70219 70220 70224 70227
## [61309] 70229 70230 70233 70245 70247 70255 70264 70265 70270 70271 70273 70275
## [61321] 70277 70283 70286 70289 70294 70297 70298 70299 70302 70306 70307 70309
## [61333] 70315 70317 70325 70327 70329 70330 70331 70337 70341 70342 70343 70351
## [61345] 70353 70358 70360 70364 70366 70367 70368 70369 70371 70374 70377 70381
## [61357] 70382 70391 70393 70396 70398 70403 70404 70407 70412 70413 70414 70417
## [61369] 70422 70424 70428 70432 70442 70443 70444 70467 70468 70472 70475 70476
## [61381] 70479 70485 70489 70491 70496 70497 70501 70506 70511 70513 70518 70524
## [61393] 70525 70526 70527 70538 70541 70542 70549 70553 70565 70571 70573 70581
## [61405] 70596 70597 70601 70612 70613 70616 70617 70621 70623 70624 70625 70628
## [61417] 70630 70636 70643 70644 70645 70647 70655 70656 70657 70671 70674 70679
## [61429] 70682 70685 70704 70708 70710 70712 70713 70734 70736 70743 70745 70746
## [61441] 70752 70755 70764 70767 70769 70777 70782 70783 70784 70787 70789 70793
## [61453] 70799 70800 70808 70810 70815 70816 70818 70820 70821 70824 70832 70834
## [61465] 70842 70843 70844 70848 70857 70858 70859 70860 70867 70874 70876 70878
## [61477] 70890 70898 70901 70904 70909 70916 70921 70927 70928 70930 70931 70935
## [61489] 70938 70939 70941 70942 70946 70953 70955 70959 70960 70963 70965 70969
## [61501] 70972 70973 70985 70992 71001 71002 71010 71011 71014 71022 71023 71025
## [61513] 71026 71027 71029 71039 71055 71058 71059 71067 71071 71074 71080 71087
## [61525] 71090 71099 71104 71115 71118 71138 71151 71152 71153 71154 71155 71156
## [61537] 71162 71166 71170 71176 71185 71186 71188 71197 71198 71199 71224 71225
## [61549] 71230 71243 71247 71254 71255 71256 71261 71262 71265 71266 71271 71294
## [61561] 71299 71301 71311 71314 71315 71319 71320 71326 71334 71336 71337 71339
## [61573] 71342 71350 71355 71356 71358 71364 71365 71368 71375 71378 71379 71382
## [61585] 71384 71385 71387 71391 71399 71400 71402 71412 71413 71423 71424 71428
## [61597] 71429 71435 71453 71455 71457 71460 71461 71463 71465 71468 71469 71470
## [61609] 71473 71474 71475 71479 71483 71489 71498 71500 71503 71510 71516 71523
## [61621] 71525 71530 71531 71533 71536 71537 71548 71557 71563 71567 71570 71571
## [61633] 71572 71573 71577 71586 71594 71601 71608 71609 71625 71627 71635 71636
## [61645] 71638 71639 71642 71646 71648 71653 71666 71671 71675 71680 71681 71688
## [61657] 71690 71691
## attr(,"class")
## [1] "omit"
unlist(records_wide$number_of_factors) %>% table() %>% sort()
## .
##   29   32   35   38   41   45   70   83  120   22   24   28   40   33   20   21 
##    1    1    1    1    1    1    1    1    1    2    2    2    2    3    4    5 
##   19   17   16   18   15   13   14   12   11    9   10    8    7    1    6    5 
##    8    9   10   16   23   29   39   59  100  114  125  234  330  368  542  875 
##    4    2    3 
## 1195 1331 1727
unlist(records_wide$number_of_factors_subscales) %>% table() %>% sort()
## .
##   22   25   29   38   23   28   30   34   35   36   27   33   21   26   24   20 
##    1    1    1    1    2    2    2    2    2    2    3    3    4    4    5    6 
##   19   17   18   15   16   14   13   12   11   10    9    1    8    7    6    5 
##    9   11   15   24   25   44   61   78  102  185  219  224  390  570  943 1297 
##    4    2    3 
## 1820 1849 2127
ggplot(records_wide, aes(number_of_factors_subscales)) + geom_bar(aes(y= ..count..), stat = 'count') + scale_x_continuous(breaks = 1:20)
## Warning: The dot-dot notation (`..count..`) was deprecated in ggplot2 3.4.0.
## ℹ Please use `after_stat(count)` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## Warning: Removed 61658 rows containing non-finite values (`stat_count()`).

cor(records_wide$number_of_factors_subscales, records_wide$number_of_factors %>% map_dbl(~ .[1]), use = 'p')
## [1] 0.6284253

Number of items

records_wide$NumberOfTestItems <- str_replace_all(records_wide$NumberOfTestItems, "[[:space:]]+", " ")
item_numbers <- records_wide$NumberOfTestItems %>% str_match_all(regex("(\\d+)( |-)(total |primary |main |final )?(item|question)s?( ?-?measure)?", ignore_case = TRUE)) %>% map(~ as.numeric(.[,2]))
table(unlist(item_numbers))
## 
##    0    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15 
##    2  272 1204 3191 3536 3459 3279 2351 2788 2325 3668 1809 3201 1603 1961 2384 
##   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31 
## 2075 1432 1907 1212 2562 1318 1235  985 1609 1283  919  813  938  681 1344  563 
##   32   33   34   35   36   37   38   39   40   41   42   43   44   45   46   47 
##  720  590  526  587  714  383  392  345  733  266  344  257  276  334  208  203 
##   48   49   50   51   52   53   54   55   56   57   58   59   60   61   62   63 
##  303  149  377  155  168  153  197  169  156  126  120   98  303   87   78   95 
##   64   65   66   67   68   69   70   71   72   73   74   75   76   77   78   79 
##  123  101   96   69   68   68  108   47   95   51   43   88   44   48   47   25 
##   80   81   82   83   84   85   86   87   88   89   90   91   92   93   94   95 
##   95   34   28   45   42   34   22   34   36   22   81   21   29   34   30   26 
##   96   97   98   99  100  101  102  103  104  105  106  107  108  109  110  111 
##   47   22   30   26  129    9   21   15   17   16   14   11   26   18   28    8 
##  112  113  114  115  116  117  118  119  120  121  122  123  124  125  126  127 
##   19   10   14   13    9   11   18   13   61   10   13    9    8   22   14   12 
##  128  129  130  131  132  133  134  135  136  137  138  139  140  141  142  143 
##   14    8   11    8   17    8   11   17   13    6    9   10   18    6    4    7 
##  144  145  146  147  148  149  150  151  152  153  154  155  156  157  158  159 
##   15    5    2    5    5    6   40    6    2   12    6    7    4    5    4    3 
##  160  161  162  163  164  165  166  167  168  169  170  172  174  175  176  177 
##   26    5    9    1    6    6    7    2    8    3    4    3    5    6    1    2 
##  178  179  180  181  182  183  184  185  186  187  188  189  190  191  192  193 
##    4    4   18    4    3    3    1    6    1    7    2    5    7    3    6    1 
##  194  195  196  197  198  199  200  201  202  203  204  205  206  207  209  210 
##    1    4    3    3    2    3   15    2    2    1    1    4    1    2    1   10 
##  212  214  215  216  217  218  219  220  223  224  225  226  228  229  230  232 
##    2    1    3    7    2    3    1    8    3    2    3    1    1    2    2    1 
##  233  234  235  237  239  240  241  243  244  246  249  250  252  254  255  256 
##    2    2    2    1    1   12    1    1    1    2    2    5    1    1    1    1 
##  257  258  260  262  263  264  265  266  271  273  275  276  279  280  284  285 
##    1    3    2    2    1    2    1    1    1    1    2    1    1    2    1    1 
##  286  288  289  290  292  295  298  300  302  304  305  308  309  310  319  320 
##    1    2    1    2    1    1    2    9    1    1    2    1    1    1    1    1 
##  324  325  328  331  337  338  342  343  344  346  348  350  355  358  360  363 
##    5    1    1    2    1    1    1    1    3    1    1    1    1    1    3    1 
##  375  378  380  381  383  386  387  389  390  400  401  415  417  418  430  431 
##    1    1    1    1    1    1    1    2    1    3    1    3    1    1    1    1 
##  435  440  442  445  448  453  466  468  469  473  478  483  484  486  490  494 
##    1    1    2    1    1    1    2    1    1    1    3    1    1    1    1    1 
##  498  500  508  522  524  550  563  567  589  619  631  646  671  672  680  702 
##    1    1    1    1    1    1    1    1    2    3    2    1    2    1    1    1 
##  704  718  730  740  755  800  900  920  925  930  941  999 1192 1994 
##    1    1    1    1    1    4    1    1    1    1    1    1    1    1
consists_of_numbers <- records_wide$NumberOfTestItems %>% str_match_all(regex("(comprises|consists of|contains|composed of|comprised of|) (\\d+)", ignore_case = TRUE)) %>% map(~ as.numeric(.[,3]))

just_numbers <- str_match(records_wide$NumberOfTestItems,pattern = "^(\\d+) ?$")[,2] %>% as.numeric()

table(unlist(item_numbers))
## 
##    0    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15 
##    2  272 1204 3191 3536 3459 3279 2351 2788 2325 3668 1809 3201 1603 1961 2384 
##   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31 
## 2075 1432 1907 1212 2562 1318 1235  985 1609 1283  919  813  938  681 1344  563 
##   32   33   34   35   36   37   38   39   40   41   42   43   44   45   46   47 
##  720  590  526  587  714  383  392  345  733  266  344  257  276  334  208  203 
##   48   49   50   51   52   53   54   55   56   57   58   59   60   61   62   63 
##  303  149  377  155  168  153  197  169  156  126  120   98  303   87   78   95 
##   64   65   66   67   68   69   70   71   72   73   74   75   76   77   78   79 
##  123  101   96   69   68   68  108   47   95   51   43   88   44   48   47   25 
##   80   81   82   83   84   85   86   87   88   89   90   91   92   93   94   95 
##   95   34   28   45   42   34   22   34   36   22   81   21   29   34   30   26 
##   96   97   98   99  100  101  102  103  104  105  106  107  108  109  110  111 
##   47   22   30   26  129    9   21   15   17   16   14   11   26   18   28    8 
##  112  113  114  115  116  117  118  119  120  121  122  123  124  125  126  127 
##   19   10   14   13    9   11   18   13   61   10   13    9    8   22   14   12 
##  128  129  130  131  132  133  134  135  136  137  138  139  140  141  142  143 
##   14    8   11    8   17    8   11   17   13    6    9   10   18    6    4    7 
##  144  145  146  147  148  149  150  151  152  153  154  155  156  157  158  159 
##   15    5    2    5    5    6   40    6    2   12    6    7    4    5    4    3 
##  160  161  162  163  164  165  166  167  168  169  170  172  174  175  176  177 
##   26    5    9    1    6    6    7    2    8    3    4    3    5    6    1    2 
##  178  179  180  181  182  183  184  185  186  187  188  189  190  191  192  193 
##    4    4   18    4    3    3    1    6    1    7    2    5    7    3    6    1 
##  194  195  196  197  198  199  200  201  202  203  204  205  206  207  209  210 
##    1    4    3    3    2    3   15    2    2    1    1    4    1    2    1   10 
##  212  214  215  216  217  218  219  220  223  224  225  226  228  229  230  232 
##    2    1    3    7    2    3    1    8    3    2    3    1    1    2    2    1 
##  233  234  235  237  239  240  241  243  244  246  249  250  252  254  255  256 
##    2    2    2    1    1   12    1    1    1    2    2    5    1    1    1    1 
##  257  258  260  262  263  264  265  266  271  273  275  276  279  280  284  285 
##    1    3    2    2    1    2    1    1    1    1    2    1    1    2    1    1 
##  286  288  289  290  292  295  298  300  302  304  305  308  309  310  319  320 
##    1    2    1    2    1    1    2    9    1    1    2    1    1    1    1    1 
##  324  325  328  331  337  338  342  343  344  346  348  350  355  358  360  363 
##    5    1    1    2    1    1    1    1    3    1    1    1    1    1    3    1 
##  375  378  380  381  383  386  387  389  390  400  401  415  417  418  430  431 
##    1    1    1    1    1    1    1    2    1    3    1    3    1    1    1    1 
##  435  440  442  445  448  453  466  468  469  473  478  483  484  486  490  494 
##    1    1    2    1    1    1    2    1    1    1    3    1    1    1    1    1 
##  498  500  508  522  524  550  563  567  589  619  631  646  671  672  680  702 
##    1    1    1    1    1    1    1    1    2    3    2    1    2    1    1    1 
##  704  718  730  740  755  800  900  920  925  930  941  999 1192 1994 
##    1    1    1    1    1    4    1    1    1    1    1    1    1    1
numbers <- records_wide$NumberOfTestItems %>% str_match_all("(\\d+)( |-)?") %>% map(~ as.numeric(.[,2]))

words <- case_when(
  str_detect(records_wide$NumberOfTestItems, regex("single(-| )(item|question)", ignore_case = TRUE)) ~ 1,
  str_detect(records_wide$NumberOfTestItems, regex("one(-| )(item|question)", ignore_case = TRUE)) ~ 1,
  str_detect(records_wide$NumberOfTestItems, regex("two(-| )(item|question)", ignore_case = TRUE)) ~ 2,
  str_detect(records_wide$NumberOfTestItems, regex("three(-| )(item|question)", ignore_case = TRUE)) ~ 3,
  str_detect(records_wide$NumberOfTestItems, regex("four(-| )(item|question)", ignore_case = TRUE)) ~ 4,
  str_detect(records_wide$NumberOfTestItems, regex("five(-| )(item|question)", ignore_case = TRUE)) ~ 5,
  str_detect(records_wide$NumberOfTestItems, regex("six(-| )(item|question)", ignore_case = TRUE)) ~ 6,
  str_detect(records_wide$NumberOfTestItems, regex("seven(-| )(item|question)", ignore_case = TRUE)) ~ 7,
  str_detect(records_wide$NumberOfTestItems, regex("eight(-| )(item|question)", ignore_case = TRUE)) ~ 8,
  str_detect(records_wide$NumberOfTestItems, regex("nine(-| )(item|question)", ignore_case = TRUE)) ~ 9,
  str_detect(records_wide$NumberOfTestItems, regex("ten(-| )(item|question)", ignore_case = TRUE)) ~ 10,
  str_detect(records_wide$NumberOfTestItems, regex("eleven(-| )(item|question)", ignore_case = TRUE)) ~ 11,
  str_detect(records_wide$NumberOfTestItems, regex("twelve(-| )(item|question)", ignore_case = TRUE)) ~ 12,
  str_detect(records_wide$NumberOfTestItems, regex("thirteen(-| )(item|question)", ignore_case = TRUE)) ~ 13,
  str_detect(records_wide$NumberOfTestItems, regex("fourteen(-| )(item|question)", ignore_case = TRUE)) ~ 14,
  str_detect(records_wide$NumberOfTestItems, regex("fifteen(-| )(item|question)", ignore_case = TRUE)) ~ 15,
  str_detect(records_wide$NumberOfTestItems, regex("sixteen(-| )(item|question)", ignore_case = TRUE)) ~ 16,
  str_detect(records_wide$NumberOfTestItems, regex("seventeen(-| )(item|question)", ignore_case = TRUE)) ~ 17,
  str_detect(records_wide$NumberOfTestItems, regex("eighteen(-| )(item|question)", ignore_case = TRUE)) ~ 18,
  str_detect(records_wide$NumberOfTestItems, regex("nineteen(-| )(item|question)", ignore_case = TRUE)) ~ 19,
  str_detect(records_wide$NumberOfTestItems, regex("twenty(-| )(item|question)", ignore_case = TRUE)) ~ 20,
  str_detect(records_wide$NumberOfTestItems, regex("forty(-| )(item|question)", ignore_case = TRUE)) ~ 40,
  str_detect(records_wide$NumberOfTestItems, regex("sex items", ignore_case = TRUE)) ~ 6,
  TRUE ~ NA_real_)

words_without_item <- case_when(
  str_detect(records_wide$NumberOfTestItems, regex("single", ignore_case = TRUE)) ~ 1,
  str_detect(records_wide$NumberOfTestItems, regex("one", ignore_case = TRUE)) ~ 1,
  str_detect(records_wide$NumberOfTestItems, regex("two", ignore_case = TRUE)) ~ 2,
  str_detect(records_wide$NumberOfTestItems, regex("three", ignore_case = TRUE)) ~ 3,
  str_detect(records_wide$NumberOfTestItems, regex("four", ignore_case = TRUE)) ~ 4,
  str_detect(records_wide$NumberOfTestItems, regex("five", ignore_case = TRUE)) ~ 5,
  str_detect(records_wide$NumberOfTestItems, regex("six", ignore_case = TRUE)) ~ 6,
  str_detect(records_wide$NumberOfTestItems, regex("seven", ignore_case = TRUE)) ~ 7,
  str_detect(records_wide$NumberOfTestItems, regex("eight", ignore_case = TRUE)) ~ 8,
  str_detect(records_wide$NumberOfTestItems, regex("nine", ignore_case = TRUE)) ~ 9,
  str_detect(records_wide$NumberOfTestItems, regex("ten", ignore_case = TRUE)) ~ 10,
  str_detect(records_wide$NumberOfTestItems, regex("eleven", ignore_case = TRUE)) ~ 11,
  str_detect(records_wide$NumberOfTestItems, regex("twelve", ignore_case = TRUE)) ~ 12,
  str_detect(records_wide$NumberOfTestItems, regex("thirteen", ignore_case = TRUE)) ~ 13,
  str_detect(records_wide$NumberOfTestItems, regex("fourteen", ignore_case = TRUE)) ~ 14,
  str_detect(records_wide$NumberOfTestItems, regex("fifteen", ignore_case = TRUE)) ~ 15,
  str_detect(records_wide$NumberOfTestItems, regex("sixteen", ignore_case = TRUE)) ~ 16,
  str_detect(records_wide$NumberOfTestItems, regex("seventeen", ignore_case = TRUE)) ~ 17,
  str_detect(records_wide$NumberOfTestItems, regex("eighteen", ignore_case = TRUE)) ~ 18,
  str_detect(records_wide$NumberOfTestItems, regex("nineteen", ignore_case = TRUE)) ~ 19,
  str_detect(records_wide$NumberOfTestItems, regex("twenty", ignore_case = TRUE)) ~ 20,
  str_detect(records_wide$NumberOfTestItems, regex("thirty", ignore_case = TRUE)) ~ 30,
  str_detect(records_wide$NumberOfTestItems, regex("forty", ignore_case = TRUE)) ~ 40,
  str_detect(records_wide$NumberOfTestItems, regex("fifty", ignore_case = TRUE)) ~ 50,
  TRUE ~ NA_real_)

table(words)
## words
##   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  18  20  40 
## 252 209 362 527 402 381 265 293 271  71   2   1   6   3   1   2   1   5   2
table(words_without_item[which(words_without_item!=words)])
## 
##  1  2  3  4  5  6  7  8  9 
## 57 68 21 29  8  5  2  1  1
records_wide$NumberOfTestItems[!is.na(words)]
##    [1] "The ASI-3 has 18 items, with three subscales: Physical, Cognitive, and Social. One-two items for each subscale are shared with the ASI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [2] "The Greek version of the Feelings Toward Group Work Questionnaire is comprised of 24 items. The Preference for Group Work subscale comprised eight items, the Preference for Individual Learning subscale nine items, and the Discomfort in Group Learning subscale seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [3] "The Pattern Comprehension Test consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [4] "Iowa Geography Test consists of two parts: Part I has five items, and Part II has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [5] "The measure consists of 17 items, comprised within 3 subscales: the nine-item faintness subscale, the four-item anxiety subscale, and the four-item tension subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [6] "Child Psychosocial Distress Screener consists of seven items, five for the child and two for the teacher of the child. Three of the seven items have probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [7] "The CEQ-A contains twenty-one items that assess three different domains of classism: institutionalized classism, stereotype citation, and interpersonal classism via discounting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [8] "The PCM-T consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [9] "The Psychological Outcome Profiles is composed of 9 items. Each of the three versions (pre-therapy, during therapy, after therapy) features nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [10] "The Toolkit for Evaluating Programs Meant to Erase the Stigma of Mental Illness is composed of at least seven different measures. It includes the Anti-Stigma Worksheet; three versions of the Attribution Questionnaire--the 27-item version (AQ-27), the nine item (AQ-9), and a short form for children (AQ-8-C)--developed to address nine stereotypes about people with mental illness; the Resource Allocation Test (meant to represent the allocation process that corresponds with program support); the Family Questionnaire, which assesses public stereotypes about family members of people with mental illness in 12 domains; the Self-Stigma of Mental Illness Scale, the Recovery Assessment Scale, and the Level of Familiarity Scale."                                                                                                                    
##   [11] "The Peer Response Measure consists of 16 items and four factors: Compensate, Train, Motivate, and Reject. Each factor has four items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [12] "The final 32-item version of the Stages of Change Scales has with eight items for each of four stages (Pre-Contemplation, Contemplation, Action, and Maintenance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [13] "The Non-Language Survey Tests appears to consist of Pinter's (1919) Non-Language Mental Test (six items) and a Cancellation Test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [14] "Academic Fit Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [15] "The Aspiration Index contains 21 items rated on four domains: self-acceptance (four items), affiliation (six items), community feeling (six items), and financial success (five items). There was also a shorter 14-item version used by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [16] "The Body Investment Scale consists of four factors with six items in each factor totaling 24 items. Factor 1 includes items related to body image feelings and attitudes. Factor 2 consists of items relating to comfort in touch. Factor 3 includes items about body care. Factor 4 contains items about body protection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [17] "Three items assess degree of attentional focus, perceived sensitivity to changes in bodily sensations, and the average amount of time spent attending to bodily sensations. A fourth item involves separate ratings for attention to 15 sensations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [18] "The final version of this scale includes 12 items measuring 1) the acceptance of the prescribed psychotropic medication (seven items) and 2) compliance behaviours with the prescribed medications (five items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [19] "The Coping Scales consist of 20 items and 7 factors: Precaution (five items), Remain Home (three items), Withdrawal (four items), Activity (two items), Minimization (two items), Stress Reduction (two items), and Suppression (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [20] "Five items were used in first study of the current article, while the full set of 11 items were used in the second study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [21] "57 item self-report survey consisting of 10 four- to six-item subscales (Connectedness to Neighborhood, Connectedness to Friends, Connectedness to Reading, Connectedness to Parents, Connectedness to Siblings, Connectedness to School, Connectedness to Peers, Connectedness to Teachers, Connectedness to Self-in-the-Future, and Connectedness to Self-in-the-Present)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [22] "The Authoritarian-Equalitarian Scale contain's eight items, though only seven were examined in this article."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [23] "The first item of the Willingness to Sacrifice Scale is open-ended followed by four Likert-type items (the authors also used three items after the open-ended question in some studies)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [24] "The Academic Satisfaction Scale five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [25] "The Nonsectarian Antisocial Behavior Scale is a seven-item questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [26] "The Affect Grid is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [27] "The 26-item Outcome Scales consist of 3 factors: Depression (12 items), Sexual Dissatisfaction (eight items), and Fear (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [28] "The TDS-K consists of a total of 9 items, with three items each representing the processes input, throughput, and output."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [29] "This measure is a fourteen-item questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [30] "The Weight Efficacy Life-Style Questionnaire contains 20 items consisting of five situational factors: Negative Emotions, Availability, Social Pressure, Physical Discomfort, and Positive Activities (each with four items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [31] "The Civic Attitudes Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [32] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [33] "The long form (LF) of the Injecting Risk Questionnaire contains 18 items, while the short form comprises 2 items. A single-item measure (Health of the Nation Question—HNQ) was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [34] "The Alcohol, Smoking and Substance Involvement Screening Test contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [35] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [36] "The Disclosure Probes consist of 24 questions clustered into four blocks, two highly intimate and two nonintimate, of six questions each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [37] "The Leisure Time Physical Activity Instrument contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [38] "There are five items in the Workplace Health Friendliness Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [39] "The PDSR consists of a total of 24 items. The first four items assess whether a person has had recurrent and unexpected panic attacks, and if so, the total number of lifetime panic attacks. The next three questions assess worry and change in behavior in response to panic attacks. Next, the PDSR includes a list of 12 symptoms associated with panic attacks and assesses whether these symptoms were experienced during the most severe panic attack. The next two questions ask individuals to then rate distress and interference caused by panic attacks. The PDSR concludes with a question to verify that most panic attacks peaked within 10 min, as well as two questions to rule out substance and medically related causes for the panic attacks."                                                                                                       
##   [40] "The Self-Concept and Intent Scales contains 32 items (five items each for English, math, Cantonese, and Mandarin self-concepts and three items each for teachers’ intent to teach English, math, Chinese, and Mandarin)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [41] "The AAS has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [42] "The measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [43] "The FES-CV consists of a 30-item inventory that contains three items for each of the following subscales: cohesion, expressiveness, conflict, independence, achievement orientation, intellectual-cultural orientation, active-recreational orientation, moral-religious emphasis, organization, and control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [44] "The measure consists of two questions asking which household members had been exposed to noise and sound fairly frequently. Four question followed each of those two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [45] "The Misanthropy Scale consists of twenty-nine items rewritten from existing measures of ethnic prejudice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [46] "The Collaboration and Satisfaction About Care Decisions measure contains 9 items: six questions measure the critical attributes of collaboration, one question assesses the global measure of collaboration, and two questions measure satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [47] "The Arizona Social Support Interview Schedule consists of a series of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [48] "The Personal Attributes Questionnaire consists of 55 items and 3 subscales: Male (23 items), Female (18 items), and Male-Female (13 items). One item does not appear on any subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [49] "The Psychological Availability scale consisted of nine items and the Reliance on Partner scale consisted of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [50] "This measure has 8 items. Three items can be used as a shorter scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [51] "The Situational Interview is limited to one or two questions, which was necessitated by the 60-minute time limit that the company believed could be devoted to conducting one interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [52] "The SDS contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [53] "The Work Schedule Characteristics Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [54] "The checklist includes nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [55] "Each assessment contains between two and twenty-four items (although the 5-Year-Old/Kindergarten and First-Grade Assessments contain some longer subtests such as naming all 26 letters of the alphabet). Several assessments have identical items but the criteria change, requiring older children to demonstrate more skills than younger children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [56] "Factor 1 included Items 1 and 4 (negatively) and was labeled Express. Factor 2 included Items 2 and 7 (negatively) and was labeled Deamplify. Factors 3, 4, and 5 included the single items 3, 6, and 5, respectively, and were labeled Amplify, Mask, and Qualify."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [57] "The Help-Seeking Behavior Scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [58] "The Teacher Unwinding and Recuperation Scale includes six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [59] "The CBSD Scale is composed of three items drawn from the Brief Cope Inventory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [60] "The Amyotrophic Lateral Sclerosis Assessment Questionnaire-5 contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [61] "The test includes three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [62] "The GASP contains two four-item guilt subscales that assess negative behavior-evaluations and repair action tendencies following private transgressions, and two four-item shame subscales that assess negative self-evaluations and withdrawal action tendencies following publicly-exposed transgressions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [63] "Twenty-eight items, divided into 3 sections of questions: (1) Trust, (2) Behavior, and (3) Tradeoff."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [64] "The scale consists of 12 items. Adolescents reported how often they attended (four items) paid attention to (four items), and experienced a sense of challenge (four items) in four types of classes (Math, English, Social Studies, and Science)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [65] "The 20-item What Motivates Teachers questionnaire consists of a demographics section, and four measures: a 12–item teachers’ self-efficacy scale, a two-item job satisfaction scale, one item measuring overall job stress, and seven items measuring sources of job stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [66] "The Parental Knowledge Assessment consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [67] "Financial strain is assessed with three indicators, received economic support is measured with four indicators, three questions are used to derive a measure of anticipated economic assistance, and depressive symptomatology is measured with six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [68] "The Compassionate and Self-Image Goals Scale consists of 13 items: seven items assess compassionate goals, while the remaining six items assess self-image goals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [69] "There are 36 items in the scale, with six items each in the following subscales: Collective Purpose, Financial Strain, Social Contact, Status, Time Structure, and Enforced Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [70] "This measure consists of the the two-item Mistrust and three-item Trust scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [71] "The CERQ consists of 36 items and four, nine-item subscales: Self-Blame, Acceptance, Focus on Thought/Rumination, Positive Refocusing, Refocus on Planning, Positive Reappraisal, Putting into Perspective, Catastrophizing, and Blaming Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [72] "The Intergenerational Congruence in Immigrant Families--Child Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [73] "The Intergenerational Congruence in Immigrant Families--Parent Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [74] "The Inclusion of Other in the Self Scale is a single-item pictorial measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [75] "The Twenty-Two Item Screening Score consists of 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [76] "This instrument contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [77] "The CISQ is composed of 36 items, consisting of six components and six items per scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [78] "Eleven items assess the seven DSM-IV dependence criteria. For cannabis and hallucinogens, eight items assess the seven DSM-IV withdrawal symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [79] "The 14-item Biphasic Alcohol Effects Scale consists of a seven-item stimulant subscale and a seven-item sedative subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [80] "The measure consists of one item (whether family members ever smoked). An algorithm is then applied to this item, computing the FSI as the sum of two weighted proportions. The first proportion reflects the ratio of first-degree biological relatives who ever exhibited a pattern of regular, daily smoking. The second proportion is similarly computed on the basis of information concerning second-degree biological relatives."                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [81] "The FSQ contains 34 core items that are scored by computer to produce 6 summary scale scores: basic activities of daily living (ADL), intermediate ADL, mental health, social activity, work performance, and quality of interaction. In addition, six single items assess satisfaction with health and sexual relationships."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [82] "The Modified Hope Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [83] "The CASI is an interactive interview consisting of 16 events, which are divided equally between positive and negative events (8 of each), and between interpersonal and achievement events (8 of each), thus yielding 4 events for each combination. The three questions that follow each of the 16 events yield a total of 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [84] "The NHP consists of 45 yes-no questions, divided into two sections: (1) Thirty-eight questions addressing the topics relating to the health status of the individual, and (2) Seven questions addressing the impact of ill health upon daily life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [85] "This 6-item measure consists of three two-item scales: Pressure from family, Pressure from friends, and Pressure from partners."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [86] "The 19-item Dimensions of Religious Ideology consists of 3 scales of 6 questions each (Orthodoxy, Fanaticism, and Importance), and 1 single-question scale (Ambivalence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [87] "This 20-item measure consists of four scales of five items each: Guilt-Oriented Scale, Love-Oriented Self-Centered Scale, Love-Oriented Other-Centered Scale, and Conventional Religiosity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [88] "The HITS has four items, with two items measuring both verbal and physical aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [89] "The CASE consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [90] "The scales includes 5 pairs of adjectives for the loving God index, and 5 pairs for the controlling God index. The authors note that the measure is a thirteen-item semantic differential scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [91] "The Mig-SCog includes nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [92] "Situations on the PSI were derived from the narrative descriptions of the following therapeutic community clients: 54 in the reentry phase recounting 2-5 days worth of experiences and 43 in the posttreatment phase. Five scales represent skill areas important for the prevention of continued drug use: (a) skills to avoid drug use (5 items); (b) skills to avoid alcohol use (7 items); (c) consequential thinking skills (2 items); (d) relapse coping skills (4 items); and (e) conventional social, problem-solving, and stress-coping skills (29 items). Four items were dropped from analysis because they did not contribute to subscale reliability."                                                                                                                                                                                                       
##   [93] "Three subscales labeled \"interpersonal sensitivity\" (11 items), \"interpersonal ambivalence\" (ten items), and \"aggression\" (seven items) comprise the Inventory of Interpersonal Problems—Personality Disorders. Also, two subscales labeled \"need for social approval\" (nine items) and \"lack of sociability\" (ten items) are included in the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [94] "The CPSS contains one question for each of the 17 DSM–IV PTSD symptoms to ascertain their frequency in the past month."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [95] "CI-PA subscales contain four or five items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [96] "The Subjective Units of Distress Scale consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [97] "The Peer Nomination Instrument consists of three subscales: The Overt Aggression subscale consists of five items, the Relational Aggression subscale consists of five items, and the Prosocial Behavior subscale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [98] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [99] "Nine items are used to measure computer identification in the CT-DIM."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [100] "The Helping-Coping Attribution Scale for the client and therapist each contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [101] "The final PAQ-C questionnaire consisted of ten items, nine of which are used to calculate a summary activity scores."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [102] "The Big Five Questionnaire consists of 60 items, with 12 items measuring each of the Big Five personality traits (Neuroticism, Extraversion, Openness, Agreeableness, and Conscientiousness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [103] "The Personality Audit includes 42 items spread over seven six-item scales: Low self-esteem-high self-esteem, vigilant-trustful, laissez-faire-conscientious, self-effacing-assertive, introverted-extroverted, low-spirited-high spirited, and prudent/adventurous. Respondents indicate the degree to which each statement describes the way they (or the individuals that they are assessing) act in a particular situation on a seven-point Likert-type scale."                                                                                                                                                                                                                                                                                                                                                                                                         
##  [104] "Respondents were first asked to indicate which specific ethnic subgroup best described their background (e.g., Chinese, Vietnamese). Then, they answered the four items measuring the extent to which they identified with and spent time with members of their ethnic group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [105] "This measure consists of 20 items and 4 factors: Factor I = Positive Adjustment/Development (six items), Factor II = Negative Behavior (six items), Factor III = Emotional Reactivity (four items), and Factor IV = Distancing From Caregiver Support (four items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [106] "The measure consists of 24 items and four, six-item subscales: Causality, Attitude Toward Contradictions, Perception of Change, and Locus of Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [107] "The Attitudes toward the Vietnam War Measure consists of one question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [108] "The a Adult PAQ contains nine items per scale for a total of 63 items. ;"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [109] "The Child PAQ contains six items per scale for a total of 42 items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [110] "The measure consists of 28 items concerning possible reasons for unemployment, as well as one item (internal attribution item) measuring one's degree of self-blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [111] "The measure consists of 36 questions. Six questions were employed for the measure of nonintrusive information seeking, while 30 questions were used for the index of intrusive information seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [112] "This scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [113] "The Infant-Individual Interaction Scale is composed of three items, each with four options, wherein the caregiver notes: (1) the individual’s estimated distance from the infant; (2) the amount of time that the individual interacted with the infant; and (3) the infant’s attention or interest toward the individual. It also contains places to note the approximate age, sex, and race of the individual interacting with the infant."                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [114] "Sixteen items were selected to form the Cancer Locus of Control scale (6 items for the Control Over the Cause of Cancer subscale, 7 items for the Control Over the Course of Cancer subscale, and 3 items for the Religious Control subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [115] "The Quiz Game consisted of subjects' answering three sets of multiple-choice questions, each set consisting of five questions; these three sets of questions are referred to as Trials 1, 2, and 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [116] "This is an 18-item measure. Three items assess self-character blame, 5 items assess self-behavior blame, 4 items assess situational blame, 3 items assess blame to others, and 3 items assess chance blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [117] "Responses are clustered into Family and Parent Events (five items), Accident and Illness Events (four items), and Relocation Events (three items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [118] "The Religious Tranquility Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [119] "The scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [120] "Four of the indexes consisted of single items; a fifth index consisted of 2 items and the final index consisted of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [121] "The Bodily Transformation Scale is composed of 9 items. Three items each were designed for the elation transformation, the gladness transformation, and the joy transformation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [122] "There are thirty questions on the survey. Each question relates to one of the three types of courage that are introduced in the Courageous Leadership workshop, ten questions per courage type. There are ten questions per courage type, so the highest score that can be obtained in each category is 50."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [123] "The Locus of Control Indicator contains 2 scales (External and Internal), each with four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [124] "The Humility-Empathy-Assertiveness-Respect Test consists of four scenarios, each with five questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [125] "There are two parts to this test, with three items per part."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [126] "The Short Form comprises the first 36 items on Form R, including 4 items from each of the nine subscales. Form I has 90 items, each of which is parallel to one item in Form R."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [127] "The COIB consists of forty questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [128] "COPE consists of six items which describe a person and his or her behavior in a particular situation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [129] "The Marital Attitudes Evaluation consists of consists of two parts with 45 statements each. Each of the two parts of MATE consists of five scales, each scale defined by nine items devised with the aid of the Guttman scaling techniques."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [130] "There are fifty-six statements with twenty-eight items about needs and twenty-eight items about wants and desires."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [131] "Each of the four components in PsyCap are measured by six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [132] "The Therapeutic Realizations Scale—Revised is composed of 16 items (one item out of 17 was deleted from the present analysis)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [133] "The SII consists of 17 heterosexual behaviors. For each behavior, both husband and wife separately answer six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [134] "The scale is composed of 12 vignettes and 36 items. One item following each vignette measures each of three orientations (autonomy, control, and impersonal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [135] "There are 96 items in each of the four questionnaires of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [136] "There are eight items in the Survey of Opinions—Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [137] "This is a 20-item measure. The ATLG consists of two ten-item subscales, one for attitudes toward gay men (ATG) and the other for attitudes toward lesbians (ATL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [138] "The Ten-Item Personality Inventory—German Version is composed of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [139] "This is an 18-item measure. Each of the measure's six factors contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [140] "The number of items in physical functioning, role functioning, pain, general health perceptions, social functioning, energy, and emotional well-being subscales were .9, 2, 2, 3, 2, 2, and 7, respectively. The number of items in the emotional well-being subscale are: positive affect (2 items), negative affect (5 items), anxiety (2 items), and depression (3 items). Disability days, overall health, and overall quality of life are single items."                                                                                                                                                                                                                                                                                                                                                                                                              
##  [141] "The Epworth Sleepiness Scale is a self-administered form with eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [142] "The Power Sharing in Lesbian Partnerships contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [143] "Pediatric Asthma Symptom Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [144] "The CERQ-Short contains 18 items and 9 scales, with two items each. The scales are: Self-blame, Other-blame, Rumination, Catastrophizing, Positive Refocusing, Planning, Positive Reappraisal, Putting into Perspective, and Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [145] "Three questions inquire about physicians, three questions pertain to nurses, and two open-ended items were designed to probe the degree of problem oriented ideas about the operation. Additionally, the questionnaire was expanded to ask the response experiment subjects whether or not anything had made them angry, depressed, or anxious since their operation. Finally, there were open-ended items which asked about sources of their anger, fear, and depression."                                                                                                                                                                                                                                                                                                                                                                                                
##  [146] "The Sexual Preference Scale four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [147] "Section I consists of ten questions, Section II, consists of 13 items, and Section III contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [148] "The Interpersonal Sexual Objectification Scale is composed of 15 items, with Factor 1 (labeled body evaluation) containing 11 items and Factor 2 (labeled physical invasion) containing four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [149] "The Perceived Heterosexism Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [150] "The Preoccupation with Disclosure of Parents’ Sexual Orientation Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [151] "There are 12 items in the questionnaire, with six items each forming the Task Orientation and Ego Orientation subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [152] "It contains seven content areas: memory for treatment-related experiences (4 items); re-experiencing, reminders, avoidance, and life threat (14 items); A2 criteria for DSM-IV-PTSD diagnosis (9 items); Attributions for causality (3 items); Medical problems (six items); Perceptions of changes in self due to cancer and treatment (3 items); and Communication (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [153] "There are 5 single-item measures, each corresponding to a personality trait from the Five Factor Model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [154] "The Child Stigma Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [155] "The Measure of Sexual Orientation contains one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [156] "The measure consists of a total of 12 items (four items per subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [157] "The Brief Inventory of Values contains four three-item subscales: Self-Transcendence, Self-Enhancement, Openness to Change, and Conservation or Traditional. The Self-Transcendence is also a 6-item scale with separate 3-item scales of biospheric and altruistic values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [158] "The Stanford Hypnotic Clinical Scale for Adults contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [159] "The Long-Term Orientation Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [160] "This instrument comprises two questionnaires, both of which consist of 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [161] "There are 11 items in the IPDS. Each IPDS item is evaluated with one or two questions (in total: 19 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [162] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [163] "This measure consists of ten core items, along with one “Other” item and one item assessing overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [164] "Eleven items measure each dimension of monogamy (emotional and sexual)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [165] "The AAT consists of 19 items and two scales: a facilitating scale of nine items and a debilitating scale of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [166] "Four short form versions were created, consisting of two, three, four and six items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [167] "The Behavior Checklist consists of 20 behavioral descriptions. Ten items measure high self-esteem, and 10 behaviors measure low self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [168] "The scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [169] "This is a seven-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [170] "The test is made up of four parts, each containing the same six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [171] "Disaster response exposure variables consisted of nine questions about the participants’ experiences while on assignment related to the September 11, 2001 terrorist attacks on the US."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [172] "This 9-item measure consists of two subscales. These subscales were Racial Experiences (five items) and University Perceptions (four items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [173] "10 brief stories, two per conflict area (authority, independence, masculinity/femininity, competition, and situational), followed by four questions regarding respondent's actual behavior, fantasy behavior, thoughts, and feelings in the situations described."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [174] "This is an 18-item measure. Six-item and 3-item versions of the measure were also developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [175] "The measure consists of 16 items assessing these two new supplementary scales (i.e., eight items per scale): Altruism versus Antagonism and Negative Self-Evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [176] "This 24-item scale (12 masculine items and 12 feminine items) consists of 7 Toy items, 11 Activity items, and 6 Character items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [177] "The scale consists of 16 items, measuring four mood types. Four items measured each mood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [178] "The scale consists of 10 items and two subscales with five items each. The subscales are Time Commitment and Work Intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [179] "This measure contains 12 items. Six items constitute a composite index causal role of behavioral blame. Another six items comprise a composite index of characterological blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [180] "Five items were generated for each of the 2 categories of emotional and practical support. These items are listed along the ordinate axis of a grid, while the grid columns contain the names of 11 potential role relationships: spouse or partner, mother, father, closest child, best friend, an important relative, best neighbor, boss, work colleague, important professional, and closest brother or sister. A twelfth column is labeled 'other'. There are 2 version of the grid, labeled \"actual\" and \"ideal\" support."                                                                                                                                                                                                                                                                                                                                       
##  [181] "The Yard Burning Interview contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [182] "The Typical Levels of Learning Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [183] "The Family Decision Making Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [184] "The Goal-Focused Leadership and Performance Scales are composed of 12 items, five items for Goal-Focused Leadership and 7 items for Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [185] "The Graphic Closeness Scale consists of a single item for every person that the participant rates with respect to interpersonal/emotional closeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [186] "The scale consists of nine items: (energy, 3 items), (dedication, 3 items), and (absorption, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [187] "The Personal identity Violation Measure contains four items, as does the Social Identity Violation Measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [188] "The Australian Sex Role Scale has two parallel forms, each with 20 feminine items, 20 masculine items, and 10 social desirability items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [189] "The scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [190] "Leaders and team members were asked to rate team goal accomplishment using a five-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [191] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [192] "The first factor, which measures reciprocal interdependence, includes 5 item. The second factor, which reflects independence, includes three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [193] "The Therapeutic Alliance Perception Questionnaire is composed of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [194] "Team creativity is measured by four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [195] "Perceived Goal Orientation Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [196] "The Leader Effectiveness Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [197] "The Commitment to Customers Scale is a 17-item scale. Affective Commitment (AC) and Normative Commitment (NC) are captured by six items, and Continuance Commitment (CC) is measured via five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [198] "The two cultural values were measured using seven items, with the first four items measuring collectivism and the next three items measuring power distance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [199] "This measure asks one question with several response alternatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [200] "The EPQR-A has 24 items and four, six-item scales: Neuroticism, Extraversion, Psychoticism, and the Lie scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [201] "This measure consists of 12 items. Two items assessed expected training success. Ten questions assessed the trainer’s expectations of the trainee."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [202] "The Social Self-Esteem Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [203] "The Inferred Competence Expectations Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [204] "The Bergen Burnout Inventory-9 contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [205] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [206] "This is a 27-item measure consisting of seven subscales: four spillover (Negative Spillover From Work, Negative Spillover From Family, Positive Spillover From Work, and Positive Spillover From Family), two compensation (Compensation of What Is Missing at Work and Compensation of What Is Missing at Home), and one segmentation (Segmentation) subscale. Because no specific hypotheses were tested regarding compensation, the two compensation subscales (five items total) were not used in the present analyses."                                                                                                                                                                                                                                                                                                                                               
##  [207] "Intention to apply was measured with three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [208] "The Customer Loyalty Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [209] "LEB was assessed using four multi-item subscales that focused on (a) enhancing the meaningfulness of work (three items), (b) fostering participation in decision making (two items) (c) expressing confidence in high performance (two items) and (d) providing autonomy from bureaucratic constraints (three items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [210] "This is a seven-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [211] "The Performance Evaluation Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [212] "This scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [213] "The index consists of 4 items. Two items measure attributions to the team and two measure attributions to an individual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [214] "The Workplace Bullying Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [215] "This scale consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [216] "The Self-Promotion Scale consists of five items adapted from measures by Stevens and Kristof (1995) and Wayne and Ferris (1990)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [217] "The scale consists of 10 items, with four items related to attitudes toward psychiatrists and 6 related to assessments of attitudes toward the insanity defense."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [218] "This measure consists of four items written from the giver's perspective. A complementary set of items was written from the receiver’s perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [219] "The Unethical Business Decisions Scale contains is a six-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [220] "Delinquency was broken down into Vandalism (two items), Hitting/Fighting (three items), and Stealing/Shoplifting (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [221] "The Dysfunctional Behavior Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [222] "The CCS includes three items measuring perceived lack of alternatives, and six items measuring personal sacrifice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [223] "The measurement of family involvement included eight items using a Likert Scale (ranging from 1 to 5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [224] "The Treatment Credibility Questionnaire contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [225] "The test consists of 31 items. Ten items are classified as calculations, 10 as propositions (5 each as words and symbols), 6 as conceptual understandings (words), and 5 as conceptual understandings (words)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [226] "Twelve items are utilized to measure type awareness, while source awareness is measured by 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [227] "Four items were selected to represent each of the two goals (approach and avoidance) in the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [228] "The Homeless Adolescents Discrimination Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [229] "The Acceptance of Blame Teacher Report is composed of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [230] "The Overt Aggression Teacher Report is composed of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [231] "The Delinquency Scale consists of 21 items including ten items identified as Interpersonal Delinquency, five items identified as Property Delinquency, five items identified as Substance Delinquency, and one question regarding involvement with the police."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [232] "Hurtful cyber-teasing is measured by a six-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [233] "The scale consists of 20 items and four subscales with four items each: Minority RES, In-group RES, Aschematic, Dual RES."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [234] "This study used six of the ten items from the Family Support Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [235] "The Eldercare Strain Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [236] "The Peer Behavioral Norms for Disclosure Measure contains four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [237] "Twelve items were used to assess barriers to disclosure, while six items assessed the reasons to disclose HIV-positive status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [238] "The scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [239] "The test is relatively short (i.e., three item letters)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [240] "Fourteen items were utilized in Waves 1 and 2, while 12 items were used to measure problem behaviors in Wave 3 of the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [241] "The task contained three practice items and 16 pseudo-words that were two to five syllables in length, with four items for each non-word length."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [242] "The youth-report measure contains 11 items; six items measure perceived discrimination and five items assess victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [243] "Three items measured perceptions of remorse, while empathy and forgiveness were measured using five and two items, respectively. Five items addressed perceptions of behavioral stability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [244] "The CSASS consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [245] "The entire Locus-of-Hope Scale comprises 40 items: eight items for each of the four specific locus-of-hope subscales: internal, external-family, external-peers, and external-spiritual, and eight filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [246] "The measure consists of eight stories (items), each of which are followed by the same four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [247] "The Big Five Questionnaire consists of 132 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [248] "The Five-Item Personality Inventory is composed of 5 items, one item for each of the Big Five dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [249] "The Perceived Organizational Prestige Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [250] "The Burnam Depression Screening Algorithm consists of a total of 8 items, six items assess feelings experienced during the past week and two items that assess whether depression has been experienced in the past year and whether depression is ongoing or recently ended."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [251] "The questionnaire consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [252] "This study used the following four subscales from the SUIMH scale: patient collaboration (three items), assisted patient involvement (five items), carer involvement (five items), and management support (five items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [253] "The Desire to Institutionalize Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [254] "Perceived financial adequacy is assessed with six items; Worries about family while at work is assessed with four items; Health-related personal stressors is assessed with the Center for Epidemiologic Studies Depression Scale (CES-D) and a single item measure of perceived change in emotional health since becoming a frontline worker."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [255] "This measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [256] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [257] "Each of the measure's 11 factors consists of four items, making this a 44-item instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [258] "The Mood Short Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [259] "Questions included how often respondents were (a) physically victimized, (b) teased, (c) demeaned, diminished, or embarrassed, (d) isolated, and (e) excluded by others during middle and high school (two items for each domain)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [260] "The TLI consists of eight items and three subscales: Impoverishment (2 items), Disorganisation (4 items), and Other (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [261] "Four items were used to assess participants’ difficulties meeting basic needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [262] "The Recovery Interview contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [263] "This is a 5-item measure. The first scale indexes acceptance of the leader's vision that the merger is a good strategic decision (three items). The second scale measures employee's motivation to work for the new company (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [264] "Participants are asked to respond to two questions in reference to each of three participants nominated by the subjects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [265] "The measure consists of 12 items and three, four-item subscales rating the physician's technical skills, interpersonal skills, and information giving skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [266] "The IBQ-G consists of 44 items comprising 11, four-item scales: Rational Persuasion, Consultation, Inspirational Appeals, Collaboration, Apprising, Ingratiation, Personal Appeals, Exchange, Legitimating Tactics, Pressure, and Coalition Tactics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [267] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [268] "The AACDM consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [269] "Nine items measure Emotional exhaustion (3 items), Depersonalization (3 items), and Personal accomplishment (3 items) factors in Burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [270] "The survey includes 3 sections. The first section consists of one question. The second section consists of 35 items (behaviors). The final section of the survey included questions regarding the entities with which the county emergency managers collaborated, the reasons for such collaboration, the hierarchical structure of the county agency, the size of the emergency management agency, and the education levels achieved and the certifications earned by the county emergency manager."                                                                                                                                                                                                                                                                                                                                                                      
##  [271] "The Attitudes Toward Prostitution Scale consists of 10 items: Social/Legal Support of Prostitution Subscale (three items); Beliefs About Prostitution Subscale (five items); and Family Values Related to Prostitution Subscale (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [272] "The Anxious Apprehension Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [273] "Leader attitude is assessed with three items, subjective norm is assessed with two items, and perceived control is assessed with three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [274] "The Frankfurt Monitoring Blunting Scales are composed of four uncontrollable situations and four controllable yet encumbering situations. Each FMBS situation is followed by eight behavioural choices. Of these, four items pertain to a Monitoring and four to a Blunting style of coping with aversive events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [275] "Clinicians are asked to answer one question (concerning the presence or absence of a mental disorder) pertaining to each of 12 vignettes. Respondents are also asked to provide diagnostic impressions both by choosing a DSM-IV-TR disorder category from a provided list as well as by generating the diagnostic code or full disorder name for the diagnosis they feel is most appropriate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [276] "This measure consists of four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [277] "The scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [278] "The scale consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [279] "The OCI-CV consists of 21 items and seven subscales with three items each: Washing, Checking, Hoarding, Doubting, Ordering, Obsessing, and Neutralizing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [280] "The scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [281] "The survey consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [282] "This first page includes some general background information and two questions about perceived decisional difficulty. The following pages present 43 items, each one corresponding to a particular difficulty. Finally, respondents are asked to rate the overall severity of their difficulties in making a mate selection decision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [283] "The Migraine Disability Assessment instrument is a five-item questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [284] "The GASS contains ten items intended to evaluate personal attitudes toward anxiety (GASS-Personal) and ten items aimed to measure perception of the attitudes of others (GASS-Perceived)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [285] "The Craving Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [286] "This measure consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [287] "The 2 items demonstrated associations with measures of anxiety and breast cancer worries. In addition, the two items correlated significantly with each other."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [288] "There are ten items in the current measure which are to be coded."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [289] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [290] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [291] "The measure consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [292] "This is a nine-item questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [293] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [294] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [295] "This measure consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [296] "This measure consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [297] "The measure consists of one question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [298] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [299] "The scale consists of 47 items that can be allocated to six subscales: social phobia (nine items), panic disorder (nine items), major depressive disorder (10 items), separation anxiety disorder (seven items), generalized anxiety disorder (six items), and obsessive-compulsive disorder (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [300] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [301] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [302] "This is a one-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [303] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [304] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [305] "This is a one-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [306] "This is a one-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [307] "The measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [308] "The Facebook Self-Disclosure Scale is composed of 17 items: Six items measured the amount of self-disclosure in Facebook, five items formed a composite measure for self-disclosure honesty, 3 items assess self-disclosure intent, and a final three items measure the positivity dimension of self-disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [309] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [310] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [311] "This measure consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [312] "Two items assess anger during hypothetical vignettes, two items assess anger expression, one item assesses anger suppression, and four items assess experiential avoidance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [313] "For sexual adjustment, 4 items are presented to married respondents (present or formerly); 4 items are presented to single respondents aged 30 years or older; and 5 items are presented to single respondents under the age of 30. Social-personal adjustment is assessed with one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [314] "Two items assess reciprocity motivations; two items measure efficacy motivations; six items assess altruistic values; one item measures political values; one item measures religious values; two items assess family situation; two items assess financial wealth and assets; and one item measures charitable giving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [315] "The Breast Cancer-Related Concerns Scale is a nine-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [316] "The Subjective Norm of Internet Use Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [317] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [318] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [319] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [320] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [321] "The measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [322] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [323] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [324] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [325] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [326] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [327] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [328] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [329] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [330] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [331] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [332] "The measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [333] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [334] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [335] "The measure consists of 10 items and two, five-item subscales: Interpretation of Online Study Groups and Interpretation of Online Practice Tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [336] "Self-perceptions and reflected appraisals of performance, ability, and effort were assessed with two questions each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [337] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [338] "The Berlin Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [339] "The English version of the Visual Complaints Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [340] "The Mood Manipulation Check consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [341] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [342] "The questionnaire consists of nine questions. Question number 6 asks respondents to rate their strength of agreement with 20 statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [343] "The measure contains 10 items comprising two, five-item subscales: Work-to-Family Spillover Conflict and Family-to-Work Spillover Conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [344] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [345] "The Creative Science Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [346] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [347] "The test includes six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [348] "This measure consists of six items, arranged in increasing order of difficulty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [349] "The Experience-Taking Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [350] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [351] "The scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [352] "The measures consists of 3 single-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [353] "The Parent-Child Conflict Questionnaire is a 10-item scale (9 numbered items with one item being presented in two separate parts)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [354] "Perceptions of work stress are measured with six items. The measure of perceived behavioral control comprises six items. To assess perceptions of informational control, respondents complete three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [355] "This measure consists of a single-item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [356] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [357] "The measure comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [358] "Before answering any questions, respondents are asked to write down three personal worry topics and then \"worry as you usually do\". After this \"worry induction,\" respondents then answer three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [359] "The measure consists of 24 items and four, six-item subscales: Concern, Control, Curiosity, and Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [360] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [361] "Historical knowledge was assessed by 4 tests. Each of these consisted of five items which had to be placed in chronological sequence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [362] "This is a one-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [363] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [364] "The measure consists of 24 items and six, four-item subscales: concern, control, curiosity, and confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [365] "The measure consists of eight items and two, four-item subscales: Adjustment to America and Respect Me and See My Potential."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [366] "Prejudice toward gay men and lesbians was measured with 11 items. Prejudice toward foreigners was measured with 11 items. For prejudice toward people with disabilities 10 items mentioned “disabled people” in general, but two items referred specifically to “mentally disabled people.”"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [367] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [368] "This measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [369] "The Clearness: Fluctuation Test contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [370] "Perspective Taking During Social Situation Recall Task is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [371] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [372] "Aggressive Play is measured with five items, Simulation Play with four items, and Negative Reactions generated by play (feeling wounded, really annoyed) with a six-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [373] "The measure consists of 9 items and three subscales with three items each: internal health locus of control, powerful others health locus of controls, and chance health locus of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [374] "The Complete Speech Measurement Rating Sheet contains a single item in Part I and seven items in Part II."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [375] "The Shop and Class Rating Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [376] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [377] "The measure consists of 10 items and five, two-item subscales: Clarity, Concern for the Other's Feelings, Non-Imposition, Concern about Disapproval, and Effectiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [378] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [379] "The Breathing Focus Task is accompanied by two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [380] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [381] "This measure consists of nine descriptions of mildly negative social events, each followed by two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [382] "This measure consists of one pictorial scale and one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [383] "The Idiosyncratic Symptom Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [384] "The BOT-2 Brief Form contains 12 items, consisting of at least one item from each BOT-2 subtest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [385] "The Brotemarkle Comparison Tests contains 3 tests and four questions/"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [386] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [387] "The PIQ consists of a series of six questions which follow immediately the answering of each item on a personality questionnaire (i.e., the MMPI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [388] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [389] "The Adjustment Difficulty to Navy Focal Career Event Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [390] "Net Personal Gain of Navy Focal Career Event Index contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [391] "The Net Career Gain of Navy Focal Career Event Index contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [392] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [393] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [394] "The Intolerance for Crowding Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [395] "The Satisfaction with Decision Instrument contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [396] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [397] "The interviewers score six questions following each conversation. The interviewees score eight questions following each conversation. After the interview in the concealment condition the interviewees answer an additional question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [398] "The Disorientation Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [399] "The Emotional Feelings Questionnaire contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [400] "The Task Value Scale for Children contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [401] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [402] "Psychological well-being was investigated through a set of items on loneliness (3 items), self-image, (7 items), anxiety and insecurity (7 items), with depressed mood and locus of control both being single-item questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [403] "The Satisfaction with Flexibility Facet Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [404] "Four items are used to measure self-evaluated self-esteem, peer-evaluated self-esteem is measured with 5 items, and defensive egotism consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [405] "The Collective Relative Deprivation Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [406] "This measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [407] "The first part of this measure comprises a single item regarding fear of hurricanes, while the second part consists of 8 items referring to potentially fearful stimuli and situations associated with severe storms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [408] "This measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [409] "The Subjective Happiness Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [410] "The measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [411] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [412] "The Androgen Deficiency Symptoms Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [413] "The questionnaire contains seven questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [414] "The measure consists of 12 items and four, three-item subscales: Intrinsic Motivation, Identified Regulation, External Regulation, and Amotivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [415] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [416] "Seven items measure conduct problems; five items measure self-esteem; ten items measure prosocial behavior; eight items measure hyperactivity/attention deficit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [417] "Each self-esteem scale (scholastic competence, athletic competence, physical appearance, behavioral conduct, and social acceptance) consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [418] "The measure comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [419] "This measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [420] "This test consists of two single-item measures of physical well-being."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [421] "The Work-Family Conflict Scale contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [422] "The Emotional Exhaustion Scale is composed of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [423] "Six items are included in this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [424] "The Reactive Aggressiveness Scale contains six items; the Proactive Aggressiveness Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [425] "Aggression was measured with three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [426] "The Self-Report of Victimization and Exclusion consists of 27 items including overt and relational victimization items (six items and five items, respectively) and social exclusion (five items—included in the relational factor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [427] "The Discrepancy from Ideal Partner Measures contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [428] "The Chance Event Survey consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [429] "The measure consists of 12 items and two, six-item subscales: Inattention and Hyperactivity/Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [430] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [431] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [432] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [433] "One version of the The Perceived Legitimacy Scale contains two items; another version contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [434] "The Ingroup Disadvantage Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [435] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [436] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [437] "The Perceived Negativity Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [438] "The Faculty Mentoring Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [439] "The Networking Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [440] "The Productivity Maintenance Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [441] "The Index of Participation in Decision Making contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [442] "The Childhood Trauma Survey contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [443] "The Need for Scholarship Scale is a five-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [444] "The Provider Participatory Decision-making Style scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [445] "The Prevention Counseling Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [446] "The Extra-Role Behavior Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [447] "The Burnout Measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [448] "The negative stereotypes construct contained seven items. The positive stereotypes construct contained seven items. The construct of closeness to Black masses contained four items. The construct of closeness to Black elites contained two items. Self-esteem was measured by five items. The construct of subjective well-being contained a single item. The construct of closeness to non-American Blacks was composed of two items. The construct of closeness to American minorities consisted of three items. The construct of system blame was composed of two items. The construct system cynicism/optimism was composed of three items. The construct perceived race discrimination is composed of two items. The construct group fate/individual effort was composed of two items."                                                                            
##  [449] "This is a 9-item measure. The political celebrity construct was composed of two items; the conservative political figures/celebrities construct consisted of three items; and the progressive political figures/celebrities construct was composed of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [450] "The Bipolar Disorder Beliefs Questionnaire is a 25-item measure. Thirteen items address causes and 12 items address treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [451] "The Looming of Contamination Questionnaire consists of five vignettes with seven questions for each vignette."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [452] "The Phobic Intensity Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [453] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [454] "The Evaluation Goals Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [455] "The Emotional Response Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [456] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [457] "The Perceived Partner Deception Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [458] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [459] "The Web Survey Reaction Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [460] "This measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [461] "The Brief Coping Orientation to Problem Experiences consists of 14 scales with two items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [462] "The Life Goals Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [463] "The Negative School Environment Measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [464] "German version of the Bogardus Scale--Modified contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [465] "The Self-Reported Aggression Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [466] "The Negative Social Evaluation Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [467] "The Attitudes Towards Emotional Expression Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [468] "The Career-Related Concerns Checklist contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [469] "The Nurse Knowledge Acquisition Behaviors Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [470] "The Events Affecting Sleep Questionnaire contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [471] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [472] "Each scenario in this measure is followed by four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [473] "There is a single item used to assess five bases of perceived and preferred influence of the department chairman over the respondent; a similar set of items measures faculty perceptions of their influence over the chairman."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [474] "The Global Process Control Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [475] "The The Job Security Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [476] "The Behavioral Intentions to Withdraw Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [477] "The CAST has 37 items in total, of which 31 are key items contributing to a child’s total score. The remaining six items are control questions on general development and these are not scored."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [478] "The Explicit Construals of Natives as American Measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [479] "The Canadian Culture Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [480] "The Membership Status Threat Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [481] "The Punitive Response Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [482] "Participants rated a single item according to four semantic-differential scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [483] "The Index of Perceived Entitativity among Muslims contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [484] "The Perceived Status of Political Parties Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [485] "The cross-group friendship measure contains two items; the intergroup anxiety scale contains six items; the prejudice toward the religious outgroup measure has seven items; and the general measure of perceived outgroup variability contains 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [486] "Physical Aggression Index contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [487] "This measure consists of 28 items (three Risk Perception scales with 6 items, three Social Norm scales with 3 items and one Pluralistic Ignorance stand-alone question)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [488] "This measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [489] "Verdict Decision Acceptance Scale consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [490] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [491] "The Brief Sensation-Seeking Scale-4 contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [492] "The Inhalant Attitude Scale is composed of a single item with a choice of four responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [493] "This questionnaire consists of a 3-item measure and a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [494] "he Parental Monitoring Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [495] "The Heidelberg Smoking History contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [496] "The Feelings about Abu Ghraib Scale contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [497] "The Attitude toward United States Treatment of Prisoners of War Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [498] "This measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [499] "The Self-Knowledge Questionnaire contains 8 items, six questions related to self-knowledge and two related to a television programme that the participant liked to watch and a programme that the comparison individual liked to watch."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [500] "This measure consists of two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [501] "The Bullying Victimization Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [502] "The School Avoidance Scale contains sex items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [503] "The Group Attachment Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [504] "The Betting Attributional Style Questionnaire contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [505] "The measure comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [506] "In this 10-item measure, nationalism and patriotism are assessed using five items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [507] "The Short-Term Mating Interests Scale contains seven items. Also included in the STMI is the single-item Short-Term Seeking Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [508] "The Former Spouse Relationship Scales are comprised of the following subscales: Continued Attachment Scale (six items), Friendship Scale (six items), and Hostility Scale (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [509] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [510] "This measure consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [511] "The Student Perceptions of Career-Related Barriers Instrument contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [512] "The Students' Perceptions Toward English Class and Self-Assessment Survey contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [513] "Perceived Control Questionnaire contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [514] "The Smoking Risk Perception Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [515] "The Parental Monitoring Scale eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [516] "The Nurse Training Decision Characteristics Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [517] "The History of Self-Injurious Behavior Questionnaire is composed of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [518] "The Somatic Symptomatology Short Screening Tool contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [519] "The Predictors of Smoking Contemplation Survey contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [520] "The Implemental Activity Index consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [521] "The Goal Progress Measure contains a total of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [522] "The Intragroup Similarity Ratings Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [523] "The Job Acceptance Questionnaire contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [524] "The Parenting Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [525] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [526] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [527] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [528] "The Commitment Scale is a two-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [529] "The Household Education, Smoking Rules, and Smoking Risk Awareness Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [530] "The Social Skills and Social Anxiety Questionnaire contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [531] "The Perception of Smoking Index contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [532] "The Social Provocation Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [533] "The Perception of Personal Information Disclosure Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [534] "The Perception of Future Revenge Risk Potential Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [535] "These measures consist of one item on the frequency and 6 items on the quantity of using various alcoholic beverages in the last 12 months."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [536] "The Perceived Certainty Scale is a single item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [537] "The Child Anxiety Frequency Checklist contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [538] "The Fast Alcohol Screening Test contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [539] "The Controlled Use Self-Efficacy Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [540] "This measure contains nine questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [541] "The Suicide Ideation Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [542] "The Confidence in Police Index consisted of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [543] "The Quality of Life Measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [544] "The Studying Expectancies Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [545] "The Parental Attitudes Toward Integration Index contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [546] "The Parental Attitudes Toward Authoritarianism Index contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [547] "Four items measure treatment acceptability and four items measure treatment acceptability. Two additional questions ask if respondents know someone who had the client’s symptoms and how often they have experienced the client’s symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [548] "Pain Experiences Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [549] "The Illness-Behavior Experiences Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [550] "The Fate Beliefs Questionnaire contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [551] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [552] "The Counselor Services Interview contains six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [553] "The Health as a Value and Social Pressure Questionnaire contains eight items--four items in each scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [554] "The Modified Treatment Credibility Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [555] "The Index of Nailbiting contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [556] "The Military Adjustment Index contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [557] "The Combat Exposure Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [558] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [559] "The Gender Role Orientation Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [560] "The Family Support and Cohesiveness Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [561] "The Exposure to Substance Abusers Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [562] "The Victimization Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [563] "The Reactions to Transgressions Measure consists of 5 vignettes. Participants are asked to respond to two questions for each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [564] "The Counselor Rapport Index is composed of five items, and the Counselor Competency Index contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [565] "The Partner Interaction Questionnaire--Ten-Item Version consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [566] "Subjects view series of pictures that are divided into two groups of two spider pictures and one neutral picture (flowers). After each group, participants are asked four questions about the content of the pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [567] "The Emotional Dependency Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [568] "The Intended Extramarital Involvement Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [569] "The Extramarital Involvement Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [570] "This measure comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [571] "Feeling Deprived was composed of five items and Eating Style consisted of 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [572] "The Alcohol Use Self-Efficacy Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [573] "This is a 12-item measure. Five items were used to measure the construct in a later study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [574] "The measure consists of two, five-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [575] "The Reasons for Attending School Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [576] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [577] "The measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [578] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [579] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [580] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [581] "Nine items are used to measure controllability and intentionality, four items measure responsibility, eight items measure anger and sympathy/concern, six items measure locus of causality, and eight items measure minor aggressive and prosocial behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [582] "This is a 27-item measure comprised of six subscales: cooperative behavior (5 items), pro-social behavior (five items), overt aggression (4 items), social participation (4 items) leadership (three items), and setting limits (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [583] "The Perceived Academic Benefit of Service-Learning Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [584] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [585] "The Afterlife Motivation Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [586] "The measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [587] "The Collective Social Capital Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [588] "Composite Overall Job Satisfaction Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [589] "The Zoster Brief Pain Inventory contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [590] "The Composite Turnover Intentions Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [591] "Composite Overall Job Performance Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [592] "The Gun Access Measure is a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [593] "The measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [594] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [595] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [596] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [597] "One item assesses inner-circle membership. Perceived psychological safety is measured using three items. A self-report measure of voice behavior was obtained from each subordinate using four items. Extraversion is assessed with a self-report two-item measure. Other variables are utilized in this measure as well."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [598] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [599] "Sociopolitical Ideology Scale for Americans contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [600] "The Perceived Social System Legitimacy Scale for Americans contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [601] "The Perceived System Permeability Scale for Americans contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [602] "Protestant Work Ethic Scale for Americans contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [603] "Internal Attributions for Poverty in America Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [604] "The Group Competition Scale for Americans contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [605] "The Attractiveness of Hierarchy-Enhancing Careers Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [606] "The Attractiveness of Hierarchy-Attenuating Careers Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [607] "The External Attributions for Poverty in America Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [608] "The Belief in a Just World Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [609] "Ingroup Identification Scale for Jewish-Arab Israelis contains two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [610] "The Analytical Thinking Self-Report contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [611] "The Group Self-Esteem Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [612] "The Delay Attitudes Scale consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [613] "The Intentions to Use Inhalants Scale contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [614] "Rebelliousness Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [615] "The Familism Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [616] "The Engagement Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [617] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [618] "The measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [619] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [620] "This measure consists of seven questions: a feelings thermometer with scores ranging from 0 to 100 in increments of 10 (higher numbers indicating more favorable attitudes) and six questions asking participants to rate their attitudes toward the target immigrant group on 5-point bipolar scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [621] "The Parental Trust Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [622] "The Parental Activity Support Scale contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [623] "The Procedural Fairness Index contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [624] "The Antisocial Behavior Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [625] "The Identity Threat Measure contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [626] "The Outgroup Privilege Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [627] "The Gender Group Identification Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [628] "The statements are organized into 30 ten-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [629] "There are four versions of the test. Two versions have four items each, one version has 11 items, and the fourth version has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [630] "The Group Climate Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [631] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [632] "The Life Events Questionnaire contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [633] "The Perceived Job Mobility Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [634] "The Issue Interpretation Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [635] "The Tolerance for Diversity Measure consists of 8 items. An additional two items were added for a total of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [636] "The Desire Ratings for Negative and Positive Actions Measure contains 8 items, four items each related to positive and negative actions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [637] "The Multiculturalism and Colorblindness contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [638] "The Peer Information Usefulness Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [639] "The Anticipated Lower Effort Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [640] "The Sucker Effect Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [641] "The Procedural Fairness Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [642] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [643] "This scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [644] "Two items measure negotiator concerns and three items measure negotiator satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [645] "The Suicidal Ideation Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [646] "The Perceived Rejection Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [647] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [648] "The measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [649] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [650] "Participants are asked two questions after each offer has been made."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [651] "The measure comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [652] "The Image Compatibility Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [653] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [654] "The measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [655] "This is a 20-item measure. Five items measured each of the following dimensions: Communication, Informal Agreement, Surveillance, and Task Coordination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [656] "The Propensity for Angry Driving Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [657] "The measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [658] "Four choice problem cases are administered with nine items per case."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [659] "This single-item measure consists of four categories as response options. It is also accompanied by 4 validity items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [660] "The Emotion and Cognition Scales each consist of six items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [661] "The Collectivism Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [662] "The Brand Dependence Scale contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [663] "This is a four-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [664] "Business strategy attributes were measured across six dimensions: defensiveness (2 items), analysis (2 items), risk aversion (3 items), proactiveness (2 items), futurity (3 items) and aggressiveness (2 items). Four items measured personality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [665] "The Parental Involvement in Adolescents' School-Related Activities Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [666] "The Utilitarianism Measure contains seven questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [667] "The Mother and Father Potential Cost Scales each contains six items; the School-Teachers Cost Scale consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [668] "The Warren Commission Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [669] "The Alliance Performance Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [670] "The Alliance Creativity Measure comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [671] "The Death Concept Interview contains nine questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [672] "The Religiosity Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [673] "The Racial Pride Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [674] "Both the Present-Time Orientation Scale and the Future-Time Orientation Scale contain five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [675] "The Career Cone Questionnaire consists of 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [676] "The Questionnaire on Attitude to Day-Patient Treatment consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [677] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [678] "The measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [679] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [680] "The Perceived Stress Scale—Soccer contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [681] "The stigma scale consisted of four items, while the betrayal scale comprised four items. Finally, the powerlessness scale consisted of three items and the self-blame scale was measured by seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [682] "The Conflict-handling Task contains five questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [683] "This measure contains five questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [684] "The Organizational Effectiveness Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [685] "This is a 24-item measure. Physical abuse occurring before the age of 18 was assessed using seven items. Sexual abuse was assessed by asking participants about seven specific sexual acts. Emotional abuse was assessed with two questions. Finally, physical neglect occurring before the age of 12 was assessed with eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [686] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [687] "The Morisky Green Adherence Questionnaire contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [688] "The Ex Post I-Deals Scale contains five items for financial incentives, three items for schedule flexibility, and two items for location flexibility."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [689] "The Career Aspiration Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [690] "This interview consists of eight questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [691] "This measure consists of two questions, each with 9 options to be rank ordered."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [692] "This is a 24-item measure (four items for each RIASEC subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [693] "Thirty-eight items are listed by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [694] "This measure consists of 12 items, each of which are rated for one's mother and father. The measure is comprised of the seven-item psychological maltreatment scale and the five-item physical maltreatment scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [695] "This measure consists of 9 items, with three items measuring each of the following dimensions: self-efficacy to learn skills, self-efficacy to learn strategies, and self-efficacy to regulate mental states."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [696] "The Human Relations Index contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [697] "The instrument contains eight items on motivation for becoming a licensed foster parent and 12 items on conditions affecting their willingness to continue. Included also are 7 items on opinions about fostering itself, 19 items on experience with agency and agency social workers and 6 items on training effects. Seven items measure stress and support, while seven other items assess social support. Two questions assess foster parent satisfaction and intent to continue to foster."                                                                                                                                                                                                                                                                                                                                                                          
##  [698] "The Need-for-Clarity Index consists of four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [699] "This is a 6-item measure. Four items assess the extent to which individuals perceive their ethnic culture is important to them (Ethnic Cultural Importance, ECI) and 2 items assess problems that are perceived to be due to one's ethnic culture (Ethnic Cultural Problems, ECP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [700] "There were two alternate forms of the questionnaire (a before and after) and they are divided into three sections: Business Decisions, General Decisions, and Family Decisions. Nine items are included in both the Business before and after forms, eight in the General before, nine in the after, eight in the Family before, and ten in the after form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [701] "Each individual item describes either an antisocial (eight items) or a prosocial behavior (seven items) in which adolescents might engage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [702] "The Hypertonia Assessment Tool consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [703] "The Body Image Disturbance Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [704] "The Heterosocial Involvement Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [705] "The Peer Pressure to Be Thin Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [706] "The Recognition of Stroke in the Emergency Room Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [707] "This measure consists of 18 items distributed across two factors. A one-factor solution with 10 items represented the construct of upward physical appearance comparisons (UPACS). In addition, a one-factor solution with eight items represented the construct of downward physical appearance comparisons (DACS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [708] "The Body Image Measure consists of items comprising four categories of assessments: Evaluation of Own Weight or Shape (two items); Weight Consciousness and Attempts to Modify Weight (five items); Influence of Others' Perceptions (two items); and Evaluation of Large Silhouettes (one item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [709] "The Attitudes Toward Drugs Scale comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [710] "Both the Father Treatment Scale and the Mother Treatment Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [711] "The questionnaire consists of the following three subscales: system usefulness (6 items), information quality (6 items), and interface quality (2 items). There is also one item measuring overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [712] "This is a 9-item measure. Self-management was measured using four items and Surveillance was measured using five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [713] "The Visual Fatigue Questionnaire--English Translation contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [714] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [715] "This is an eight-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [716] "The Cooking Questionnaire contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [717] "The Coworker Mistrust Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [718] "The Creative Ability Index contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [719] "The Attitudes Towards Undergoing Down Syndrome Screening Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [720] "The Physical Appearance Ambiguous Feedback Scale consists of 16 items: eight Appearance items (five statements and three questions) and eight General (non-Appearance) items (six statements and two questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [721] "The Perceived Skill Complementarity Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [722] "The following 3-item subscales are included: Attainment value, Intrinsic value, and Utility value. Parental personal and school involvement are measured by parental self-reports and students’ reports on their parents' behaviors. Ten items focus on parental involvement (adapted from Eccles, 1993), covering personal involvement and school involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [723] "The 31-item spelling dictation task consisted of two- and three-syllable phonologically transparent (12 items) and opaque words (19 items). Phonologically opaque words included items that involve consonant tensification (six items) and resyllabificiation (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [724] "The Surround-Sound Measure consists of 19 items divided into two questionnaires (7 and 12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [725] "The Negative Affect Scale contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [726] "The Dieting Intentions Scale contain seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [727] "The Enacted Strategy Scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [728] "This instrument consists of five items to measure dominating practices, four items measuring collaborating practices, and four items measuring avoiding practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [729] "The survey consists of 57 values items followed by 33 attitude, opinion, personality, and background items. For the value items, three sets of 19 items were formed with one item per value: Self-direction–thought, Self-direction–action, Stimulation, Hedonism, Achievement, Power–dominance, Power–resources, Face, Security–personal, Security–societal, Tradition, Conformity–rules, Conformity-interpersonal, Humility, Benevolence–dependability, Benevolence–caring, Universalism–concern, Universalism–nature, Universalism–tolerance."                                                                                                                                                                                                                                                                                                                          
##  [730] "For each of 11 specific strategies, participants answer two questions regarding how frequently they engaged in the strategy during an experiment, and when during the experiment they used each strategy more frequently."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [731] "This scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [732] "This is an 11-item measure. Information sharing is assessed by four items, relationship-specific knowledge memory is also measured by four items, and shared meaning is measured by three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [733] "The Vascular Patient Self-Efficacy Questionnaire contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [734] "In the final version, there are three items for enjoyment, four for frustration, four for worry, seven for fear, and one for importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [735] "The Health Behaviour in School-aged Children Family Affluence Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [736] "Personal Drug Problem Recognition Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [737] "The test consists of 200 items (50 rows of 4 items) and test items are divided among the following three item characteristic \"main effects\": Simplicity (S)--Complexity (C), Passivity (P)--Activity (A), and Femininity (F)--Masculinity (M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [738] "This measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [739] "The measure consists of 21 items with seven items on the sweets scale, six items on the snacks scale, four items on the western food scale, and two items on each of the sushi and rice scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [740] "The Teamwork Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [741] "The Help-Seeking for Depression Questionnaire contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [742] "The Perceived Need for New Cellular Phone Laws Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [743] "The Post-Colonial Ideology Scale-2 Dimensional (PCIS-2D) contains balanced eight-item scales assessing SPE and HRN."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [744] "The instrument contains 54 Likert-type items distributed as follows: four items for learning goal orientation, four for performance goal orientation, eight items for perceived ability, 25 for meaningful cognitive engagement, and 13 items for shallow cognitive engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [745] "The Communication with Provider During Pregnancy Measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [746] "The Cockpit Systems Survey contains four items that asked participants about their flight experience and certificates and ratings held, 52 attitude probes, and five multiple-choice or supply-type questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [747] "This test has 36 items. Fifteen items survey knowledge of donation or transplantation. Nine items survey attitudes toward donation and transplantation. Two items survey donation of a deceased family member's organs and tissues. Two items survey donation information sources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [748] "The measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [749] "The resulting ATPE is a 32-item summated rating scale of which 25 items are scored as an attitude measure, and 13 items are scored as a knowledge measure. (A total of six items are scored as both attitude and knowledge measures.)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [750] "The Immunosuppressant Therapy Adherence Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [751] "The Body Weight Control Motive Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [752] "The Affect Regulation Motive Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [753] "The Survey of Treatment for Depression in Epilepsy consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [754] "The Sudden Unexplained Death in Epilepsy Inventory-7 contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [755] "The measure includes eight questions in relation to three vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [756] "The Brookline Community Mental Health Center Diversity Training Questionnaire contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [757] "The Brookline Community Mental Health Center Diversity Team Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [758] "The Brookline Community Mental Health Center Multicultural Team Questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [759] "The Brookline Community Mental Health Center Supervisor Questionnaire contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [760] "The General Practitioner Communication Skills Measure contains eleven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [761] "This measure consists of 17 items. Items constituting three separate subscales are dispersed throughout the questionnaire. The Work Quality Evaluation subscale contains 13 items, while the Workplace Rewards and the Workplace Penalties subscales are comprised of two items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [762] "The questionnaire contains three sections. Part I asks for background information on seven demographic variables: age, sex, race, education, occupation, religion and marital status. Part 2 inquires about the respondent’s pain history. Six questions are used to survey present and past history. Part 3 contains a scale consisting of 103 pain terms which cover the range of sensory and affective sensations typically reported by patients with low back pain."                                                                                                                                                                                                                                                                                                                                                                                                   
##  [763] "Four features of borderline personality disorder were assessed with 24 items: Affective Instability (six items), Identity Problems (six items), Negative Relationships (six items), and Self-Harm (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [764] "The Friendship Network Identification Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [765] "The KOWIE II consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [766] "The Situational Temptations Scale--Turkish Version contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [767] "The Self-Constructed Belief in an Unpleasant Afterlife Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [768] "The Gambling Knowledge Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [769] "The scale contains 4 items composed of four domains: Efficacy, safety, tolerability, and ease of use. Each domain was represented by a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [770] "The DUSI-R Quick Screen consists of one question which involves the possible use of 18 drugs (Substance Involvement Index) and ten problems (Problems Severity Index)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [771] "The Behavioral Intention Measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [772] "The questionnaire is comprised of several validated subscales. Six items measured \"perceived susceptibility\" and two items measured \"perceived severity.\" \"Response efficacy beliefs\" were measured by three items. \"HIV-related stigma\" was measured using six items. \"Fear of being stigmatized\" was measured using six items. Five items measured \"perceived fear that one will test positive.\" \"Worries about confidentiality\" were assessed with four items. \"Practical barriers\" were measured using three items. Five items measured \"self-efficacy.\" \"VCT intention\" was indexed using seven items. Demographic variables were also measured, as were sexual behavior and sexual risk taking, using four questions."                                                                                                                           
##  [773] "A total of 18 items were used to measure the constructs included in the authors' model. Interactivity with peers and the teacher were each measured using a subset of four items from Liu (2003) and McMillan and Hwang (2002). Measures (4 items) of active collaborative learning were adapted from So and Brush (2008). Engagement was measured using three items adapted from Gallini and Moely (2003) and Medlin and Green (2009). Finally, learning performance (3 items) was assessed following MacGeorge et al. (2008)."                                                                                                                                                                                                                                                                                                                                           
##  [774] "Thirteen items comprise factor scale 1 and 15 comprise factor scale 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [775] "This measure contains 18 item pairs and 5 single items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [776] "The Self-Perceived Pressure from Informal Care Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [777] "The Heart Disease Fact Questionnaire—Rheumatoid Arthritis contains 13 questions: eight questions on generic risk factors for CVD and five on CVD risk factors specific to a patient with RA."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [778] "Four items are used to measure each of the four subscales: Enmeshment, Overprotectiveness, Rigidity, and Lack of conflict resolution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [779] "The Enhancing Recovery in Coronary Heart Disease Patients Social Support Instrument contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [780] "Four indices of illnesses and an indicator of general health status as indicated by a test of lung function are used. An index of psychological problems is constructed from four items: general tiredness, insomnia, nervous trouble (anxiety, uneasiness, anguish) and depression. An index of aches and pains is based on three items of the same question covering aches and pains in the shoulders, back, hips, elbows, knees and other joints. An index of circulatory problems includes chest pain, high blood pressure, weak heart and dizziness. The index of other illnesses includes items covering diabetes, varicose ulcer, stomach ache, problems of the uro-genital organs, skin-diseases, problems of the digestive system, cancer, asthma and dementia. A measure of limited physical functioning, based on nine simple standard tests, is also employed."
##  [781] "Life events data are gathered with 1 closed- and 3 open-ended questions. Health rating is obtained through two questions regarding satisfaction with health and diagnosis with serious illness. Health attitudes are assessed in the following areas: health maintenance, health worry, satisfaction with health habits (5 items), belief in regular medical checkups, and belief in preventive measures (9 items). Health behaviors are assessed in the following areas: health practices (16 items), self-care (8 items), dietary habits (13 items), obtaining health information (7 items), and health-care consumption during the past year (5 items)."                                                                                                                                                                                                                
##  [782] "Following test refinement techniques, this instrument consists of eight items divided into two subfactors: the Financial Information and Personal Financial Planning subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [783] "Prescriptive Beliefs Scale for Meritocracy is a seven-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [784] "The Descriptive Beliefs Scale for Meritocracy contains eight-items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [785] "The Descriptive Beliefs Scale for Democracy contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [786] "The Satisfaction with America Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [787] "The Descriptive Beliefs for Democracy Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [788] "The Prescriptive System Justification Scale eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [789] "The Promote an Ideal System Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [790] "The Legitimize an Actual System Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [791] "The Hierarchy-Enhancing Policy Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [792] "The Hierarchy-Attenuating Policy Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [793] "Descriptive Beliefs Scale for Equality contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [794] "The final measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [795] "The questionnaire contains three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [796] "Seventeen items comprising the measure cover four aspects of the university experience: (a) Skill acquisition (four items); (b) Professional development (seven items); (c) Quality teaching (four items); and (d) Clear course goals (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [797] "This is a 23-item measure. The questions are spread across three separate questionnaires, each of which includes seven to ten questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [798] "Perceived relative advantage was measured by 7 items. Compatibility contained 6 items. Nine items were used in the complexity scale. Trialability was measured with five items. Six items tapped observability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [799] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [800] "This measure comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [801] "The Attitudes Toward Austria Questionnaire contains 7 items: Identification is measured by three items and perceived relative status is measured by three bipolar items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [802] "The checklist contains eight descriptions of major life events and one item for additional life events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [803] "Participants are asked to respond to one question in reference to five situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [804] "The Global Environmental Problems Coping Scales has two versions, one with 36 items and an extended version that consists of 41 items. Both versions contain eight scales: problem solving (8 items), expression of emotions (7 items), denial of guilt (6 items), relativization (3 items), wishful thinking (3 items), self-protection (3 items), pleasure (3 items), and resignation (3 items). The three-item scales used in the 36-item version were each supplemented with one more item resulting in 41 items."                                                                                                                                                                                                                                                                                                                                                     
##  [805] "The 16-item Transformational Parenting Questionnaire contains separate subscales designed to measure the four dimensions of transformational parenting (idealized influence, inspirational motivation, intellectual stimulation, and individualized consideration), with four items per subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [806] "The Screening Instrument for a Neuroepidemiological Survey consists of 9 items: four questions and five simple task items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [807] "The Phonics Concepts Assessment consists of a total of 8 items: 4 circle correct items and 4 short factual items, one of each in four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [808] "This is a 23-item measure. The four subscales are as follows: Reading Self-Efficacy (five items), Perceived Difficulty in Reading (seven items), Intrinsic Motivation to Read (five items), and Reading Avoidance (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [809] "This measure comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [810] "The NVS has six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [811] "The Content Knowledge Fact Quiz has 8 quizzes. Each quiz consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [812] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [813] "This parent/child questionnaire consists of 11 single items measuring individual factors (family factors, child factors/perceptions), 13 single items and 3 scales measuring social factors (peer support, Cronbach’s a = 0.627; disapproval from others, Cronbach’s a = 0.895; fear of stranger danger, Cronbach’s a = 0.935), 14 single items measuring perceived environmental factors (parent perceptions, child perceptions), and items assessing objective environmental factors (school walkability index, road traffic volume, pedshed, and distance)."                                                                                                                                                                                                                                                                                                            
##  [814] "Four items are answered in reference to 6 vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [815] "This measure consists of five sets of questions. Six leading questions make up each set; three probe for favorable feedback and three probe for unfavorable feedback. Participants are invited to choose from each set of six questions the two questions to which they most wish to receive answers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [816] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [817] "This is a 7-item measure. Four items were chosen to measure motive to make new friends through their blogs and three items measured motive to stay connected with existing friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [818] "This is a 4-item measure. The authors note that one item was excluded from further analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [819] "This is a 4-item measure, though the authors note that one item was excluded from subsequent analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [820] "The Homework Survey is composed of two separate multi-item scales: The quantity of homework scale is composed of two items and the quality of homework scale is composed of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [821] "Five questions designed to measure self-efficacy for writing and revising an essay are used as stimulus items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [822] "The SoIS consists of a set of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [823] "The Minor Delinquency Measure was has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [824] "The measure includes seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [825] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [826] "Part 1 contains two questions that measure B&B operators' perceived work/life balance. Part II assesses the interaction between work and personal life domains. This measurement includes four subscales (16 items in total). Part III of the survey contains demographic items, including B&B operator's age, gender, educational background, working hours, and time devoted to non-work activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [827] "This measure consists of three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [828] "Three item forms make up the separate parts of this measure. Part A requires the subject to indicate agreement-disagreement with each of forty-six general expressions of opinion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [829] "This measure consists of seven questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [830] "Respondents are asked two questions about each of 20 adult actions regarding the importance of the action and the proportion of adults in the respondent's life who actually live the action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [831] "The Parental Bond Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [832] "The Perception of Control measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [833] "The Parental Investment in the Child Questionnaire contains 24 items composed of four scales: delight (seven items), sensitivity (five items); separation anxiety (five items), and acceptance of the child and the parenting role (seven items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [834] "In Section 1, biographical information was collected, Section 2 asked six questions concerning nurses’ actual experiences of family presence with dichotomous response alternatives (yes/no), and Section 3 presented 30 Likert-type items concerning nurses’ attitudes to family presence during resuscitation (Agree/Do Not Know/Disagree)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [835] "The Self-Report of Sexual Arousal Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [836] "The Textbook Rating Scale consists of two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [837] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [838] "The Teenagers' Self-Management of Diabetes Interview Guide contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [839] "The Test Interpretation Rating Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [840] "The Suicidal Behavior Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [841] "Six items measure parental support, 3 items assess positive affective quality, and 2 items measure parental involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [842] "The Violence and Parenting Interview contains three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [843] "The Acceptance of Women Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [844] "This measure consists of 26 items. There were also seven questions with various response options included at the end of the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [845] "consists of a group of five batteries of objective questions, with space provided for additional focused written comment by students; the entire instrument requires something under two hours for most students to complete. The first battery consists of nine questions which elicit only vital statistics and the second battery consisted of problem situations. The third battery consisted of twenty true-false statements about the Advisory System. The fourth battery, consisting of 15 questions, would be adaptable to almost any academic situation. The fifth battery contains five items."                                                                                                                                                                                                                                                                  
##  [846] "The Student-Faculty Relationship Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [847] "The Supervisory Interactional Justice Measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [848] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [849] "The Energy Dense Foods Serving Size Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [850] "The Unidimensional Career Locus of Control Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [851] "The Major Change Intention Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [852] "The Control/Autonomy Scale contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [853] "The Perceptions About Protein Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [854] "The Willingness to Go to War Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [855] "The Expectations and Experiences Questionnaires consists of two questionnaires: The expectations questionnaire contains 23 closed questions and 1 open item, and the experiences questionnaire contains 18 closed questions and 7 open items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [856] "The Everyday Discrimination Scale--Modified Version contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [857] "The Concern for Personal Safety Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [858] "The measure of job-related rewards includes statements on intrinsic and extrinsic rewards is assessed by eight items. The self-direction adolescents perceive parents to experience at work is measured by five items. A single item measures adolescents’ perceptions of parents’ experiences with stress at work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [859] "The measure consists of two dimensions, economics, as well as health and environment. Each dimension contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [860] "Six to seven items were created to represent each of the six kinds of denial."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [861] "The Degree of Sexual Interest Measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [862] "Immigration-Related Stress in Social and School Areas Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [863] "The scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [864] "The Sexual Behavior and Orientation Measure contained 13 items: 5 specific sexual behaviors, 4 items related to the \"first serious' romantic relationship, three items related to partner preferences (the 3 questions are responded to twice), and 1 item asking about sexual orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [865] "Adult Dispositional Hope Scale--French Version contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [866] "The Resource Dilemma Category Scheme included two items measuring each of the six relevant contributing factors; that communication helps group members come to better understand the situation, allows group members to coordinate their actions, enhances trust among members, helps cooperative social norms to emerge, is used strategically to make promises and commitments to one another, and helps members establish a group identity. In addition, two items asked participants for perceptions concerning four other factors believed to be related to cooperation during resource dilemmas: the acceptance of an equality norm, the adherence to this norm, the felt responsibility to protect the resource pool, and whether voiced promises and commitments actually were kept."                                                                             
##  [867] "The Male and Female Engagement in High-Risk Behaviors Scales is divided into both a male and a female scale. The female scale has five items and the male scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [868] "The Caregiver Religious Behavior Measure contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [869] "The self-disclosure attitude scale includes seven items; the social connection attitude scale includes six items, and Facebook satisfaction contains two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [870] "This measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [871] "The Process & Outcome Satisfaction Scales contains 6 items: Three items to measure decision process satisfaction and three items to measure decision outcome satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [872] "Part One questions respondents about their nationality, gender, age, country-of-residence, the composition of their travel party, length of stay in Turkey and the Gallipoli region, and regions of Turkey visited. Part Two consisted of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [873] "The Behavioural Reactions Questionnaire contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [874] "Driver self-assessment consisted of eight items in regard to the respondents’ abilities as drivers. A total of eight items measured driver confidence, and five items measured driver stress. In addition, worry related to traffic were measured with four items, attitude were measured with nine items, seven items measured the respondents’ willingness to pay to increase safety associated with road use and nine items measured priorities of safety."                                                                                                                                                                                                                                                                                                                                                                                                             
##  [875] "The Neighborhood Safety Measure contains two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [876] "The survey contains the following scales: Technical Support Available; Copyright Clearance; Prior Experience; Web Self Efficacy; Personal Innovativeness; Social Influence; Performance Expectancy; Effort Expectancy; and Behavioral Intention. All scales contain three items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [877] "The Illinois Structured Decision Support Protocol contains three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [878] "The Bully Victim Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [879] "The Positive Target Evaluation Measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [880] "The Parental Warmth and Support Measure contains five items and the Parental Rejection measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [881] "The questionnaire contained six questions per product."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [882] "One version the Comfort measure contains a single item; the second version contains six items. One version the Interest measure contains a single item; the second version contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [883] "Attitude toward the ad is measured using three items. Attitude toward the organization is also assessed by three items. Effectiveness is measured with 2 items, while intention to donate is measured with 3 statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [884] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [885] "Three items measure Defender self-efficacy, while 9 items measure Aggression self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [886] "This is a 9-item measure. Four items measured peer-oriented reasons and five items measured learning-oriented reasons for doing online groupwork."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [887] "This is a 27-item measure divided into three subscales (nine items each) measuring somatic anxiety, cognitive anxiety, and self-confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [888] "The Hopkins Competency Assessment Test contains 10 items: Four of the 6 questions (2, 3, 4 and 6) consist of a single item, and the remaining two questions (1 and 5) contain 4 and 2 items respectively, making 10 items in all."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [889] "The Trauma-Informed Practice and Trauma Assessment Scales consists of a total of 13 items: nine items assessed trauma-informed practice and four items are used for trauma assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [890] "The test initially presents two items per trial and the number of items increases by one upon successful completion of each three-trial set. Testing proceeds until subjects miss three consecutive trials within a sequence length."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [891] "The measure consists of 72 items across 18 subscales (four items per scale): Anger, Arrogance, Callousness, Coldness, Disobliged, Distrust, Dominance, Impersistence, Invulnerable, Manipulation, Opposition, Rashness, Self-Assurance, Self-Centered, Self- Contentment, Thrill-Seeking, Unconcern, and Urgency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [892] "The function subscale has 15 questions, while the disability subscales (frequency and limitation) each contain eight questions, for a total of 31 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [893] "The Neglect and Household Dysfunction Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [894] "The Gross and Fine Motor Skills Questionnaire consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [895] "The Westmead Post-Traumatic Amnesia Scale contains 12 items covering the domains of orientation and memory: Seven orientation items assess orientation to person (2 items), time (4 items) and place (1 item). Five items assess memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [896] "The Geriatric Rapid Adaptive Cognitive Estimate requires administration of only eight questions on average."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [897] "There are two parts to the GPCOG. The Patient test comprises four items and the Informant interview contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [898] "This is a 23-item measure. Eight items correspond to the BIS Scale (sensitivity to punishment) and 15 items comprise to the BAS Scale (sensitivity to reward)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [899] "Five- and ten-item versions were created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [900] "The Professional Identification Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [901] "The measure consists of the 5-item evaluations of intergroup social exclusion scenarios section, six items from the Intergroup Contact Scale, and finally 15 items from the Cultural Identity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [902] "The Care-related Quality of Life Instrument has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [903] "The Brief Questionnaire on Metacognition has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [904] "Three items on the Self Harm Questionnaire are screening questions about last incidents of self harm behavior or thinking. If any screening question is answered affirmatively, 12 follow-up questions regarding severity, function and consequences are presented."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [905] "The measure consists of two sections. Section A is made up of nine items that assess the socio-demographic characteristics of respondents, their disease stage and management profile, while section B consists of 15 items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [906] "This measure consists of the single-item Distress Thermometer, a checklist containing 16 items, and a final section listing 6 professionals (respondents check the box next to any provider they wish to have contact them)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [907] "The Relations with Neighbors Scale contains seven items plus questions about number of neighbors with whom one engages in different forms of contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [908] "The Trust in People Scale contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [909] "The Trust in Close and Distant People Scale contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [910] "The Pleasure from Reading Books Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [911] "The Cultural Activity Measure contains one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [912] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [913] "The Leisure Preferences Measure is a single-item measure with over 30 categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [914] "Four items measured trust and four measured distrust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [915] "The Awareness of Sanctions Measure has five items. A variation with four items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [916] "The measure consists of 6 two-item indexes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [917] "The Culpability Scale consists of four questions for each of the eight targets within their assigned race."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [918] "This measure consists of 36 story variations with one question for each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [919] "There are eight activities and a corresponding eight items on the Children's Lay Theories of Motivation Measure (4 on the academic form and 4 on the general form)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [920] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [921] "The Negative Affective Use scale is comprised of 10 items, the Social Use scale consists of six items, and the Positive Affective Use scale is comprised of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [922] "The Bully/Victim Interaction Involvement Scale contains a total of 12 items in two six items scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [923] "The nine items are divided into two groups: four items assess parental use of positive social control and five items assess parental use of negative social control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [924] "The 4-item measure consisted of two items regarding hirability and two items regarding chances of being hired."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [925] "The Premature Ejaculation Diagnostic Tool consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [926] "Distributive justice was measured using three questions, procedural justice was measured using three questions, informational justice was measured using three questions, and interactional justice was measured using four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [927] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [928] "The questionnaire was composed of two parts: the first part contained eight questions related to HIV and treatment characteristics of the study participants, and was completed by the researcher according to patients’ medical charts. The second part of the questionnaire was composed of demographic data, perceived benefit of and concerns about highly active antiretroviral treatment, adherence and sources of information."                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [929] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [930] "The Restrictive Attitudes toward Sex Measure contains three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [931] "The Recreational Fishing Specialization Measure consists of 11 composite indices and single-item metric indicators with a total of 36 components/items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [932] "The Postpartum Mood Measure consists of am single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [933] "This measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [934] "In the 16-item final version, acceptable legitimacy had nine items and accountable legitimacy seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [935] "The Job Candidate Perception Scale consists of vignettes followed by 6 single-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [936] "The Vocal Symptoms Questionnaire consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [937] "The DDPAT was constructed as a two-phase, Web-based or paper survey, with each phase consisting of ten questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [938] "The first part of the composite questionnaire consisted of the 12-item preoccupation-subscale of the Action Control Scale. The next section consists of 6 past and 6 current emotions. Finally, participants indicated on two items the extent to which they sometimes ruminated and spontaneously thought back about the incident"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [939] "The measure consists of 24 items. Six items each represent intrinsic motivation, and identified, introjected and external regulations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [940] "Six items are listed in the article."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [941] "Part 1 consists of 32 questions, while Part 2 consists of three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [942] "This 9-item measure assesses bullying (four questions), victimization (four questions), and fear of being bullied (one question)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [943] "Three items are used to measure each of the three dimensions (happiness, social recognition, and uniqueness), for a total of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [944] "The measure consists of a vignette and thirteen items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [945] "The measure consists of 12 items. Question items included five items on professional identification, three items on professional involvement, and four items on the commitment to stay in the same profession."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [946] "The Contingency Awareness Questionnaire is used with an attentional bias modification task, and is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [947] "The Locus of Control Scale is comprised of seven items, while the Risk Propensity Scale is measured by five items. The Risk-Taking Self-Efficacies Scale consisted of 3 items, while the last 3-item measure assessed outcome expectancies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [948] "This measure consists of 55 items. Each of the 11 topic areas contains five questions. Topic areas are as follows: brain and behavior, development and aging, memory, intelligence and learning, consciousness, emotion and motivation, social psychology, personality, mental illness, psychology and law, and psychological treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [949] "This is an 8-item measure. Four items were designed to measure both personal/family use and reducing potential losses occurring in infrastructure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [950] "In this questionnaire, participants first read definitions for interpersonal situations and self-situations, and are then asked to review both their lives and the last week and briefly describe the event that they most regretted in each situation. Subsequently, participants respond to two items for each event."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [951] "This measure consists of 15 items. Five items address Social Networking Sites, 5 items address Weblogs, and 5 items address YouTube. Items were for each application exactly the same."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [952] "The sociodemographic and practice characteristics section includes questions on gender, age, level of education, professional role, ward of activity, and number of years in practice. To assess the knowledge, 6 questions are asked. Six items assess the attitudes. The section on behaviors includes 5 questions, and in the last section, respondents are asked about the source/sources of information and whether they feel the need to acquire additional information."                                                                                                                                                                                                                                                                                                                                                                                            
##  [953] "Four items measure descriptive norms, while 12 items assess injunctive norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [954] "The measure consists of 14 items. Perceived corporate social responsibility is measured using four items. Consumer attitude is measured using three items. Willingness to select the restaurant is measured using four items. Three items are used to measure health-consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [955] "The Top Managers’ Attitudes Towards Adoption of Environmental Management Practices Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [956] "Following the elimination of three items, the final scale contained 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [957] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [958] "The measures are completed ten times a day on six consecutive days. Each time, event-related stress is reported. Activity-related stress is also reported, with three questions at each assessment time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [959] "Loyalty was measured with six items, while participant's perceptions of the airline's reputation was measured with three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [960] "The translated version had six films. Each film was followed by three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [961] "The scale included the same four items in each of four achievement domains (sports, instrumental music, reading, and math)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [962] "Three items assess task importance and 2 items measure task interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [963] "The measure consists of 35 items. Six items measuring self-presentation motivation were developed. Social presence was measured by five items, and telepresence was measured by seven items. Three items were used to measure anonymity. Social and emotional values were measured using six and five items, respectively. Finally, three items measuring buying intention were used."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [964] "The Sleep Status Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [965] "Scales assessing resource-specific and symbolic social policy attitudes were each measured with five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [966] "The Careless Response Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [967] "The Predictive Screening Tool for Depression and PTSD After Injury consisted of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [968] "The Unstructured Socializing with Peers in the Absence of Responsible Authority Figures Measure consisted of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [969] "The Factors Affecting Nursing Workload Questionnaire contains two questions for each of the 28 items (factors) for a total of 56 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [970] "This is an eight-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [971] "This measure consists of 4 items. Two items were used to measure both the tendency to reappraise and the tendency to use expressive suppression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [972] "This measure consists of 5 single items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [973] "This measure consists of 3 items. One item measured Satisfaction when working remotely, while two items assessed Perceptions of performance when working remotely."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [974] "The measure included a total of 11 items, specifically measuring the exclusion of minorities (three items), costs of immigration (three items), consequences of immigration (three items), and xenophobia (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [975] "The items on the PedsQLTM include: (1) Physical Functioning – PF (eight items), (2) Emotional Functioning – EF (five items), (3) Social Functioning – SoF (five items), and (4) School Functioning – ScF (five items) Scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [976] "This is a five-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [977] "The Effectiveness of Behavioral Strategies Scale consists of four questions for each of the six scenarios for a total of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [978] "This measure consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [979] "Five items were used in Wave I, while only three items were employed in Wave 2 of the development study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [980] "Two items assessed how much participants enjoyed interacting with the other target race and another item measured participants’ closeness to the out-group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [981] "Three indices (children, family members, and friends) are each measured by three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [982] "The entire measure consists of 13 items. The first three scales consist of three items each, while the supervisor trust scale consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [983] "The measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [984] "This is a 30-item measure. Twenty-six questions specifically related to the health belief model constructs of perceived threat (nine questions) and outcome expectations (17 questions), and four additional questions related to practitioners’ experiences with referral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [985] "The measure consists of a demographic section preceding a total of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [986] "The measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [987] "This is a 19-item measure. The authors included two questions concerning the extent to which respondents worked in CFTs. Three core facets of professional work were measured: domain distinctiveness (4 items), accountability (3 items), and task autonomy (4 items). Six items covered the three personality traits of interest (two items each for: extraversion, emotional stability, and openness to experience)."                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [988] "In this single-item measure, respondents are asked whether they know of any acquaintances, close friends, or relatives in a series of 40 occupations, and then for each occupation they are asked if they know someone in the occupation who is a member of their environmental social movement organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [989] "The Message Politeness Coding Scheme consisted of three items/parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [990] "The measure includes three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [991] "Participants are asked how they view the importance of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [992] "Participants state their level of agreement with five items on a 7-point scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [993] "The Brief Fatigue Inventory consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [994] "The self-rating measure has 16 items, with eight items assessing attachment avoidance and eight items assessing attachment anxiety"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [995] "Seven questions are asked for each of 20 major life activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [996] "The Perceived Moral Intensity Scale (PMIS) has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [997] "The Authentic Supervisors' Personal Integrity and Character Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [998] "The measures consist of five items, with external and anonymous whistleblowing being measured by three and two items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [999] "The Motivational-Affective Three and Single-Item Measures contains 3-items and 1-item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1000] "The measure consists of six items measuring two 3-item domains (environmental and philanthropy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1001] "The measure consists of 10 items, with nine items being dispersed across the three latent factors (Leadership opportunism, Corporate ethical values, and Willful ignorance; three items per factor). The variable, Likelihood of Behaving Opportunistically, was measured using a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1002] "After providing their gender and grade level in Part A of the measure, students are asked to identify the three items from a list of eleven issues that they feel affect students at their high school the most seriously."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1003] "The self-rated scale listed 17 parasomniac behaviors (PADSS-A), assessed their frequency from never to twice or more per night (PADSS-B; one item) and evaluated the consequences (PADSS-C; 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1004] "This 35-item survey consists of: two demographic questions; four questions about past and current smoking; five questions about future quitting; five questions about how many smokers out of 100 would quit by using each of five quitting methods; seven questions about the safety, effectiveness, effect on cravings and addiction potential of medicines; five questions about the Wisconsin Tobacco Quit Line; five questions about the quality of services provide by the Salvation Army; and two open-ended questions."                                                                                                                                                                                                                                                                                                                                            
## [1005] "This measure consists of 17 items, with eight and nine items, respectively, as direct and indirect measures of gender stereotype perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1006] "Research subjects read seven vignettes involving a person described as their friend and rate the appropriateness of the behavior in each situation on two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1007] "Functional fit and image fit are measured by a six-item, seven-point bipolar scale with pairs of adjectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1008] "This measure consists of 17 items. Customers' environmental sensitivity is measured using a nine-item scale. The intensity of government regulations is measured with eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1009] "This measure consists of 15 items, with three items comprising each of five factors (organizational forgiveness, organizational trust, organizational integrity, organizational optimism, and organizational compassion)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1010] "This 17-item scale includes nine items assessing perceptions of frequency of use and eight items assessing perceptions of problematic use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1011] "Ethical judgments and behavioral intentions are measured by asking the respondents the extent they agree/disagree with two questions for each of three scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1012] "The Emotion Identification Test includes a total of 24 videorecorded items, comprising six items each for the following four emotions: anger, fear, sadness, and happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1013] "This measure consists of 13 items. Suicide acceptability is measured by four questions asking respondents’ acceptance of suicide under four different circumstances. Personal Fulfillment and Social Support is measured by six items. Spirituality and religious practices, a factor often shown to be related to suicidal ideation, is measured by three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1014] "The Overwork Climate Scale included eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1015] "Participants are asked to provide the correct response to a total of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1016] "The Attentive Managerial Leadership Scale consisted of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1017] "The Sleep Duration Questionnaire consisted of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1018] "The Perceptions of Statutory Rape Offenders Questionnaire consists of a scenario followed by four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1019] "Susceptibility to smoking is assessed with three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1020] "The measure is comprised of ten items across three domains: rapport (items 1–4), motivation (items 5–7) and self-management (items 8–10)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1021] "The Risky Sexual Behavior Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1022] "The Bullying Intervention Methods Measure consisted of one item, where answers were coded into 8 categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1023] "The measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1024] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1025] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1026] "This measure consists of two questions and one optional question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1027] "The Engagement in Safety Precautions Measure consisted of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1028] "The Perceived Appropriateness of Unethical Behavior Measure consisted of six items (six items per study condition)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1029] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1030] "Three items are rated in response to 4 dilemmas recalled by the participant. The dilemmas are recalled using 4 prompts selected from a set of 12."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1031] "The Hypothetical Interpersonal Dilemmas Measure consists of one dilemma followed by three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1032] "The Inpatient Palliative Care Admission Triage Tool Focus Group Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1033] "The Twenty Item Values Inventory consisted of 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1034] "Participants evaluated eight stimuli on a four-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1035] "The Social Connections Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1036] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1037] "The Sleep Assessment Tool consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1038] "This interview consists of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1039] "The tool consists of 21 items classified into four subscales: informational giving and communication support (nine items); emotional support (three items); esteem support (four items) and quality care-giving support (five items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1040] "The 19-item questionnaire was divided into three parts. The first part included six questions related to the positive effects of equipment on patient care and nursing practice. The second part included eight questions related to the negative effects of equipment on patient care and nursing practice. The third part included five questions related to demographic characteristics of participants."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1041] "The Community Aged Care Nurse Practitioner Role Interview has a total of 11 items; five items for the health professional interview and six items for the client interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1042] "The Behavior Deviation Measure consisted of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1043] "The Anxiety about Uncertainty Discrepancy Measure consisted of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1044] "The measure consists of a single-item prompt for the assessment of 4 emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1045] "The 33-item processes of prevention scale includes 11 subscales (three items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1046] "Both forms comprise a 26-item rating scale (self-report: CAARS-S:S; observer: CAARS-O:S). The CAARS-S includes four-factor-derived subscales (Inattention/ Memory Problems, five items; Hyperactivity/Restlessness, five items; Impulsivity/Emotional Lability, five items; and Problems With Self-Concept, five items) and two created scales (the ADHD index, 12 items that best distinguish ADHD adults from nonclinical adults; and the ADHD inconsistency index, 8 pairs of items that have similar content and that can be used to identify random or careless responding)."                                                                                                                                                                                                                                                                                         
## [1047] "This measure consists of 10 items, with four items assessing sleep difficulty and six items assessing daytime sleepiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1048] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1049] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1050] "There are six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1051] "After reading 10 vignettes, participants are asked to rate a total of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1052] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1053] "The Memory and Executive Screening (MES) consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1054] "This measure consists of the same three items answered for each of five subjects (English/mathematics/German/Second Foreign Language/biology)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1055] "Six items are used to measure parents' reports of their child's reading and writing skills when they enrolled the child in school. Additionally, a question on the parents’ questionnaire asked for the student’s general ability to speak German at the time of school enrollment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1056] "Eighteen questions in this domain are distributed evenly across three subscales including assertiveness, confidence, and cooperation/contribution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1057] "The MDBI is comprised of 27 items, with an optional five-item treatment module available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1058] "Two questions are asked for each of 22 life areas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1059] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1060] "The Personal and Social Performance Scale is a 100-point single-item rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1061] "Participants are asked to respond to a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1062] "A total of 16 questions was asked. The first ten questions comprised the Density Graph Test. The subsequent six questions comprised the Speed Graph Test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1063] "Six of ten questions referred to symptoms of mania embedded in four neutral (filler) questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1064] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1065] "This measure consists of 8 items. Two items each were used to assess intentions, attitudes, perceived behavioral control, and subjective norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1066] "This measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1067] "The first section of the questionnaire included the following three categories: engagement with learning and education (six items), mental health and emotional well-being (four items), and behaviour (four items). An additional scaling item asking participants to rate the ‘general helpfulness’ of the SBCS is also included. In the second part of the questionnaire, open-ended questions are used to gather perceptions of impact at systemic and family levels, and also regarding areas for improvement."                                                                                                                                                                                                                                                                                                                                                       
## [1068] "One question is visually presented on a computer screen after each of 16 sentences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1069] "The entire measure consists of 16 items. Broad interest is assessed with a composite of three items. Specific interest in couple therapy is assessed in 13 services (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1070] "Twenty-seven items are used to assess food choice motives, 6 items are used to assess attitudes toward food, and 6 items are used to assess purchase intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1071] "The Human-Animal Mental Similarity Scale consisted of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1072] "The Somatomorphic Matrix consists of four questions that are answered in regard to 100 drawings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1073] "This measure consists of 2 parts. The first part is comprised of one item. The second part consists of 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1074] "Fifteen items are presented within 16 choice sets and rated using best-worst scaling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1075] "Each scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1076] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1077] "The Pro-environmental Self-Identity Scale consisted of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1078] "The perception of nonverbal cues is measured with six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1079] "The Superstitious Beliefs Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1080] "This measure consists of 7 items, with four items assessing role ambiguity and three items measuring role conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1081] "There are 4 single-item measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1082] "The 16 items of the survey are divided into three subclasses: (1) biological causes includes four items; (2) psychosocial causes includes seven items; and (3) magical–religious causes includes five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1083] "This is an 11-item measure. Participants respond to six items concerning their hopes, decreased anxieties, and efficacy beliefs regarding anti-HIV therapies. Five items assess perceived effects of HIV treatments on transmission risks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1084] "The Childhood Asthma Control Test−Spanish Version consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1085] "The Consumer Styles Inventory—Adapted has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1086] "The Moral Identification Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1087] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1088] "The Social Racism/Homophobia Scale is a four-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1089] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1090] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1091] "This is a single-item visual analogue scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1092] "This is a single-item measure. It is accompanied by a 36-item checklist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1093] "The Conference Evaluation Survey contains 9 items; five questions use a 5- point Likert scale and four questions are open-ended."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1094] "This measure consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1095] "The Psychological Distress Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1096] "This measure consists of 31 items. The BAS is measured by eight items, the BIS by 11 items and the FFFS by 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1097] "The measure consists of 18 questions about psychological symptoms, 18 questions about physical symptoms, and 15 strategies that may be used to reduce PMS symptoms. The total score could range from 0 to 51. The second part included eight items related to how men deal with PMS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1098] "The Review of System Questionnaire has four questionnaire formats with items ranging from 29 to 79."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1099] "For this single-item measure, respondents are asked to select which of four statements best describes their current feeling about their job."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1100] "The Perceived Risks and Utility of Disclosing Emotions Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1101] "The Perceived Self-Determination Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1102] "The Contact with an Out-Group Member Questionnaire consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1103] "The Ten-Item Personality Inventory--Italian Version-Revised consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1104] "The Secure Base Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1105] "For five scenarios, three questions tap each participant's Arousal to the scenario, Behavioral propensity to engage in a similar behavior, and General enjoyment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1106] "The Photo Elicitation Semantic Differential Scale comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1107] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1108] "The Perceived Neighborhood Environment Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1109] "Respondents are asked to agree or disagree with a total of four items concerning the autocratic empowerment of authority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1110] "The Public Attitudes Towards the Regulation of Gambling Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1111] "The Bioethical Values Inventory (BVI) consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1112] "The Teacher Engagement Report Form-New consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1113] "The SALCUSTOR Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1114] "The Perceptions of Peer Climate Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1115] "The Single-item TIPI-r includes 5 bipolar items (5 contrasting pairs of adjectives) corresponding to the Big Five personality traits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1116] "This is a 7-item measure. Voice was assessed with 2 items. Respect was measured using 2 items. Outcome favorability was measured with a single item. The process's impact on the victim's trust in the legal system and the process's impact on the victim's self-esteem were both measured using single items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1117] "The Business Questionnaire on Government Regulation consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1118] "The Pacing Action Categories of Effort Distribution consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1119] "The Arkansas Evaluation Initiative Rubric for Evaluation Reports consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1120] "The Motivations for Joining Discussion Forums and Fulfilment of Expectations Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1121] "The scale consists of eight sub-services and 36 items (four items each for Front office, Housekeeping, Food and beverage, and Employees; and four questions each for Physical facilities, Hygiene and health, Customer relations, and Other services)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1122] "The Monitoring the Future Measure of Global Self-Esteem consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1123] "The Touch Panel-type Dementia Assessment Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1124] "This is a 6-item scale. Two-item measures were used for each of three variables, generalized threats, values threats, and health threats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1125] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1126] "The Supplementary Person-Organization Fit Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1127] "The Perceived Risk Measures comprise seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1128] "The Organizational Performance Measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1129] "The Single-Item Self-Esteem Scale--Adapted Version consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1130] "Four items are used to measure boundary ambiguity. Five items are used to measure anger toward the absent parent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1131] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1132] "The Infidelity Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1133] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1134] "The Problem-Solving Self-Efficacy Scale--Adapted Version consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1135] "The Sleep Quality Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1136] "The Students’ Perceived Teacher Enthusiasm Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1137] "The Employee Performance Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1138] "The Performance Service Delivery Test contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1139] "The Exposure to Gender Harassment Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1140] "The Physicians' Motivation to Counsel Smoking Cessation Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1141] "The Seeking and Use of Health Information Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1142] "The Self-Esteem Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1143] "The Parental Attachment Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1144] "The School Bonding Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1145] "The Hockey Skills Importance Ranking Survey is comprised of two items: Ranking order of hockey skills from most to least important up to a total of 10 (with a minimum five skills already provided), and illustration of a drill that coincides with the skill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1146] "The General Risk Propensity Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1147] "The Social Validity Questionnaire consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1148] "The Coach Confidence Questionnaire consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1149] "This measure consists of 19 items. Brand community commitment is measured using 4 items, Community promotion behavior is measured using 3 items, Attitudinal loyalty to the brands is assessed by 4 items, while Repurchase intention is measured using 3 items. Word of mouth is measured using 2 items, and finally User activity is assessed using 3 single-item measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1150] "The Diabetes Health Literacy Measure consists of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1151] "The Crowdsourcing Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1152] "There are a total of 10 items. Five items are used to assess dating violence victimization and 5 items are used to assess dating violence perpetration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1153] "The Unwanted Sexual Activities Victimization or Perpetration Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1154] "The 5-item SISR is a two-part scale, with the single-item SISR-A and the 4-item SISR-B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1155] "The eHealth Engagement Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1156] "The Views of the Future Questionnaire consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1157] "The Parents’ Causal Attributions Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1158] "The Knowledge Sharing Self-Efficacy Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1159] "The Employee Flexibility Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1160] "The Composite Index of Harshness consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1161] "This measure is comprised of 28 items with the subscales ‘Leisure activities’ (four items), ‘Psychological barriers’ (two items), ‘Handling’ (five items), ‘Diabetes control’ (six items), ‘Dependence’ (five items), ‘Weight control’ (three items), ‘Sleep’ (two items), and one further item assessing General treatment satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1162] "The OER Sharing Behavior Scale consists of a total of 12 items (Six items for Internet-based sharing and six for school-based sharing)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1163] "The Concealment Stress During Late Childhood/Adolescence Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1164] "The Public Discomfort Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1165] "This measure consists of six items used to complete a single stem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1166] "The Job Performance Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1167] "The Openness to Experience Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1168] "The Customer Satisfaction Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1169] "The Caregiver Abuse Screen-Brazilian Version consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1170] "The Identity Centrality Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1171] "The Attitudes toward Participating in Physical Activities Measure asks for 4 responses to a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1172] "The Subjective Norms Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1173] "The Positive and Negative Anticipated Emotion Scales consist of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1174] "The Pro-environmental Intention to Revisit Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1175] "The Attitude Toward Talking about Drugs with One’s Child Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1176] "The Family Conflict Before Illness Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1177] "The Daily Workload Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1178] "The Teacher Intrinsic Motivation Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1179] "The HES-General consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1180] "The Knowledge about Depression Tool is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1181] "The Multicultural Activism Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1182] "The Comprehensibility in the Perception of Native and Foreign-Accented Speech Verification Task has forty items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1183] "The Perceived Regard/Intimacy Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1184] "The Persian translation of the SAS is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1185] "This measure consists of seven items that assess students’ self-efficacy in each domain (the same 7 items are repeated in reference to math and reading)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1186] "The Quality Marriage Index--Revised Version is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1187] "The Normative Belief Measure for Anti-Semitic Aggression is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1188] "The Sexual False Self Scale (SFS) consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1189] "The Privacy Concern Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1190] "The DCS is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1191] "The Students' Perception Toward Personal Information and Privacy Disclosure in E-Learning Questionnaire consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1192] "The Willingness to Interact with an Old Person Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1193] "This measure consists of four items preceded by a vignette."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1194] "The Staff-Elderly Interaction Behavioral Observation Checklist consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1195] "The Daily Stress and Emotional Disclosure Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1196] "The Experience with Sexual Behavior Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1197] "The Video Game Usage Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1198] "The Perceived Restaurant Healthfulness Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1199] "The Social Interaction Questionnaire is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1200] "The Satisfaction With Life Scale—Malay Version has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1201] "The Kids Coping Scale is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1202] "The Screening Solid Foods Infants 1 has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1203] "The STRATIFY has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1204] "The Social Distance Measure-Modified consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1205] "The Treatment Acceptability Measure--Adapted is comprised of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1206] "The Measure of Relationship Power consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1207] "The Emotional Overeating Questionnaire is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1208] "The Physicians’ Willingness to Accommodate Medication Requests Survey has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1209] "The Cultural Familiarity Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1210] "The Trait Anger Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1211] "The Career Pathways Focus Group Discussion and Interview Schedule consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1212] "The WHOMEN’s Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1213] "The Perceived Realism Scale--Modified consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1214] "The Perceived Suitability of Profiles Scales are comprised of seven items; four in the scale that assesses satisfaction with self-presentation, and three in the scale that measures perceived importance of the profile."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1215] "The Parent-Child Conflict Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1216] "The Perceived Abilities to Multitask Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1217] "The Breast Size Rating Scale consists of two items rated with regard to 14 images."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1218] "The Maternal Dysphoria Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1219] "The Relationship Quality Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1220] "The Experience of Shame Scale--Revised has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1221] "The Expectancies Regarding Mediation Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1222] "The Positive Expectancies toward Receptiveness to Lower-Fat Dietary Changes Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1223] "The Efficacy for Implementing Healthy Family Dietary Practices Index is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1224] "The Subjective Norm about Leisure-Time Physical Activity from Social Network Sites Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1225] "The Leisure-Time Physical Activity Intention Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1226] "The Choice Overload Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1227] "The Alcohol Cognitions Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1228] "The Risk Behaviors and Drinking Consequences Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1229] "The Professional Perceptions on Spirituality in Counseling Questionnaire consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1230] "The Absence Behavior Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1231] "The Reasons Not to Marry Survey consists of thirteen items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1232] "The Team Effectiveness Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1233] "The Perceived Suspense Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1234] "The Perceived Skill Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1235] "The Social Media Self-Efficacy Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1236] "The Helping Others in Need Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1237] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1238] "A series of three questions are asked for each of three salient roles chosen by participants from a list of eight roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1239] "The Gender Specific Justification Scale--French Version is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1240] "The Attitudes Toward Potential Dating Partner Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1241] "The Privacy-Related Concerns Index consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1242] "The Hedonic Well-Being Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1243] "The Behavioral Repair Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1244] "The Company Confidence Measure contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1245] "The Perceived Leadership Communication Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1246] "The Philadelphia Mindfulness Scale-Chinese Short Version consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1247] "The Satisfaction with Parenting Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1248] "The Child is Positive to Me Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1249] "The Partner Satisfaction Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1250] "The Policy Attitudes Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1251] "The Marriage Work Scale--Modified has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1252] "The Outcome Responsibility Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1253] "The Consumer Involvement in the Product Category Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1254] "The Perceived Utility of \"Ray's Night Out\" App Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1255] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1256] "The Family Cohesion Measure consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1257] "This measure consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1258] "The Self-Control Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1259] "The Restrictive Mediation Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1260] "The Software Process Improvement Success Measures have five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1261] "The IT Integration Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1262] "The Self Perception of Rigidity Semantic Differential Scale is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1263] "The Salience of Early Recollections Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1264] "The SSE consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1265] "The Accuracy of the Current Clinical Assessment Questionnaire consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1266] "The Perceived Language Discrimination Scale--Chinese Version consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1267] "The Work Role Overload Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1268] "The Safety Knowledge and Safety Motivation Scales have seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1269] "The Masculine Identification Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1270] "The Group-Based Contrition Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1271] "The Physical and Psychological Avoidance Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1272] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1273] "The Perception of Decline in Memory Abilities Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1274] "The State Self-Esteem Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1275] "The Felt Rejection Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1276] "The Team Prosocial Efficacy Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1277] "The Shortened Maximization Scales has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1278] "The System Justification Scale--French Version consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1279] "The Berlin Numeracy Test has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1280] "The Situational Dilemmas Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1281] "The Acceptance of Mining Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1282] "The Game Perceptions Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1283] "The Morisky Medication Adherence Scale—German Translation (MMAS-8D) has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1284] "The Structured Migraine Interview-Malay Version consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1285] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1286] "The Group Process Rating Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1287] "The Immutable Self Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1288] "The Group Member Motivation to Work Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1289] "The Agreeableness Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1290] "The Victimization Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1291] "Twenty-three items are used to assess teachers' perceptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1292] "The Leadership in Children's Small Groups Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1293] "The Knowledge About HIV Infection and AIDS Prevention Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1294] "The Relationship Closeness/Tie Strength Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1295] "The Cell Phone Use Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1296] "The Savvy Caregiver Program Semi-Structured Interview Guide is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1297] "The General Task Motivation Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1298] "The Cell Phone Use at Bedtime Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1299] "The Evoked Nostalgia Scale consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1300] "The Social Dominance Orientation-7 Scale consists of 16 items. The short version of this instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1301] "The EPS is comprised of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1302] "The a-MtL scale is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1303] "The Delinquency Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1304] "The Attitude Toward Eating ‘‘5 a Day’’ Measure contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1305] "The Awareness of Guilt Appeal Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1306] "The Perceived Organizational Support in Meetings Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1307] "The Perceptions of Idiosyncrasy Credit Questionnaire has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1308] "The Leadership Assessment Instrument has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1309] "The Unfairness Judgment Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1310] "The Strength of the Satan Concept Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1311] "The Group Cohesive Behavior Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1312] "The Advantages-Scale is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1313] "The Parents’ Angry Outbursts Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1314] "The Envy in Groups Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1315] "The Identification with Drama Series Scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1316] "The Employee-Perceived Customer Empowering Behaviors Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1317] "The Perceived Cognitive Demand Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1318] "The Supervisor-Directed Avoidance Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1319] "The Group Environment Questionnaire—Work Team Version has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1320] "The Perceived Inductive Potential of Essentialist Person Information Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1321] "The Rapport Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1322] "The Suicidal Behaviors Questionnaire—Revised—Chinese Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1323] "The Fear of Failure Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1324] "The Profile of Hearing-Aid Consumer Satisfaction Questionnaire—Modified has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1325] "The Correctional Managed Health Care Inmate Health Survey has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1326] "The Wish to Be Dead Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1327] "The MSRS--German Version is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1328] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1329] "The Entrepreneurial Orientation Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1330] "The Susceptibility To Retail Alcohol Promotions Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1331] "The Confucianism for Women Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1332] "The Confucianism for Men Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1333] "The SINS is comprised of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1334] "The Empathy Identification Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1335] "The Decisional Balance Pros and Cons Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1336] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1337] "The Hacking Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1338] "The Violent Behavior Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1339] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1340] "The Team Satisfaction Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1341] "The Intent to Donate Organs Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1342] "The Energy-Dense Foods Intake Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1343] "The Interaction Frequency Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1344] "The KMS-N is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1345] "The Emotional Manipulation Measure—Modified has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1346] "The Brand Commitment Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1347] "The Occupational Future Time Perspective Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1348] "The Intention to Retire Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1349] "The Parenting Stress Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1350] "The Open-Minded Cognition Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1351] "The Commitment Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1352] "The Experiences of Discrimination Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1353] "The Feelings of Trust towards Different Institutions Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1354] "The Attentional Fixation on Suicide Experiences Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1355] "The Satisfaction With Life Scale−Brazilian Version consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1356] "The Social Belonging Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1357] "The Attitudes Towards the Construction of the Dam Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1358] "The Nonmedical Use of Prescription Stimulants Intentions Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1359] "The Symbolic Attributes of Electric Cars Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1360] "The Relational Outcomes Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1361] "The Spiritual Support Subscale for the Medical Outcomes Study Social Support Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1362] "Sense of Community Index--Brazilian Children Version consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1363] "The Religiosity Scale—Modified has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1364] "The Obesity Discrimination Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1365] "The Bias Awareness Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1366] "The Endorsement of Fit and Develop Theories Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1367] "The Realism of the Vignette Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1368] "The Financial Feasibility Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1369] "The Big Five Questionnaire for Children--French Version contains 65 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1370] "The Attitudes Toward Drink Driving Measure had six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1371] "The Sensation Seeking Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1372] "The Support of Integration Efforts Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1373] "The Belief Bias Syllogism Test has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1374] "The Paratonia Assessment Instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1375] "The Expectancy Violation Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1376] "The Social Orientation Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1377] "The Rapid Assessment Reflection Test has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1378] "The Purchase Intention Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1379] "The Outgroup Empathy Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1380] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1381] "The Facebook Intensity Scale is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1382] "The Dichotomous Index of Doctrinal Orthodoxy has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1383] "The Intergroup Contact Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1384] "The Subjective Well-Being Index is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1385] "The Prejudice Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1386] "The Test of Executive Functioning in an Emergency has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1387] "The Employees’ Unethical Pro-organizational Follower Behavior Scale--German Version is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1388] "The Decisions about Socioscientific Issues instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1389] "The Overconfidence Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1390] "The New Product Innovativeness Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1391] "The Multilevel Institutional Support Measures have nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1392] "The Skill Development Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1393] "There are a total of 11 items. Four items address Homework Compliance, 3 items address Homework Persistence, and 4 items address Homework Seasonal Efforts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1394] "The Cross-Cultural Competency Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1395] "The Career Development Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1396] "The Measure of Intersectional and Singular Consciousness consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1397] "The Implementation Intentions Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1398] "The Correctional Work Environment Characteristics Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1399] "The Health Consciousness Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1400] "The Food Resource Management Skills Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1401] "The Perceived Need, Effectiveness, Readiness and Capability Rulers are each comprised of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1402] "The Daily Skill Utilization Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1403] "The Modifying Cognitions Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1404] "The Need for Popularity Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1405] "The Internal Ethics Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1406] "The Moral Intensity Scale consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1407] "The Bedside Diagnostic Tool-6 consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1408] "The Self-reported Personal Improvement Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1409] "The Acceptance Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1410] "The Emotions After the Response Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1411] "The Autonomy Support Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1412] "The Insurance Stressors in Hematopoietic Stem Cell Transplantation Questionnaire is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1413] "The Financial Stressors Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1414] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1415] "The UCLA Loneliness Scale—Modified has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1416] "The Internet Addiction Scale—Modified has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1417] "The Anxiety and Avoidance Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1418] "The Nuisance Beliefs Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1419] "The Social Validity Questionnaires has seven items for the student portion and six items for the teacher portion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1420] "The Peer-Nominated Cyber Social Behaviors Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1421] "The Trust in Science Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1422] "The Fear of Home Foreclosure Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1423] "The Community Connections Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1424] "Direct measurement was based on five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1425] "The Values Anchoring Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1426] "The Ideas Generation Implementation Questionnaire consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1427] "The 7-item seniors’ questionnaire included four subscales: (a) Knowledge contribution (one item); (b) Learning skills (two items); (c) Children’s knowledge contribution (three items); and (d) Children’s teaching skills (one item). The 10-item children’s questionnaire included five subscales: (a) Teaching skills (one item); (b) Knowledge contribution (one item); Seniors’ teaching skills (one item); Seniors’ learning skills (four items); and Seniors’ knowledge contribution (three items)."                                                                                                                                                                                                                                                                                                                                                                
## [1428] "The Healthy Eating Intentions Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1429] "The Adolescent Self-Report Questionnaire on Physical Abuse and Punishment is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1430] "The Trust and Customer Concern Inferences Measures consist of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1431] "The Rewards of Maladaptive Response Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1432] "The Daily Job Characteristics Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1433] "The Self-Efficacy for Healthy Eating Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1434] "The Subjective Norms for Healthy Eating Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1435] "The Attitude toward Healthy Eating Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1436] "The Weekly Person–Job Fit Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1437] "The Safety Performance Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1438] "The Reading Self-Efficacy Scales has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1439] "The Institutional Trust Questionnaire consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1440] "The Usability Interview Survey consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1441] "The Perceived Synchronicity Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1442] "The Partner Attractiveness Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1443] "The HPV/Anal Cancer Knowledge Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1444] "The Stalking Victimization Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1445] "The Attitude Extremity Measure has one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1446] "The Parents' and Teachers' ICT Attitude Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1447] "The Perceived Mass Partisan/Polarization Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1448] "The Children’s Medical Knowledge Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1449] "The Intra-ethnic Community Violence Scale—Modified has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1450] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1451] "The Social Generativity Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1452] "The Action Planning Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1453] "The Satisfaction Measures has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1454] "The Perceptions of Individual Outcomes Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1455] "The Savoring Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1456] "The Life Events Occurrence Leading to a Change of Relationship With God Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1457] "The Attitudes towards People who Inject Drugs Scales has twenty items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1458] "The Subjective Well-being Index has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1459] "The Socialization Goal Questionnaire--Adapted is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1460] "The Sedentary Normal Weight Questionnaire contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1461] "The Tourist–Destination Identification Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1462] "The Perceived Severity Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1463] "The Event-Related Fear Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1464] "The Anticipated Regret Measure is comprised of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1465] "The Recovery Self-Assessment-Brief Version has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1466] "The Bystander Perception Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1467] "The Existential Dogmatism Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1468] "The Punishment Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1469] "The Strength of Transgender Identity Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1470] "The TCBS is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1471] "The Affiliation School Bond Index has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1472] "The Dutch Work Addiction Scale-10—Hebrew Version has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1473] "The Interest Change Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1474] "The Degree of Encouragement of Relevant Persons to Live and Work Abroad Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1475] "The Measure of Gender Affirmation has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1476] "The Expectations towards Language Teaching at University Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1477] "The Daily Well-Being Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1478] "The Information Value Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1479] "The Depth of Processing Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1480] "The Goal Importance Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1481] "The Developmental Trauma Disorder Questionnaire consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1482] "The Knowledge of Intellectual Property Laws Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1483] "The Social Anxiety Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1484] "The Product Involvement Scale for Restaurant Dining Services has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1485] "The Revised Instructional Face Support Scale--Modified has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1486] "The Bias Correction Strategies Interview has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1487] "The Relational Aggression Victimization Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1488] "The Attitudes Toward Delinquency Index consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1489] "The Expectations of Respect in Dating Relationships Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1490] "The Job Performance Measure is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1491] "The Metadehumanization Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1492] "The TEI--Short Form: Modified is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1493] "The Sleep Problem Acceptance Questionnaire has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1494] "The User's Personal Innovativeness and Experience Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1495] "The User Innovator Perceived Benefits Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1496] "The 25 items are categorized into the following technology groups: TV (five items), telephone (one item), mobile phone (three items), computer (seven items), digital camera (three items), and general technologies (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1497] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1498] "The Observation of Organizational Norms for Electronic Multitasking During Meetings Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1499] "The measure consists of 12 items divided as follows: News Space (four items), Space for Social Interaction (three items), Creative Space Orientation (four items), and Game Space (one item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1500] "The SPES is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1501] "The 19-item Theory of Planned Behavior Questionnaire was comprised of six scales: Attitude toward dieting (six semantic differential scales); Subjective norm (one item); Perceived behavioral control (five items); Intention to diet (three items); Perceived need (two items); and Anticipated regret (two items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1502] "The Intention to Choose Green Energy Devices Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1503] "The Self-Report Habit Index--Short Version has six items for each of the four dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1504] "The Trust in Information Sources Measure was comprised of six items when administered to the study sample. Only two of the items were used in the structural equation modelling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1505] "The Couterarguing Index is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1506] "The Acculturation-specific Risks Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1507] "The Verona Patient-Centred Communication Evaluation Scale is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1508] "The Attitude toward the Site Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1509] "The Fears of Judgmental Reactions Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1510] "This is a one-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1511] "The Centrality of Human Rights Work Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1512] "The Frequency of Monitoring by Parental Figures Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1513] "The Mathematics and Science Attitude Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1514] "The Student Behavioral Engagement Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1515] "The PSQ is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1516] "The Environmental Perceptions of Street Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1517] "The Veteran Identity Centrality Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1518] "Five items are asked in reference to each of 10 vegetables."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1519] "The Social Attribution Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1520] "The Japanese Version of the RAQ is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1521] "The Conditioned Stimulus Attitude Assessment Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1522] "The Prosocial Scenario Cross-Cultural Variability Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1523] "The IOS is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1524] "The scale consists of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1525] "This 14-item questionnaire consists of the following measures: Enjoyment (3 items), Attention (1 item), Effectiveness (1 item), Usefulness (2 items, Comprehension (4 items), Ease of use (1 item), Feedback (1 item), and Sense of control (1 item). The questionnaire for the Safety Card approach does not include the two questions on Feedback and Sense of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1526] "The Adapted Client Satisfaction Questionnaire consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1527] "The Maternal Influence Scale--Japanese Version consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1528] "The Harassment Perceived as Due to Gender Nonconformity Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1529] "The Relationship Commitment Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1530] "The Deficient Self-Regulation Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1531] "The OBSE is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1532] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1533] "The Attitudes Toward Women Holding Positions of Political Power Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1534] "The Preparedness For Retirement Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1535] "The Test of Ideational Praxis is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1536] "This measure consists of the following three items: delayed recall, help remembering medications, and help planning a trip for errands. For patients not receiving medications, 2 items are selected (delayed recall and help planning a trip for errands)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1537] "The Mate Guarding Measures have four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1538] "The Attention to Health Warning Labels Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1539] "The nine-item effort beliefs subscale contained four positive and five negative items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1540] "This test consists of 10 stories, which are each followed by four questions with the following labels: Faux Pas Detection, Identification, Comprehensive and False Belief."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1541] "The Construction Workers' Self-Efficacy Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1542] "The Donation Justification Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1543] "The Competitiveness with the Room’s Previous Occupants Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1544] "The Fixed Mindset Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1545] "The Attributions of Racism Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1546] "The LGBTQ Peer Advocate Self-Efficacy Inventory has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1547] "The Preference-for-Creativity Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1548] "The Weight-Loss Course Goal Commitment Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1549] "The Sense of Responsibility Regarding Weight Management Measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1550] "The Ability to Differentiate Between Depression and Dementia Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1551] "The Perception of the Prevalence of Dementia and Depression in Long Term Care Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1552] "The Attitudes Toward Reporting Accidents at Work Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1553] "The Stressful Life Events Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1554] "The Indicators of Religious and Sexual Orientation Identity Conflict has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1555] "The Treatment Evaluation Inventory—Short Form (TEI-SF) has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1556] "The Caring Ethical Environment Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1557] "The Life Hassles Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1558] "The Chronic Disease Monitoring Outcome Expectancies Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1559] "The Intention, Self-Efficacy, and Self-Reported Smoking Behavior Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1560] "The Chronic Disease Monitoring Role Orientation Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1561] "The General Mattering Scale—Adapted has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1562] "The General Contact Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1563] "The Parental Attachment Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1564] "The Attitude Certainty Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1565] "The Attitudes and Outcome Expectations towards Bystander Behavior Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1566] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1567] "The Psychological Ownership Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1568] "The Mental Skills Strategies Form is comprised of two items. It also consists of a section for obtaining demographic information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1569] "The Interaction Realism Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1570] "The PSU Football Fandom Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1571] "The PCMHI Training Qualitative Evaluation is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1572] "The Barber Suggestibility Scale—Spanish Version has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1573] "The Perceived Sense of Betrayal Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1574] "The Symbolic Racism 2000 Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1575] "The Tomboy Identification Measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1576] "This instrument consists of one item and a nine-category coding scheme."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1577] "The Suicidal Intent Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1578] "The Financial Well-Being Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1579] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1580] "The Anticipated Work–Family Conflict Single-Item Measure has 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1581] "The Index of Supervisor Support is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1582] "The Differential Reinforcement of Costs Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1583] "The Intergroup Disgust Sensitivity Scale—Modified has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1584] "The Intergroup Threat Scale--Modified has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1585] "The Depression Symptoms Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1586] "The Positive Familial Social Support Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1587] "The Support for Color-Blind Public Policy Measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1588] "The questionnaire consists of four questions for the peer tutors and tutees, and six questions for the teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1589] "The Perceived Acculturation Preferences Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1590] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1591] "The Subjective Sound Assessment Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1592] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1593] "The Pre-math Skills Measure—Finnish Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1594] "The Tangible Rewards for Creativity Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1595] "The Survivor-Defined Practice Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1596] "The Entrepreneurial Intent Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1597] "The Dynamic Structure Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1598] "The Attitude toward Parents Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1599] "The Spatial Dispersion Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1600] "The Temporal Dispersion Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1601] "The Media Viewing Questionnaire has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1602] "The Attribution Style Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1603] "The Goodwill-Based Institutional Trust in Government Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1604] "The Frequency of Peer Victimization Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1605] "The Student Social Status Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1606] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1607] "The Primary Cause of Obesity Measure consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1608] "The Key Informant Interview Guide consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1609] "The Forgiveness Techniques Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1610] "The Measure of Initial Attraction—Short Interest Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1611] "The Caregiver Burden Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1612] "The Negative Condom Attitudes Measure was initially comprised of five items, but analysis lead to the removal of one item, leaving a final item count of four."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1613] "The Expectation of Reality Shock Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1614] "The Exposure to Pet Aggression Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1615] "The Session Engagement Questionnaire has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1616] "The meaning of power is measured using nine items: five items measure the Control component of power and four items measure the Responsibility component of power."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1617] "The Controllability of Smoking Measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1618] "The Perceived Lung Cancer Risk Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1619] "The Work-Family Conflict Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1620] "The Associative Stigma Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1621] "The Ambivalence Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1622] "The Hurricane Sandy Questionnaire consists of thirteen items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1623] "Assessment of Clinical Decision-Making in Evidence-Based Treatment for Child Anxiety and Related and Disorders consists of 12 items. There are two forms with six items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1624] "The Videoconference Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1625] "The Pre-College Students' Perception of Drinking Social Norms Measure has one item to measure injunctive norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1626] "The Family Attachment Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1627] "The Harsh Parenting Style Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1628] "The Household Religiosity Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1629] "The Family Conflict Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1630] "The National Violence Against Women and Men Surveys--Modified Version are comprised of seven items each (staff and inmate versions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1631] "The Attitudes Toward Bullying Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1632] "This 5-item measure consists of the following sub-sections: Connectedness (one item), Organizational Membership (one item), and Participation (three items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1633] "This 7-item measure consists of the following sub-sections: Peer Support (five items), Friends of the Same Sexual Identity (one item), Time Spent with Same Sex Attracted Women (one item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1634] "The Psychosocial Impact Scale for Chemical, Biological, Radiological and Nuclear Incidents is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1635] "The Cognitive Appraisal of Work Intensification Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1636] "The Perceived Empathic Response Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1637] "The Self-Efficacy Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1638] "The Computer Self-Efficacy and Anxiety Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1639] "The Empathic Concern for the Potential Victim Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1640] "The Construction Safety Behavior Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1641] "The Valuing Happiness Scale--German Version consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1642] "The Cognitions about Rewards, Recognition and Promotion Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1643] "The Personal Commitment Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1644] "The Online Political Participation Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1645] "The Revised Psychological Capital Questionnaire—Modified has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1646] "The Behavior Intentions for Fuel-efficient Driving Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1647] "The Father Role Centrality Standards Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1648] "The Father Status Centrality Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1649] "Sexual Attitudes of Emerging Adults Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1650] "The Support For Institutional HIV Programming Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1651] "The Affective, Continuance and Normative Organisational and Occupational Commitment Scales are each comprised of six items, for a total of 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1652] "The Collective Angst at National Level Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1653] "The Parental Identity Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1654] "The Relationship-Focused Coping Scale—Spanish Version has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1655] "The FCRS is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1656] "The Teacher and Classmate Support Questionnaire--Greek Adaptation is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1657] "The YouTube Survey has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1658] "The Online News Exposure and Sharing Measures have five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1659] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1660] "The Ethnic Ties and Non-Ethnic Ties Measures has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1661] "The Moral Disengagement Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1662] "The Information Seeking Experience Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1663] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1664] "The Anticipated Guilt Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1665] "The Intentions to Ask a Texting Driver to Stop Texting Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1666] "The Perceived Utility of Outplacement Services Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1667] "The Treatment Credibility Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1668] "The Teachers' Attitudes Toward Students with Epilepsy Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1669] "The Knowledge About Epilepsy Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1670] "The Explicit Political Identification Measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1671] "The Psychological Needs Thwarting Scale in Physical Education—Chinese Version has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1672] "In this 13-item measure, 12 items assess Prototype favorability and a single item assesses Prototype similarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1673] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1674] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1675] "The Attitudes of General Hospital Doctors Toward Patients With Comorbid Mental Illness Questionnaire has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1676] "The Support for the Buildup Index has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1677] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1678] "The Work Situation Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1679] "The Post Military Deployment Parenting Difficulties Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1680] "The Clinical Severity Index consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1681] "The Outcome Expectations for Obese Patients Scale is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1682] "The Attitudes Toward Same-Sex Marriage—Modified has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1683] "The Implicit Theory of Morality Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1684] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1685] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1686] "The Brief Resilience Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1687] "The Attitudes Toward Expert Testimony Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1688] "The Religiousness Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1689] "The Future Bodily Changes Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1690] "This Cognitive Fusion Questionnaire--Korean Version (K-CFQ) consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1691] "The Childbearing Attitudes Measure—Adapted has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1692] "The Harm Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1693] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1694] "The Parental Emotional Warmth Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1695] "The Job Satisfaction and Job Pride Scale has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1696] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1697] "The Population Experience Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1698] "The Practicum Setting Preferences Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1699] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1700] "The Organizational Citizenship Behaviour Towards the Environment Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1701] "The Committee Performance Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1702] "Participants are asked to rate each of five beverage items using three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1703] "This measure consists of 13 items assessing the following scales: Attachment (three items), Engagement (four items), and Responsibility (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1704] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1705] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1706] "The Goal Orientations Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1707] "The Justification of Cyberbullying Scale consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1708] "The Implication in Victimization and Aggression in Bullying and Cyberbullying Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1709] "The Knowledge About HIV Questionnaire consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1710] "The Attachment to Australia Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1711] "The Ten-Item Personality Inventory--French Version consists of ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1712] "The Moral Reactions Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1713] "The Researcher Credibility Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1714] "The Memory Support Rating Scale (MSRS) has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1715] "The Childhood Stability Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1716] "The Discrimination Judgment Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1717] "The Judgment of the Zimmerman Verdict Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1718] "The Collective Action Intentions Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1719] "The two questionnaires each contain 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1720] "The Academic Self-Regulation Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1721] "The Perceived Neighborhood Quality Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1722] "The Perceived Physical Engagement Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1723] "Each of the two questionnaires consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1724] "The Perceived Risk Message Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1725] "The Job Insecurity Scale—Romanian Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1726] "The Body Scan Instrument has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1727] "The Summary of Diabetes Self-Care Activities-–Arabic Version is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1728] "The Involvement in School-Based Activities Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1729] "This is a 15-item measure. There are four items on Procedural fairness, three items on Distributive fairness, four items on Interpersonal fairness, and four items on Informational fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1730] "The Morisky Medication Adherence Scale-8--Arabic Version has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1731] "The Cultural Resources Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1732] "The Positive and Negative Family Relationships Scale consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1733] "The Particular Social Trust Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1734] "The Exposure to Feminism Measure is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1735] "The Political Trust Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1736] "The Supportiveness of STEM Peer Network Measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1737] "The Sexual Intimate Partner Violence Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1738] "The Science Literacy Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1739] "The Perceived Severity of the Disease Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1740] "The Emotional Reactions to the Disease Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1741] "The Comprehension Scale consists eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1742] "The Perceived Benefit of Screening Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1743] "The Deviant Peer Involvement Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1744] "The Prior Gay Social Media Exposure Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1745] "In this 7-item scale, three items assessed Enriching, two items measured Enticing, and two items assessed Enabling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1746] "The Motivational Strength Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1747] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1748] "The Perceived Learning Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1749] "The Perceived Enactive Realism Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1750] "The Relational Victimization Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1751] "The Perceived Graphic Realism Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1752] "The Consumption Emotion Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1753] "The Emotion Regulation Questionnaire—Modified has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1754] "The Perceived Gender Discrimination Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1755] "The Crash Risk Perception Questionnaire has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1756] "The Confidence in Coping With Patient Aggression Instrument—Adapted has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1757] "The Treatment Satisfaction Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1758] "The Fear of Being Involved in a Traffic Crash Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1759] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1760] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1761] "The Fostering Relevance Measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1762] "The CAQ-8 is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1763] "The Parent with Limited English Proficiency Questionnaire consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1764] "The Usefulness of Evaluation Questionnaire is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1765] "The Perceived Behavior Control Measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1766] "The Peer Crime Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1767] "Teachers' Attitudes Towards Inclusive Education Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1768] "The Teacher Motivation Scale consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1769] "The Family Support Scale is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1770] "The Big Five Questionnaire for Children--Modified has 33 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1771] "The Informal Social Control of Child Maltreatment Scale—Modified has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1772] "The Immediacy Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1773] "The Overlap of Self, Ingroup, and Outgroup Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1774] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1775] "The Parenting Stress Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1776] "The Task Interdependence Scale—Adapted Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1777] "The Confidence in Coping With Patient Aggression Instrument has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1778] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1779] "The Virtual Leg Illusion Questionnaire consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1780] "The PSM is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1781] "Mood Ratings has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1782] "The Feeling of Reactance Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1783] "The MPIL is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1784] "The Attitudes Toward Same-Sex Marriage Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1785] "The Foreign Language Communication Apprehension Short Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1786] "The Social Support Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1787] "The Postpartum Stressors Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1788] "The Work Time Control Scale (WTC) is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1789] "The Social Bonding Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1790] "The Materialism Scale—Portuguese Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1791] "The Perceptions of Neighborhood Safety Measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1792] "The Self-Efficacy to Avoid Violence Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1793] "The Partner Liking Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1794] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1795] "The Expectations Concerning Child's School Success Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1796] "In this 6-item scale, three questions measured Mathematics-related self-concept and three items assessed Reading-related self-concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1797] "The Normative Beliefs About Aggression Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1798] "The Table Interpretation Assessment consists of four assessments with six items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1799] "The Experiencing Shame From Cheating Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1800] "The Personal Morality Prohibitions Against Academic Dishonesty Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1801] "The Employee Beliefs Regarding the Impact of Unconventional Appearance on Customers Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1802] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1803] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1804] "The Player Motivation Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1805] "The Detachment From Work Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1806] "The Career Optimism Measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1807] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1808] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1809] "The Video Questionnaire is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1810] "This measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1811] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1812] "The Driving Questionnaire is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1813] "The Absence Norm Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1814] "The Career Engagement Scale—Persian Version has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1815] "The measure is made up of a total of 30 items distributed across six scales of five items each: Fixed vs variable, Serial vs disjunctive, Sequential vs random, Investiture vs divestiture, Formal vs informal, and Collective vs individual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1816] "This instrument consists of a two-item coding scheme."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1817] "The Caregiver-related Social Support Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1818] "The Perceived Caregiver Stigma Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1819] "The Kids-CAT was successfully built covering five item banks (with 26–46 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1820] "The Personal Water Conservation Norms Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1821] "The Edward Snowden as a Hero Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1822] "The Social Media Addiction Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1823] "The Asian and Western Media Appearance Comparison Scales have six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1824] "The Implicit Theories of Sexual Attraction Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1825] "The Smoker’s Identity Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1826] "The Craving Scale--Adapted is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1827] "The Jealousy-Related Emotions Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1828] "The Knowledge Acquisition Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1829] "The Need for Cognitive Closure Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1830] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1831] "The Physical Activity Acceptance Questionnaire (PAAQ) has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1832] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1833] "The Sexual Risk Perception Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1834] "The Movie Reactions Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1835] "This 36-item questionnaire included the following: six questions related to socio-demographic characteristics; eight questions about students’ Internet usage; and 10 and 12 items, respectively, about physical and psychosocial behavioral problems aimed to assess the influence of Internet addiction on students’ daily life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1836] "The FIQ consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1837] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1838] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1839] "This is a 13-item scale. Seven items assess Challenge appraisals and six items assess Resource appraisals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1840] "The Discrimination Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1841] "The two scales consist of a total of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1842] "The Time Management Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1843] "The Intent and Readiness for Suicide Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1844] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1845] "The Work–Family Conflict Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1846] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1847] "The Knowledge about Breast Cancer Screening Guidelines Questionnaire has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1848] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1849] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1850] "The Children’s Sleep Habits Questionnaire—Abbreviated Version has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1851] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1852] "The Foreign Language Use Index has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1853] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1854] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1855] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1856] "The Musical Self-Theories and Goals Questionnaire is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1857] "The Biogenetic Causal Beliefs Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1858] "The Acceptable Information Systems Use Scale is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1859] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1860] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1861] "The Emergency Admission Risk Likelihood Index has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1862] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1863] "The Paranoia Checklist—3 Items has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1864] "The Satisfaction With Life Scale--Italian Version contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1865] "The Relationship-Focused Coping Scale has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1866] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1867] "The Perceived Adverse Child Functioning Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1868] "This measure includes 8 hypothetical transgression stories. Twenty questions are included for moral stories and 20 items for non-moral stories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1869] "The PTSD Checklist-5—Abbreviated 4 & 8 Item Versions have four and eight items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1870] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1871] "The full OCCSEFF consists of 19 items. The short form (OCCSEFF-8) consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1872] "The Dispositional Envy Scale--Spanish Version is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1873] "The Invasiveness Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1874] "The SMUQ is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1875] "This 12-item scale consists of two subscales: the Positive subscale (seven items) and the Negative subscale (five items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1876] "The Perceived Deception Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1877] "The Culinary Socialization Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1878] "The Spanish Food Situations Questionnaire has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1879] "The Eating Disorder Help-Seeking Behaviors Inventory—Friend Version has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1880] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1881] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1882] "The Communal-Image Endorsement Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1883] "The Demand, Resource, and Threat Appraisals Measure is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1884] "The Dietary Self-Concept Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1885] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1886] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1887] "The Team Moral Disengagement Questionnaire (TM-D) is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1888] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1889] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1890] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1891] "The Emotional Presence Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1892] "The Politeness Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1893] "The Post Course Learning Perception Scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1894] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1895] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1896] "The Surface Acting Scale—Modified has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1897] "The Deep Acting Scale—Modified has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1898] "The Conversation Quality Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1899] "The Source Credibility Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1900] "The Patient Health Questionnaire-9--Vietnamese Version has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1901] "The Homelessness Among Lesbian, Gay, Bisexual, Transgender, and Queer Youth Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1902] "The Need Fulfillment Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1903] "This measure consists of six items applied to each of five different audience groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1904] "The Drinking Expectancy Questionnaire for Men Who Have Sex With Men—Spanish Version has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1905] "The Disordered Eating Symptoms Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1906] "The Revised Religious Practice Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1907] "The Organizational Crisis Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1908] "The Family–School Conflict Scale is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1909] "The Offline Activities Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1910] "This is a six-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1911] "The Social Media Disorder Scale-9 has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1912] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1913] "The Communication About Childbirth Choices Measure is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1914] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1915] "The Bystander Inaction Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1916] "The Faith in Deliberation Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1917] "The Perceived Impact of Pregnancy Measure comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1918] "The Self-Reported Reappraisal Ability Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1919] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1920] "The Standardized Patient Script Adherence Rating Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1921] "The Standardized Patient Character Fidelity Rating Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1922] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1923] "The final instrument is made up of 23 multiple-choice items (scored 0 or 1), four multiple-response items (scored 0, 1, or 2 based on the 19 individual items) and five open-response items (scored 0, 1, or 2, with one item including two parts), thus there are 48 answered items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1924] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1925] "The Knowledge of Safety Critical Information Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1926] "The Postcrisis Organizational Reputation Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1927] "The Drinking Games Attitudes Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1928] "The Building Problems Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1929] "The Anger Toward the Organization Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1930] "The modified Moral Disapproval Scale includes four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1931] "The Conflicting Advice Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1932] "The Questionnaire on Auditory Attention in Daily LIFE has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1933] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1934] "This questionnaire consists of four questions comprising a total of 41 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1935] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1936] "The Performance Attribution Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1937] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1938] "The Psychological Contract Breach Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1939] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1940] "The Behavioral Activation for Depression Scale—Short Form; French Version has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1941] "Twenty items are used to measure the affective, behavioral, cognitive, and motivational components of interpersonal dependency in older adults."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1942] "The Economic Functioning Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1943] "The Attitudes and Experiences With Sexual Health Education has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1944] "Ten items are used to represent each of the five stages, resulting in a 50-item measure with five stage subscales (Moratorium, Awareness, Preparation, Rebuilding, and Growth)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1945] "The Activity-Related Stress Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1946] "The Relationship With the Friend Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1947] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1948] "The Identification With All Humanity Scale--German Version is comprised of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1949] "The ADHD Intervention Semi-structured Interview is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1950] "The Ad Hoc Subjective Feelings Questionnaire has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1951] "The Gender Mistreatment Scale is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1952] "The Mediator Behavior Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1953] "The AmED Risk-Taking Behavior Measure is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1954] "The Daily Spouse Autonomy Support, Persuasion, and Pressure Measures is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1955] "The Stigma Consciousness Scale--Modified Version is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1956] "The Perceived Social Pressure to Use Facebook Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1957] "The Risk-Taking Norms Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1958] "The Explicit Math–Gender Stereotypes Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1959] "The Job Neglect Measure is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1960] "The Anxiety Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1961] "The Neurosurgical Care Unit Workload Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1962] "The Modern Sexism Scale—Racism Adaptation has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1963] "The Preloss Marital Quality Measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1964] "The International Physical Activity Questionnaire Short Form—Modified; Korean Version has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1965] "The Retrospective Self Reports of the Witnessing Experience and Identification Task Measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1966] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1967] "The Brief Betrayal Trauma Survey—Adapted has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1968] "The Usefulness of Assessment Methods for Evaluating Fit Scales has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1969] "The Self-regulatory Strategies Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1970] "The Perceived Decision-making Ability Compared with Age Peers Measure is comprised of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1971] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1972] "The IIRS is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1973] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1974] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1975] "The Colorblindness Scale is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1976] "This 7-item measure consists of three items assessing Transnational motivations and four items measuring Transnational political behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1977] "The Team Creative Efficacy Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1978] "The Team Proactivity Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1979] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1980] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1981] "This 8-item scale uses four items to assess Perceived Stress and another four items to measure Perceived Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1982] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1983] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1984] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1985] "The IFC-SDM Questionnaire is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1986] "The Informal Social Control of Intimate Partner Violence Beliefs Scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1987] "The Health Personnel Attitudes about Schizophrenia Questionnaire is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1988] "The Delivery Techniques Coding Scheme is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1989] "This is a 15-item measure. The Integrative Motivation Scale includes seven items and the Instrumental Motivation Scale includes eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1990] "The Cuestionario de Metas de Amistad en Educación Física has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1991] "The Drunkorexia Scale is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1992] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1993] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1994] "The Endorsement of Negative Black Stereotypes Measure is comprised of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1995] "The Teacher Interview is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1996] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1997] "The CPITS is comprised of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1998] "The Positive Intergroup Emotions Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1999] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2000] "The Preferential Treatment Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2001] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2002] "The Willingness to Serve as an Organ Donor Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2003] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2004] "The System Justification Measure is comprised of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2005] "The Attitude Toward Cancer Scale is comprised of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2006] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2007] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2008] "The Pamphlet Acceptability Test is comprised of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2009] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2010] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2011] "The immigrant student version of this instrument consists of six items and the German student version consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2012] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2013] "There are two parallel versions of this instrument, and both consist of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2014] "The Social Representations of World War II Scale is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2015] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2016] "This instrument comprises 10 items. There is also a nine-item form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2017] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2018] "The BDS contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2019] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2020] "The German Version of the NAS contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2021] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2022] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2023] "The Parent Consumer Satisfaction Questionnaire has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2024] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2025] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2026] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2027] "The Scale of Islamic Religious Practice has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2028] "The Family Would Offer Help Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2029] "The Milk Xenophobia Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2030] "The Customer-Organization Identification Scale--Vietnamese Version has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2031] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2032] "The Perceived Vulnerability to Ebola Risk Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2033] "The Sport Satisfaction Scale contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2034] "The Perceived Physical Health Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2035] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2036] "The Attitude toward Government Surveillance Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2037] "The Healthfulness Image Dimension Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2038] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2039] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2040] "The Positive Discipline Parenting Scale--Spanish Version has seven item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2041] "This measure consists of nine items of which two measure Job satisfaction, three items measure Satisfaction with social relationships, and four items measured Satisfaction with self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2042] "The Coping with Breast Cancer Semi-Structured Interview has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2043] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2044] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2045] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2046] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2047] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2048] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2049] "The Italian version of the ISI has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2050] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2051] "The McMaster-Ottawa Scale--Adapted has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2052] "The Nonsuicidal Self-injury Assessment Skill Acquisition Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2053] "The Champion Breast Cancer Fear Scale--Adapted Version has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2054] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2055] "The Intention to Perform Physical Activity and Dietary Behaviors Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2056] "The School Belonging Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2057] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2058] "The Morality Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2059] "The SREBQ has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2060] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2061] "The SCMN and SCETH consist of five items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2062] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2063] "The Costs of Knowledge Hoarding Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2064] "The Health Messages and Intention to Adhere Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2065] "The Çapulcu Efficacy Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2066] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2067] "The Icelandic and English Fluency has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2068] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2069] "The Nutrition Label Use Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2070] "Three items were used to assess the following three dimensions (one item for each dimension): Absorption, Energy, and Dedication."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2071] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2072] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2073] "The Customer Service Officer Ethical Conduct Survey has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2074] "The EARPI has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2075] "The Self-reported Sleep Disruption Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2076] "The Marital Satisfaction Questionnaire has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2077] "This is an 18-item measure. In all, the IEMQ is comprised of six questions about task relevance, six questions about self-efficacy, and six questions about experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2078] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2079] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2080] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2081] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2082] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2083] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2084] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2085] "This measure consists of 17 items. Nine items comprise the Leadership Positions Questionnaire, while eight items are in the STEM Occupations Questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2086] "The Game Playing Time Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2087] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2088] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2089] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2090] "The Authentic Living Scale--Turkish Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2091] "The GRMT-KQ has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2092] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2093] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2094] "The Smoking Categories Measure consists of an initial four items, with one item added at later assessments."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2095] "The Perceived Harms of Secondhand E-Cigarette Vapors Scale has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2096] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2097] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2098] "The Parent’s Perception of Public Stereotypes Scales have a total of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2099] "The Daily Parent–Parent Conflict Scale has four items in the adolescent version and eight items in the parental version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2100] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2101] "The Turnover Intention Scale--Korean Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2102] "The ASA consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2103] "The Fall Semester Survey has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2104] "The Adult Attitudes Towards Transgender Youth Measure has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2105] "This instrument consists of four items, each rated for three different countries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2106] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2107] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2108] "The Eating Disorder Behaviors Rating Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2109] "The Measure of Sleep Problems has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2110] "The Impression Management Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2111] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2112] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2113] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2114] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2115] "The Distress Reactions Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2116] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2117] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2118] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2119] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2120] "The Interpersonal Closeness Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2121] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2122] "The Occupational Stress Scale has nine items, except when administered post-follow-up, when an additional item was added."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2123] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2124] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2125] "The Perceived Neighborhood Crime/Safety Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2126] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2127] "The CDI consists of a total of 41 items. Twenty-five items are considered to be the core items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2128] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2129] "The Perceived Security Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2130] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2131] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2132] "The CMAE has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2133] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2134] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2135] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2136] "The Public’s Attitudes and Beliefs About Dementia and Alzheimer’s Disease Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2137] "The Subjective Norms Scale has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2138] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2139] "The Knowledge-Sharing-Supportive Climate Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2140] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2141] "The measure includes 10 items, with two items representing each of five HR practices: Recruitment and selection, Training and development, Compensation and benefits, Employment relations, and Employee welfare."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2142] "The Positive Peer Bonding Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2143] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2144] "The Children's Unusual Experiences Questionnaire has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2145] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2146] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2147] "The Wrongfulness Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2148] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2149] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2150] "This measure consists of three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2151] "The General Youth Attitude to Police Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2152] "The State Hope Scale--Short German Version has six item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2153] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2154] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2155] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2156] "The Questionnaire for Predictive Cancer Genetic Testing Telecommunications Study has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2157] "Each of 12 pictures is rated using seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2158] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2159] "The CES-R has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2160] "The Online Information Seeking Scale contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2161] "Form I of the CVONA consists of eight items and Form II consists of 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2162] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2163] "The Neighborhood-Related Stressors Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2164] "There are two versions of this instrument, each comprising nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2165] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2166] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2167] "The Self-Other Discrepancies Measures have three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2168] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2169] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2170] "The Trust in Police Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2171] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2172] "The IPS has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2173] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2174] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2175] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2176] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2177] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2178] "The FAST consists of 12 pictorial representations, each followed by three questions. Scores form six subscales: Emotional Victimization, Verbal Victimization, Physical Victimization, Exposure to Emotional IPV, Exposure to Verbal IPV, and Exposure to Physical IPV."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2179] "The Legitimacy Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2180] "The Depth of Relaxation Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2181] "This measure consists of 17 items and the following subscales: Calculative Trust (five items), Relational Trust (six items), and Faith Trust (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2182] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2183] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2184] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2185] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2186] "This measure contains two scenarios, each followed by the same four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2187] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2188] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2189] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2190] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2191] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2192] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2193] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2194] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2195] "The HPS comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2196] "This is a 16-item measure. The modified Positive Parenting subscale consists of six items, while the modified Poor Monitoring scale consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2197] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2198] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2199] "This instrument consists of two scenarios and eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2200] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2201] "The Assessment of Writing Performance has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2202] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2203] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2204] "This measure contains 6 single-item subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2205] "The Transgender Discrimination Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2206] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2207] "The Perceptions of the Solutions to Dehumanization and Prejudice Measure has two items followed by 10 factors each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2208] "This is a 24-item scale. Need satisfaction and Need thwarting were measured with 12 items each. Autonomy, Competence, and Relatedness in both scales were all measured by four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2209] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2210] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2211] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2212] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2213] "The Insight Impact Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2214] "The MDDS has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2215] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2216] "The Risky Electronic Communication Behaviors Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2217] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2218] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2219] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2220] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2221] "The Willingness to Self-Censor Scale--Chinese Version has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2222] "The Parental Cell Supervision Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2223] "The Perceived Discrimination Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2224] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2225] "This instrument comprises two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2226] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2227] "This 18-item measure yields two nine-item scales: Victimization of Self (VS) and Victimization of Others (VO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2228] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2229] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2230] "This measure comprises three vignettes, each followed by three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2231] "The School Connectedness Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2232] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2233] "The Victim Endorsement Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2234] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2235] "This measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2236] "The Situational Motivation Questionnaire has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2237] "The Perceived Information Sufficiency Measure--Modified has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2238] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2239] "The Politicized Group Identification Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2240] "The WADS has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2241] "The WQ--Adapted has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2242] "The Care Conflict Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2243] "The Play and Leisure Environment Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2244] "The Risky Drinking Behavior Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2245] "For each of 4 stories, participants are asked to answer four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2246] "The Organization Fairness Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2247] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2248] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2249] "The Happiness Index has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2250] "This is a 10-item scale. Four emotions are measured: Lonely (2 items), Anxious/Vulnerable (5 items), Sad (2 items), and Relieved (single item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2251] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2252] "The Smoking Harm Index has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2253] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2254] "A total of 18 items are used to assess clinical cultural competency, including eight items measuring Skill, three items measuring Knowledge, six items measuring Encounter and two items measuring Attitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2255] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2256] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2257] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2258] "The ITRQ has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2259] "The Information Interest and Preferences for Prostate Cancer Survivors Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2260] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2261] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2262] "The Causal Responsibility Attributions Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2263] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2264] "The Attitudes Towards Sexuality Scale has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2265] "This 6-item measure consists of two scales (Self-threat and Resentment) comprised of three items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2266] "The Smoking Exposure Measure has three to four items, depending on smoking status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2267] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2268] "The Treatment Gain: Short Scale--Dutch Version has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2269] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2270] "The STSS-G has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2271] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2272] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2273] "The Ties with Customers Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2274] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2275] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2276] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2277] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2278] "The Effort Expectancy Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2279] "The Privacy Concerns Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2280] "The Video Game Experience Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2281] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2282] "The Motivations of Self Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2283] "After item analysis, 12 items were retained. Two items on erectile dysfunction were combined as one variable; thus, analyses were computed for 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2284] "The Positive Everyday Interaction Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2285] "This instrument consists of 60 items (four items following each of 15 film clips)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2286] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2287] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2288] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2289] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2290] "This measure consists of 13 symptom questions, followed by one question about whether symptoms clustered and one question regarding level of impairment resulting from the symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2291] "The Organizational Support subscale from the Adapted BRUS has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2292] "The QIKAT-R has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2293] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2294] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2295] "The Organizational Culture Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2296] "The Social Pressure to Comply Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2297] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2298] "This instrument comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2299] "The Self-Efficacy for Healthy Eating Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2300] "The Video Game Experience Questionnaire--Revised has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2301] "This measure contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2302] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2303] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2304] "This measure consists of two scenarios, with two items following each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2305] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2306] "This measure comprises two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2307] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2308] "The Behavioral Intentions Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2309] "The MSQ-R-CV has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2310] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2311] "This measure consists of two items, each applied to three historical conflict-related events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2312] "The Feeling Safe and Safety Climate Scale has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2313] "The Disaster Perception and Preparedness Questionnaire has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2314] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2315] "The Marital Interaction Quality Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2316] "The Support for Family Responsibilities Scale--Modified has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2317] "This 14-item measure consists of the 3-item Mortality Salience index, five items assessing PSA opinions, and the 6-item Manipulative Intent scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2318] "This instrument comprises two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2319] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2320] "The Spanish version of the Responsibility and Control Aspirations Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2321] "The full P-CAT contains 89 items from an item bank. Ten-item and 20-item P-CAT's were also analyzed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2322] "These measures comprise a total of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2323] "The Injunctive Norm Perception Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2324] "The Perceived Workplace Support Scale--Hebrew Version has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2325] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2326] "The Technological Self-Efficacy Scales each consist of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2327] "The Importance of Collective Success Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2328] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2329] "The Social Identification as a Psychology Student Measure has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2330] "The Clutter Image Rating comprises three items (each item depicting one of three rooms in a house)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2331] "The Maternal Attitudes About Caring for Their Baby Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2332] "The Attitudes toward Eating Chocolate Measure has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2333] "The ISPHQ has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2334] "The Family Rejection Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2335] "The Orchestral Musician Interview Schedule has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2336] "This instrument comprises six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2337] "The Government’s Explanations of its Action Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2338] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2339] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2340] "The Economic Strains Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2341] "The Perceived Expertise Credibility Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2342] "The Reward Assessment Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2343] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2344] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2345] "The Perceived Workplace Support Scale--Family Adaptation; Hebrew Translation has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2346] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2347] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2348] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2349] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2350] "The Copycat Motivation Measure has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2351] "The Exposure to House Demolition Questionnaire has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2352] "This instrument consists of 21 item blocks (one practice block and 20 assessment blocks), each consisting of four items (images) presented on a 2x2 array."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2353] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2354] "This instrument comprises four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2355] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2356] "This 21-item measure consists of a 6-item Bar Crowding Scale, a 9-item Safety Signage Index, three items assessing Serving Intoxicated Patrons, and three items assessing Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2357] "This measure consists of two sections comprised of two ear figures and six items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2358] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2359] "The Attitude Toward Playing Active/Non-Active Games Measure contains two sets of six items, one for attitude toward playing active games and one for attitude toward playing non-active games."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2360] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2361] "The Alcohol and Breast Cancer Questionnaire has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2362] "The Big Five Questionnaire for Children--Greek Version contains 65 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2363] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2364] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2365] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2366] "This instrument comprises eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2367] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2368] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2369] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2370] "Normative beliefs are captured with four items assessing Injunctive norms (what others think [2 items]) and Descriptive norms (how others behave [2 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2371] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2372] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2373] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2374] "The Behavioral Intentions toward Engaging in Protective Actions Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2375] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2376] "The Perceived Knowledge of Giftedness Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2377] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2378] "The Parental Involvement in Academic Planning Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2379] "The Portuguese Version of the LANSS has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2380] "The Intensity of Microblog Use Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2381] "The Task Restructuring Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2382] "The modified PHCS has eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2383] "The PHCS contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2384] "This is a 6-item scale. Three items each assess Westernized and traditional (ethnic Fijian) cultural orientations, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2385] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2386] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2387] "The Entrepreneurial Intent Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2388] "The Greek Big Five Questionnaire for Children--Short Form has 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2389] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2390] "The School Climate Scale has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2391] "This instrument consists of 27 items. A nine-item unidimensional form was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2392] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2393] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2394] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2395] "The Cultural World View Defense Measure has eight items. An additional three items were included for the Polish sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2396] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2397] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2398] "The Skin Tone Rating Scale has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2399] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2400] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2401] "This measure is comprises of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2402] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2403] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2404] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2405] "This measure comprises 18 items. One item assesses contact risk, and 17 items measure privacy risk (16 items concern personally identifiable information included in SNS profiles and 1 item assesses SNS privacy setting)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2406] "The Use of Spirituality and Religion in Therapy with Transgender Clients Indicator has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2407] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2408] "This measure is comprised of nine dimensions (one item for each dimension) of addiction: progression and preoccupation, tolerance, withdrawal and loss of control, escape, chasing, lies and deception, illegal acts, family/schooling disruption, and financial bail-out."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2409] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2410] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2411] "The Burnout Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2412] "The SRI has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2413] "The SRSSI has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2414] "The VGSI has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2415] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2416] "This measure consists of two debate statements followed by a total of nine items. Two additional fill-in-the blank items are included."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2417] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2418] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2419] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2420] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2421] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2422] "The Perceived Usefulness Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2423] "The Personal Safety Experience Scale has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2424] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2425] "The Perceived Pressure, Ineffectiveness, and Fear Scales contain a total of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2426] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2427] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2428] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2429] "The LSD-4 has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2430] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2431] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2432] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2433] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2434] "The PAQ has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2435] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2436] "This instrument comprises nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2437] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2438] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2439] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2440] "The Financial Strain Index has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2441] "The Attitude toward Online Individual Work Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2442] "This measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2443] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2444] "This measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2445] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2446] "The Psychosocial Acuity Scale has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2447] "Teacher ratings for each of five items are averaged across four stories depicting physical aggression. This results in five subscales: Knowledge, Intentionality, Negative affect, Appraisal of seriousness, and Disapproval."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2448] "The Questionnaire Assessing Recovery Related Traits has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2449] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2450] "The Emotional Masking Scale--Adapted has seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2451] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2452] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2453] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2454] "The Brief Grief Questionnaire has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2455] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2456] "The Attitude Toward Drinking Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2457] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2458] "The Gang Resistance Education and Training Study Change in Violence Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2459] "The Gang Resistance Education and Training Study Self-Esteem Measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2460] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2461] "The Smoke-free Campus Policies Questionnaire has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2462] "The Acute Otitis Media Telephone Questionnaire contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2463] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2464] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2465] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2466] "This instrument comprises five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2467] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2468] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2469] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2470] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2471] "The Perceived Ease of Use Measure has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2472] "This measure consists of 28 total items (7 each for prepositions, conjunctions, adverbs, and negations). Ten items are receptive and require children to point to a picture matching the verbal stimulus, while the other 18 items are of several expressive formats, including verbally producing the target structure, finishing sentences, and repeating stimuli."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2473] "This 59-item measure is comprised of 13 subscales and one single-item indicator."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2474] "The MADS Questionnaire has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2475] "The measure is comprised of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2476] "This measure contains a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2477] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2478] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2479] "This measure consists of three items, each asked in reference to three different targets (job/department/organization)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2480] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2481] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2482] "This measure comprises 36 items clustered around nine competency categories (four items in each): professional knowledge, classroom climate, collaboration, assessment, classroom management, goal setting, instructional techniques, individualized instruction and evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2483] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2484] "This is a single-item rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2485] "The Parkinson Neuropsychometric Dementia Assessment consists of five tasks and three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2486] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2487] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2488] "This is a five-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2489] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2490] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2491] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2492] "The Intention to get Vaccinated Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2493] "The Openness Scale has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2494] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2495] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2496] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2497] "The Preferences for Treatment Options Measure has five items for each of five treatment options."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2498] "The Paternal and Maternal Knowledge Scales each consist of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2499] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2500] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2501] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2502] "The Facebook-Enabled Communication Practices Scale has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2503] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2504] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2505] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2506] "This measure has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2507] "This 30-item measure consists of 10 items assessing Ratings of RTI Knowledge and 12 items measuring Application of RTI Knowledge (data interpretation ability). The other eight items pertain to respondent demographics and school-related information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2508] "There are two items assessing heuristic processing and two items assessing systematic processing (four items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2509] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2510] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2511] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2512] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2513] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2514] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2515] "The Polychronicity Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2516] "The Perceived Time Pressure Scale has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2517] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2518] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2519] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2520] "This instrument comprises seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2521] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2522] "The Negative Attitudes Towards Undesirable but Predictable and Unambiguous Workplace Situations Measure features five scenarios that are rated with six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2523] "The Attitude toward the Ad Measure--Chinese Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2524] "The Attitude toward the Advertised Brand--Chinese Version has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2525] "The Purchase Intentions Scale--Chinese Version has three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2526] "The Grandparent-Grandchild Relationship Scale--Adapted has five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2527] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2528] "The revised J-SOI has nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2529] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2530] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2531] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2532] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2533] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2534] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2535] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2536] "The Information Seeking Experience Scale--Adapted has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2537] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2538] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2539] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2540] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2541] "The Swedish COS-BC part 1 (COS-BC 1) consists of the 6 scales and 10 single items. The Swedish COS-BC part 2 (COS-BC-2) includes 6 scales and one single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2542] "This 12-item measure consists of two six-item scales: Controlled motivation and Autonomous motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2543] "The Restrictive Eating Measure has four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2544] "The Cigarette Smoking Measure has two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2545] "Each of the three questionnaires consists of 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2546] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2547] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2548] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2549] "This measure presents six vignettes. For each vignette, respondents answer six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2550] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2551] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2552] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2553] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2554] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2555] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2556] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2557] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2558] "The J-CTS2SF has 20 items. The measure has five sub-scales, each of which consists of two items that corresponds to a different type/level of act: negotiation(cognitive/emotional),psychological aggression (minor/severe), physical assault (minor/ severe), injury (minor/severe) and sexual coercion (minor/severe)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2559] "This measure comprises two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2560] "The Single-Question Alcohol Screening Test has 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2561] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2562] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2563] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2564] "This measure consists of a screening question followed by a series of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2565] "This is a six-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2566] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2567] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2568] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2569] "This measure consists of a single-item which is applied to each of four vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2570] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2571] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2572] "The 3 single-item measures are not aggregated as a common factor, but used as separate outcome variables."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2573] "This 8-item scale uses one item to measure each of the following eight mechanisms: Moral Justification, Euphemistic Labelling, Advantageous Comparison, Displacement of Responsibility, Diffusion of Responsibility, Distortion of Consequences, Dehumanization, and Attribution of Blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2574] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2575] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2576] "This measure comprises eight items, each presented during both learning and testing phases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2577] "This instrument consists of five vignettes and 10 items (two items per vignette)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2578] "This 32-item measure consists of four subscales of eight items each: Precontemplation, Contemplation, Action, and Maintenance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2579] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2580] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2581] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2582] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2583] "Participants are asked to select from 28 items using two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2584] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2585] "The PAINAD consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2586] "The Fat Bike Usage Survey has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2587] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2588] "This 22-item survey includes eight demographic questions, a single-item self-assessment of EVD-related knowledge, a 7-item Willingness-to-treat scale, and six open-ended questions assessing clinical management education received, perceptions of the duty to treat EVD patients, and issues or concerns participants had regarding treating EVD patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2589] "The Caregiver Strategies Inventory contains 22 prompts. Each prompt is followed by five items representing (1) two cognitive-behavioral, (2) two sensory-perceptual, and (3) one avoidance strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2590] "This 9-item measure consists of three subscales comprised of three items each: Availability, Goal-Corrected Partnership, and Angry Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2591] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2592] "The Perceived Academic Underachievement Scale contains 6 items. There is also a separate, single-item indicator of perceived underachievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2593] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2594] "This measure consists of six items concerning the following biopsychosocial domains: Difficult situations, Negative thoughts, Physical sensations, Unhelpful behaviors, Lifestyle, and Emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2595] "The FMS consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2596] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2597] "Fourteen items are completed in both of two surveys (pre/post) presented to the students. On the post-test survey, an additional question is asked."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2598] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2599] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2600] "This measure comprises two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2601] "This measure comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2602] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2603] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2604] "This 7-item measure consists of four items assessing self-efficacy for teaching robotics and three robotics and coding knowledge items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2605] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2606] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2607] "This 16-item measure consists of four items measuring each of the following four beliefs: superstitious, contagion, similarity, and control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2608] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2609] "This measure comprises nine items for the physical ability subscale and seven items for the cognitive support subscale (16 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2610] "The Dutch PSRS consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2611] "The MOD consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2612] "This measure consists of four vignettes, each followed by four questions (16 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2613] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2614] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2615] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2616] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2617] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2618] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2619] "Six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2620] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2621] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2622] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2623] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2624] "Two interrogation lists (Murder and Theft) each consist of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2625] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2626] "There were five items in each speech rhythm activity, giving a total of 15 items that were trained each week on stress, intonation, and timing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2627] "For the 17 distinct scales of the DRRI-2, an average of 34% of items were revised within each scale, and over 50% of the items were revised for four scales (Combat Experiences, Aftermath of Battle, Perceived Threat, Unit Social Support). Three items on average were added to each scale, and in several cases, items deemed to be too specific to a particular cohort (most often, Gulf War veterans), or otherwise deficient, were eliminated."                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2628] "This measure consists of 30 items dispersed as follows: eight items related to symptoms of physical abuse, four items concerning sexual abuse, six items measuring emotional abuse, seven items covering neglect, and five items concerning common knowledge of child abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2629] "The task is comprised of three conditions, with one item for each condition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2630] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2631] "This 32-item measure consists 8 positive and 8 negative events for which two questions are asked for each event."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2632] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2633] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2634] "This measure comprises three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2635] "This measure consist of four items, each rated for partner-provided support and mother-provided support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2636] "This is a six-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2637] "Part A consists of 5 items, Part B contains 3 items, Part C includes a single items, Part D comprises 9 items, and Part E contains 6 items (including one multi-part question)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2638] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2639] "The 30-item MVPIC consists of 25 items pertaining to the respondent’s relationship with his child/children and five items pertaining to parenting-related changes since deployment. Ten items pertain to Positive experiences and 20 to negative (Challenging) experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2640] "The SiDS features nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2641] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2642] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2643] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2644] "This measure consists of 53 items. It includes all 18 of the DSM-IV criteria for ADHD. In addition, 8 criteria for oppositional defiant disorder (ODD) and 12 criteria for conduct disorder (CD) are included, along with 7 criteria from the Pediatric Behavior Scale (Lindgren & Koeppl, 1987) that screen for anxiety and depression. The performance section of the VADPRS is an 8-item scale with four items relating to academic performance: (a) overall academic performance, (b) reading, (c) mathematics, and (d) written expression. Another four items evaluate relationships: (e) peers, (f) siblings, (g) parents, and (h) participation in organized activities."                                                                                                                                                                                           
## [2645] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2646] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2647] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2648] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2649] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2650] "This instrument consists of nine items (six primary items, one of which consists of four sub-items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2651] "The Children Rejection Sensitivity Questionnaire--Urdu Version is comprised of 12 vignettes with three items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2652] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2653] "The SRR consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2654] "This measure consists of 15 items and three subscales. Nine items are used to measure Negative outcomes, three items assess Positive outcomes, while the final three items measure Friendship length."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2655] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2656] "This 11-item measure consists of six items referring to the Perpetration of cyberbullying, and five items covering forms of online Victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2657] "The Persian SRR is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2658] "This instrument consists of four brief vignettes, each accompanied by four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2659] "This instrument has six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2660] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2661] "This 9-item composite measure consists of three vignettes, each followed by four questions (the fourth question in each vignette is examined separately)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2662] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2663] "The Nine-Item Avoidant/Restrictive Food Intake Disorder Screen has 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2664] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2665] "The four items are presented twice, once for the home country and again for the hosting country."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2666] "The Brain Cancer Module 20 has 20 items with four scales and seven single items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2667] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2668] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2669] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2670] "This measure consists of five items rated separately for both boys and girls."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2671] "Though there are a total of five items, this measure consists of two main questions that require responses from all participants. Some items are only asked based on the responses given to previous items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2672] "This task consists of two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2673] "A global summary score is calculated for the first seven items comprising this 10-item measure. The last three items are not considered triggers of suicidal ideation but indicators of suicidal ideation/plans/attempt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2674] "For each of four items, adolescents are asked to report their burden perceptions for mothers and fathers separately."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2675] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2676] "The Judgment and Context Task contains two blocks: No Context and Context. In each block, participants viewed 24 faces. For each face, six questions were asked."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2677] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2678] "This measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2679] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2680] "The Essentials of Magnetism--Revised consists of 57 items and two item indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2681] "This instrument consists of six items situated within a wider task procedure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2682] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2683] "This instrument consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2684] "This instrument consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2685] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2686] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2687] "The CFQ total score consists of 40 items. There is also a seven-item Interference scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2688] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2689] "The Apprehension in Suspect Interrogations Scenarios is comprised of 12 scenarios, several items for judgments and decisions, six self-generated items and six items selected from the Interrogation Questions Checklist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2690] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2691] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2692] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2693] "Participants are asked to respond to three items in reference to each of 15 packages."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2694] "The MARS consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2695] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2696] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2697] "This scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2698] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2699] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2700] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2701] "The Congestion Quantifier Seven-Item Test has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2702] "The Mobilization-Observation-Behavior-Intensity-Dementia Pain Scale contains 5 items assessing both pain behavior and pain intensity, and one item assessing the patient's overall pain intensity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2703] "The QEQ consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2704] "The SSPI consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2705] "Participants are asked to complete six questions for each of seven vignettes. The following subscales can be calculated: LOD threat; LOD sick; LOD disgust; LOD spread; and LOD disgust sensitivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2706] "Four items were administered in the first study, while six items were administered in the second study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2707] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2708] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2709] "The Health Status Classification System Questionnaire--Preschool Version is comprised of 12 dimensions with 49 total levels (i.e., each health/functional dimension is accompanied by 1 to 4 [11 items] or 1 to 5 [one item] options ranging in degree of ability/impairment)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2710] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2711] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2712] "The SCAS consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2713] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2714] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2715] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2716] "The Derailment Measure contains 10 items. There is also a six-item Derailment Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2717] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2718] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2719] "The PSF score is based on 18 items. Five items relating to suicidal ideation and acts, which are not a part of the PSF score, are also included."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2720] "Sixty-four items are included across four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2721] "This instrument consists of 60 core items, plus a five-item validity subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2722] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2723] "The EEF consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2724] "The MGSIS-7 has seven items; the MGSIS-5 contains five."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2725] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2726] "The GeNTS consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2727] "This measure consists of 7 items, though a short form comprised of four items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2728] "The MUQ consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2729] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2730] "The final version of the ChMLM consists of seventeen items divided into four sections: vocabulary (five questions), non- prescription drug (five questions), prescription drug (four questions) and drug advertisement (three items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2731] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2732] "The Cigarette Demand Breakpoint Measure consists of two versions of a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2733] "The DSD consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2734] "The 24-item BIS is a four?factor scale, with six items in each factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2735] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2736] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2737] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2738] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2739] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2740] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2741] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2742] "Eleven single-item measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2743] "The measure contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2744] "The AoB Scale consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2745] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2746] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2747] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2748] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2749] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2750] "The Moral Distress Thermometer includes one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2751] "The GEMS consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2752] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2753] "This measure consists of nine items assessing three dimensions (3 items per scale): Attitudes, Social norms, and Perceived behavioral control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2754] "Four items are used to measure two deterrence factors (2 items per scale): Appraisal of penalty and Perceived risk of detection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2755] "Twenty-three items are used to measure the following dimensions: Rule-knowledge, Sensation seeking (NISS Need for stimulation and NISS Avoidance of rest), and Habitual behavior (Habitual cycling and Habitual drinking)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2756] "The TMS consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2757] "This instrument consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2758] "The INMI Questionnaire consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2759] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2760] "Over two interviews, participants are asked to respond to seven questions, which consist of multiple prompts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2761] "For each of five moral transgression tasks, participants are asked to complete four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2762] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2763] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2764] "The USK consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2765] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2766] "14 vignettes are each followed by a series of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2767] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2768] "This instrument consist of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2769] "This instrument consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2770] "The KOGS consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2771] "The NCQ-H comprises 2 parts: \"Personal continuity with care provider” (eight items for each provider: the oncology specialist and the primary care physician), and “Team/cross-boundary continuity” (four items for each setting: within the oncology team, and between the oncology specialist and the primary care physician)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2772] "The index contains 7 items, with the possible addition of one item related to satisfaction with your own happiness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2773] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2774] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2775] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2776] "The SCQ consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2777] "The NTS Scale consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2778] "The initial version of this instrument consists of eight items; a second version consists of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2779] "This is a three-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2780] "This measure consists of seven items, with three items assessing Relational victimization and four items measuring Overt victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2781] "This 7-item scale consists of three items measuring Relational witnessing and four items assessing Overt (physical and verbal aggression) witnessing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2782] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2783] "The EIS consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2784] "The EOQ consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2785] "Perceived approval is measured by a total of six items, with three items assessing perceived maternal approval and a set of 3 parallel items assessing the perceived approval of female friends."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2786] "The questionnaire contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2787] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2788] "This instrument consists of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2789] "This instrument consists of 40 items, and a short six-item version has also been developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2790] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2791] "The HAQ-CP is comprised of three questionnaires (Child and Parent = 15 items) and Therapists (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2792] "This instrument consists of four vignettes and four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2793] "Social comparisons are measured using a total of six items, with the first five of which referred to as social comparison (rank) and the last single item called social comparison (group)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2794] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2795] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2796] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2797] "This instrument consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2798] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2799] "The ASCOS consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2800] "This measure can consists of up to four items depending on the responses of the participant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2801] "Opinions concerning various scientist disputes are measured with three items relative to three scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2802] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2803] "The instrument consists of two main sections. The first section focuses on the demographic characteristics of participants and includes two questions on gender and educational fields of study. The second section is composed of 17 items and aims to gather participants’ opinions on using Facebook in support of their learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2804] "The scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2805] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2806] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2807] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2808] "The Sheehan-STS consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2809] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2810] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2811] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2812] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2813] "The WASQ is comprised of 12 scenarios with five items for each scenario."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2814] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2815] "The MMI consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2816] "The Chaos Scale consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2817] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2818] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2819] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2820] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2821] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2822] "This instrument contains seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2823] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2824] "Patients are asked to identify pain site areas on a body map and then to respond to seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2825] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2826] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2827] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2828] "This measure contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2829] "The Q-MAT contains four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2830] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2831] "Seven items are applied to each of two vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2832] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2833] "This 4-item measure consists of two subscales comprised of two items each: Frequency of use and Attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2834] "The HKA Scale consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2835] "This 16-item scale consists of eight items for persons not working (Scale A), and eight items for persons working part-time or full-time (Scale B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2836] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2837] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2838] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2839] "The RTI consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2840] "This scale contains five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2841] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2842] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2843] "The instrument comprises six items assessing feelings and behaviors related to irritability and one follow-up item assessing impairment due to irritability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2844] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2845] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2846] "This measure consists of nine questions including 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2847] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2848] "The COMM-9 consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2849] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2850] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2851] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2852] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2853] "The measure contains 14 items. However two items were not included in the final score tabulation with the French sample. The authors note future research will attempt to revise those 2 items for the French version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2854] "There are four-item and five-item versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2855] "The NExS consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2856] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2857] "Eight items were removed from the original Spanish-version EMES-M, leaving 56 total items for the Brazilian adaptation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2858] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2859] "The g-CEQ consists of 18 items (each form consists of nine items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2860] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2861] "This measure has ten items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2862] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2863] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2864] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2865] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2866] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2867] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2868] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2869] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2870] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2871] "The extended version consists of 23 items and the brief version consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2872] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2873] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2874] "This instrument consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2875] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2876] "This instrument consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2877] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2878] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2879] "This instrument consists of seven items. The BHSES can be completed within five minutes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2880] "This measure contains eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2881] "This measure consists of five questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2882] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2883] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2884] "This instrument consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2885] "The main portions (the 2nd sections) of the two questionnaires are comprised of 12 items for dentists and 10 items for psychiatrists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2886] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2887] "This measure consists of a total of four vignettes and eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2888] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2889] "This instrument consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2890] "This measure has 10 items, plus one question that allows additional information to be reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2891] "The full measure consists of 50 experimental video clips; however, participants are only exposed to a set of 10. Eight questions (presented after each video clip) are used to assess participant interpretation of the clips."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2892] "The IOS-CC is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2893] "The tasks comprise five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2894] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2895] "This measure consists of four items (scenarios)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2896] "This measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2897] "There are 6 single-item measures in total."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2898] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2899] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2900] "This is an 8-item scale. A short version comprising four items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2901] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2902] "This instrument contains six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2903] "This measure consists of five questions and associated probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2904] "This measure consists of nine items (dimensions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2905] "This measure consists of five items along with an additional item (Item 1) used for recapping the condition of stocking, which serves as a probing question to facilitate the participants' responses on Items 2 to 6."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2906] "This measure consists of nine questions with associated probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2907] "This measure consists of five questions along with multiple probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2908] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2909] "This measure consists of a total of 244 items. However, only a portion of items are presented during the time of testing as based on user progression. Twenty items are presented for the Form Section, 15 items are presented for the Meaning Section, and 10 items are presented for the Use Section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2910] "Both the Bad Sobernheim Stress Questionnaire-Deformity and the Bad Sobernheim Stress Questionnaire-Brace contain eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2911] "Not including the open-ended item, the final Grid instrument contains 19 items (one item on the 20-item Grid was eliminated following a post-test)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2912] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2913] "The measure is a single-item diagrammatic scale in which participants choose one option among 10 circle-pairs presented in a diagram."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2914] "This measure consists of five items (plus two additional visual analog scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2915] "This interview consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2916] "This measure consists of eight items (target words)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2917] "This measure consists of 18 items. As noted by the authors, an additional five items comprise two optional components (Ease of preparation and Health) which were not supported by the factor analysis results."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2918] "This measure consists of two items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2919] "Inattention (nine items); Hyperactivity/Impulsivity (nine items); and TOT (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2920] "This measure consists of three questions and 13 negotiation contexts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2921] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2922] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2923] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2924] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2925] "This is a 24-item questionnaire (nurse and patient versions). For each scenario (4 scenarios), there are six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2926] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2927] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2928] "This measure consists of three items (tasks) comprised of multiple parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2929] "Nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2930] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2931] "This is a five-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2932] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2933] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2934] "This measure consists of 6 main items and 2 additional single-item questions assessing participants' overall positive and negative attitudes toward bisexual people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2935] "There are two batteries, each with six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2936] "The BAIA consists of 15 vignettes with three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2937] "This measure consists of four questions which have to be answered for each disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2938] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2939] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2940] "This instrument is comprised of a single item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2941] "This measure consists of three questions applied to each of 20 video clips."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2942] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2943] "The RAST-F contains 6 items. Three items were modified from the existing RAST."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2944] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2945] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2946] "The scale consists of 28 items, divided into seven four-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2947] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2948] "This instrument consists of nine items (trials)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2949] "The career firefighter self-report survey consisted of 67 questions and the volunteer firefighter version consisted of 60 questions; however, the seven additional items administered to career firefighters were not used in the development study (except for one item which was described by the authors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2950] "This is a single item with 7 levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2951] "This measure consists of 41 core items (38 subscale items and 3 standalone items) as well as a 7-item standalone subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2952] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2953] "Sixteen items accompany the four parental responses to children’s performance (emphasizing success, de-emphasizing success, emphasizing failure, and de-emphasizing failure)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2954] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2955] "The Teamwork SJT consists of 10 scenarios, each with six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2956] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2957] "This interview consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2958] "This measure consists of 33 items, though the aggregate scales are comprised of 28 items (there are five stand-alone items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2959] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2960] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2961] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2962] "This measure consists of a single question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2963] "This measure consists of nine questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2964] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2965] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2966] "There are 10 items in total, one main question followed by nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2967] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2968] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2969] "This is a nine-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2970] "This instrument consists of four items, which also constitute this measure's subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2971] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2972] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2973] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2974] "This is a single-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2975] "This instrument consists of five items (scenarios)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2976] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2977] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2978] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2979] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2980] "This measure consists of 35 items. A five-item, short global scale is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2981] "This measure consists of six news items in total, each of which is presented with four questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2982] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2983] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2984] "This measure consists of four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2985] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2986] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2987] "This instrument contains nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2988] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2989] "This instrument consists of five questions and multiple prompts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2990] "This instrument consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2991] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2992] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2993] "The DRS consists of single-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2994] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2995] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2996] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2997] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2998] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2999] "This measure includes 36 items related to leadership. The remaining nine items measure organizational outcome variables."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3000] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3001] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3002] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3003] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3004] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3005] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3006] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3007] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3008] "This is a single-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3009] "This measure consists of three items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3010] "The PIS is a six- to seven-item questionnaire ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3011] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3012] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3013] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3014] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3015] "This measure consists of 100 items (75 stimulus words and 25 distractor words). Four items are presented on each of 25 picture boards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3016] "The FCQ is comprised of eight items related to the fear of coronavirus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3017] "This measure consists of three items (domains)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3018] "Each of the two tasks is comprised of 18 scenarios. Each scenario is followed by two questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3019] "This measure has six items, which also constitute dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3020] "This is a 13-item measure. The reduced version of MHGS includes a total of six questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3021] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3022] "This instrument consists of one question and 12 distinct response categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3023] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3024] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3025] "This measure consists of six items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3026] "One question is asked in reference to a single scenario."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3027] "This instrument consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3028] "There are five items each for the 3P_Child/Self, 1P_ Child/Self, and 1P_Parent/Other domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3029] "This measure consists of seven questions with additional probing items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3030] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3031] "This instrument is comprised of 91 single-item measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3032] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3033] "This measure includes four items for patients or three for caregivers, Additionally, there is one item for frequency, severity, and distress in the case that positive symptoms were identified, as well as a question pertaining to the approximate date of symptom onset."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3034] "There are five items in both the adolescent- and parent-report versions of the WSASY."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3035] "This measure consists of 31 items. The authors also constructed a 21-item brief form along with four separate short forms: one content-balanced 6-item short form with two items from each subdomain, and three subdomain-specific short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3036] "This measure consists of 11 items. A four-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3037] "Five close-ended items address treatment knowledge and attitudes. Seven items are open-ended questions assessing views on rTMS. One final item comparing rTMS to ECT may also be used."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3038] "This measure consists of 30 items. A short version comprised of nine items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3039] "The FACT-8D consists of 9 attributes. However, for the Support dimension, take the better of the two items, resulting in a final 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3040] "This is an 8-item scale. The first two items are utilized as a stand-alone screener."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3041] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3042] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3043] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3044] "This measure consists of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3045] "This measure consists of nine items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3046] "The FAST consists of 12 pictorial representations, each followed by three questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3047] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3048] "This measure consists of seven items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3049] "This measure is composed of five items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3050] "This scale consists of 3 items. However, the instrument can also be administered as a single-item, ultra-short measure in settings with severe time constraints."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3051] "This measure is comprised of 16 items (four scenes with four items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3052] "This measure consists of five items. There is also one optional item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3053] "The two questionnaire versions for the emergency medical staff and patient/caregiver groups are comprised of 16 and 20 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3054] "This measure is comprised of one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3055] "This measure consists of eight items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3056] "This is a four-item measure."
records_wide$NumberOfTestItems[which(item_numbers %>% map(~ .[1]) == 1192)]
## [1] "This stimulus set consists of 1192 items."
records_wide$NumberOfTestItems[which(item_numbers %>% map(~ length(.)) > 1)]
##    [1] "The Literacy Training Kit consists of five tests: Arithmetic Placement Test (60 problems); Reading Placement Test (55 items); Reading Test IV (40 items; Arithmetic Test IV (40 items) and Graduation Reading Test (40 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [2] "The AWAI has 30 items (Rapport subscale = 11 items, Apprenticeship subscale = 14 items, Identification-Individuation subscale = 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##    [3] "45 items: 15 items for each of 3 subscales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [4] "The AARRSI consists of 29 items: The Socio-Historical Racism subscale has 14 items. General Racism subscale has 8 items, and the Perpetual Foreigner Racism subscale has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [5] "The AAVS-M consists of 42 items comprising 5 subscales: Collectivism (7 items, 3 reverse worded), (b) Conformity to Norms (7 items, 1 reverse worded), Emotional Self-Control (8 items, 3 reverse worded), (d) Family Recognition Through Achievement (14 items, 2 reverse worded), and (e) Humility (6 items, 4 reverse worded)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [6] "The Authenticity in Relationships Scale consists of 24 items: Unacceptability of Deception subscale has 13 items and the Intimate Risk Taking scale has 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [7] "Avoidance and Fusion Questionnaire for Youth: 17 items; Avoidance and Fusion Questionnaire for Youth--Short Form: 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [8] "The BFAS includes 10 10-item scales (100 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [9] "The Brief Psychiatric Rating Scale A has 18 items. Compared with the original 18-item version (Overall & Gorham, 1988), the BPRS-A not only defines each rating item but additionally provides a description of expected symptoms and problems for each of the seven intensity rating options."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [10] "Part I (15 items); Part II (7 items); Part III (30 items) and Part (100 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [11] "The Changes in Outlook Questionnaire contains 26 items in two subscales: Positive Changes scale (11 items) and Negative Changes (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [12] "The English Expression Test consists of 45 items in five parts. Part I (5 items), Part II (10 items), Part III (5 items), Part IV (10 items), and Part V (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [13] "The Children's Perception of the Interparental Conflict Scale contains 48 items (51 with 3 items removed from the final scale) distributed across 9 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [14] "In addition to the standard 17 PTSD items, the CAPS-1 also contains 5 items tapping posttraumatic impacts on social and occupational functioning, and 8 items addressing guilt, homicidality, disillusionment with authority, hopelessness, memory impairment, depression, and feelings of being overwhelmed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [15] "The SRI has 44 items, the PRI contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [16] "The CSWS is consists of 35 Items comprising the following subscales: Others' Approval (5 items), Appearance (5 items), Competition (5 items), Academic Competence (5 items), Family Support (5 items), Virtue (5 items) and God's Love (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [17] "The CASES consists of 41 Items comprising 6 subscales: Exploration Skills (5 items); Insight Skills (6 items); Action Skills (4 items); Session Management (10 items); Client Distress (6 items); and Relationship Conflict (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [18] "The CVCS has 24 items: The Intimate Relations subscale has 11 items and the Sex-Role Expectations subscale has 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [19] "There are 16 items that form two subscales: Emotional Processing (8 items) and Emotional Expression (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [20] "The 21-item inventory consists of two subscales with 13 items addressing goal setting and 8 items addressing feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [21] "The Exemplary Care Scale contains 11 items: The Provide subscale has 4 items and the Respect subscale has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [22] "The FCCQ-Family version has 14 items; the FCCQ-Parent version also has 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [23] "There are 31 items in the first test and 41 items in the second."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [24] "Test 1 (12 items); Test 2 (20 items); Test 3 (15 items); Test 4 (40 items); Test 5 (24 items); Test 6 (17 items); Test 7 (40 items); Test 8 (40 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [25] "Group Target Test-1 has three parts: Part I: Memory for Motion-Patterns (7 items); Part II: Sense of Direction (14 items); and Part III: Spatial Orientation (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [26] "The Vocabulary Test contains 34 items; the Vocabulary Test contains 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [27] "The shorter version of the Illinois Personality Inventory has 243 items; the longer version has 358 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [28] "The Silent Reading Test contains 50 items, and the Completion Test 67. The English Construction and English Comprehension Tests contain 15 and 20 items, respectively. The Mechanical Arithmetic, Reasoning Arithmetic, Algebra, Geography, and History Tests contain 100 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [29] "60 items total. Section 1: Motor Skills and Control (15 items); Section 2: Perception and Memory (15 items); Section 3: Self-care and Self-Help (15 items); Section 4: Social Relationships and Emotional Control (15 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [30] "This inventory contains contains six tests: professional judgment (28 items), theory and practice of teaching (85 items), reading comprehension (27 items), social information (24 items, school and class management (55 items), and professional information (33 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [31] "The four home economics clothing tests contain a total of 126 items; the six food tests contain a total of 130 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [32] "Scale A, Form 2 consists of Test 1, Arithmetical Reasoning (16 items); Test 2, Sentence Completion (20 items); Test 3, Logical Selection (24 items; Test 4, Same-Opposite (40 items); Test 5, Symbol-Digit (40 items). Scale A, Form 1 consists of Test I, Arithmetical Reasoning ((16 items), ); Test 2, Sentence Completion (20 items; Test 3, Logical Selection (24 items) ; Test 4, Same-Opposite (40 items); Test 5, Symbol Digit (120 items)."                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [33] "Test 1 (Do You Want to Change Your Smoking Habits?) contains 12 items; Test 2 (What Do You Think the Effects of Smoking Are?) contains 12 items. Test 3 (Why Do You Smoke?) contains 18 items; and Test 4 (Does the World Around You Make It Easier or Harder to Change Your Smoking Habits?) contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [34] "The GRCS–A consists of 29 items: Restricted Affection Between Men subscale (7 itens); Restricted Emotionality subscale (9 items); Conflict Between Work, School, and Family subscale (7 items); and Need for Success and Achievement subscale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [35] "The IPVAS has 23 items (17 items loaded on the first factor \"physical or psychological abuse\"; 6 items loaded on the second factor, which was labeled \"Control\"; 7 items loaded on the third factor, which was labeled \"Physical Violence\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [36] "The Intragroup Marginalization Inventory (IMI) consists of three scales: IMI-Family (12-items), IMI-Friends (17-items), and IMI-Ethnic Group (13-items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [37] "The Inventory of Depression and Anxiety Symptoms (IDAS) is comprised fo 64 items across 12 scales: General Depression (20 items), Dysphoria (10 items), Well-Being (8 items), Panic (8 items), Lassitude (6 items), Insomnia (6 items), Suicidality (6 items), Social Anxiety (5 items), Ill Temper (5 items), Traumatic Intrusions (4 items), Appetite Loss (3 items), and Appetite Gain (3 items). An expanded version of the IDAS contains 99 items."                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [38] "The IDEA consists of 50 items (Dream significance = 12 items, Dream positivity = 7 items, Dream recall = 8 items, Dream apprehension = 4 items, Dream entertainment = 9 items, Dream continuity = 5 items, and Dream guidance = 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [39] "The final version of the LGB-CSI includes 32 items across five subscales: Application of Knowledge (13 items), Advocacy Skills (7 items), Awareness (5 items), Assessment (4 items), and Relationship (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [40] "The Measures of Hindu Pathways are comprised of 24 items: a 5-item scale of devotional practices; a 4-item scale of frequency of participation in religious festivals; and a 15-item scale of religious rituals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [41] "The Multidimensional Inventory of Hypochondriacal Traits contains 31 items representing four distinct hypochondriacal symptom clusters that correspond to a proposed four-factor model: a Cognitive scale (labeled hypochondriacal alienation) with 7 items, a Behavioral scale (labeled hypochondriacal dependency) with 8 items, a Perceptual scale (labeled hypochondriacal absorption) with 9 items, and an Affective scale (labeled hypochondriacal worry) with 7 items."                                                                                                                                                                                                                                                                                                                                                                                           
##   [42] "The AIM1R contains 199 items; the B-AIM1R contains 120 items. Both have the following subscales: Aggression, Altruism, Appearance, Commitment, Environmental Inquisitiveness, Illness Avoidance, Interpersonal Inquisitiveness, Legacy, Meaning, Mental, Physical, Sex, Social Exchange, Threat Avoidance, and Wealth."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [43] "The AQ comprises 50 questions, made up of 10 questions assessing 5 different areas: social skill, attention switching, attention to detail, communication, and imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [44] "The Bullying Behaviors Scale consists of 43 items, and contains three bullying tactics subscales: Belittlement (13 items), Work Undermined (7 items), and Verbal Abuse (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [45] "Section A of the measure consists of 9 items, while Section B consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [46] "The Chinese American Children Ethnic Identity Measure consists of both the parents' (35 items) and children's (26 items) survey questionnaires."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [47] "The CSIV is a 64-item measure with eight 8-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [48] "The Dynamic Deconstructive Psychotherapy Adherence Scale contains 25 items across three subscales: Associations (5 items), Attributions (2 items), Ideal Other (4 items), Alterity—Real (5 items), and Negative Enactment (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [49] "The measure consists of 54 items and two scales: EOM-During Meditation (EOM-DM; 29 items) and EOM-Everyday Life (EOM-EL; 35 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [50] "The ICS has 25 items: Attempted Control (5 items), Failed Control (10 items), and Perceived Control (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [51] "The measure contains 7 subscales: Internet knowledge (6 items), Internet experience (1 item), Internet self-efficacy (5 items), Perceived ease of use (5 items), Perceived usefulness (6 items), Perceived enjoyment (5 items), and Intention to continue to use the Internet (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [52] "The scale consists of 28 items with two subscales (Hierarchical Thinking and Systemic Thinking) represented by 14 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [53] "The short forms of the Love Attitudes Scale contain 3 (18 items total) or 4 items (24 items total) in each of 6 subscales that measure Eros, Ludus, Storge, Pragma, Mania, and Agape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [54] "The Motivation at Work Scale—English Version is composed of 12 items, with 3 items per factor: external regulation, introjection, identification, and intrinsic motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [55] "The OPP has two sections, one for causation (45 items) and one for treatment (44 items). The items in each section fall into seven subscales based on major professional and lay approaches to individual therapy: Psychodynamic, Humanistic, Behavioral, Cognitive, Organic, Socio-economic and Naïve."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [56] "Section one of the measure consists of 26 items, while the second section consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [57] "The SBSS consists of 18 items and four subscales: Relationship initiation (5 items), Negative reactions (4 items), Maintaining the bond (5 items), and Sexual pleasure and motivation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [58] "The measure consists of 24 items and 3 subscales: autonomy (10 items), self-responsibility (7 items), uniqueness (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [59] "The civilian version of the measure consists of 11 items, while the military version consists of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [60] "The measure consists of 17 items with 2 factors: Ethical-emotional resolution (11 items) and Rational-behavioral resolution (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [61] "The Parent Cognition Scale contains 30 items representing 2 factors, Child-Responsible (9 items) and Parent-Causal (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [62] "The PNI is a 52-item self-report measure assessing 7 dimensions of pathological narcissism spanning problems with narcissistic grandiosity (Entitlement Rage [8 items], Exploitativeness [5 items], Grandiose Fantasy [7 items], Self-sacrificing Self-enhancement [5 items]) and narcissistic vulnerability (Contingent Self-esteem [12 items], Hiding the Self [6 items], Devaluing [7 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [63] "The PCQ consists of 30 items and 6 subscales (Work, Legal, Family, Health, Finance, and Self). The subscales have 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [64] "The PSQ contains 21 items, while the SCQ contains 8 items. The PSQ also has three subscales: Absence of friendly behavior (8 items), Confused/staring behavior (8 items), Hostile behavior (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [65] "The PEDD-Y consists of 29 items, with four factors labeled: Convenience (16 items), Control (5 items), Avoiding Consequences (4 items), and Excitement Seeking (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [66] "The Posttraumatic Cognitions Inventory (PTCI) is comprised of 36 items divided across three subscales: Negative Cognitions about Self (21 items), Negative Cognitions about the World (7 items), and Self-Blame (5 items). Three experimental items were not included in the subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [67] "The PAST consists of a Part A (19 items) and a Part B (7 items). Part A contains the 11-item Lonely Negativity scale and the 8-item Former Partner Attachment scale. Part B contains the 7-item Coparenting Conflict scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [68] "The White Empathic Reactions Toward Racism subscale consists of 6 items; the White Guilt subscale consists of 5 items, and the White Fear of Others consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [69] "The Quality of Relationships Inventory is comprised of 25 items across three subscales: Support (7 items), Conflict (12 items), and Depth (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [70] "The Relationship Expectations Scale (RES) consists of 13 items for the husband and wife versions, each comprised of 6 items reflecting the Compliance Expectations factor and 5 items reflecting the Mindreading Expectations factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [71] "Normative Data for the Religious Commitment Inventory—10 (RCI–10) contains 10 items across two subscales --Interpersonal Religious Commitment (6 items) and Intrapersonal Religious Commitment (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [72] "The Resistance to Change Scale is comprised of 16 items with four factors: Routine Seeking (5 items), Emotional Reaction to Imposed Change (4 items), Short-Term Focus (4 items), and Cognitive Rigidity (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [73] "The Rutgers Alcohol Problem Index (RAPI) is comprised of 23 items. An 18-item version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [74] "The Self Description Questionnaire for Preschoolers (SDQP) contains a total of 38 items distributed across 6 subscales: Physical Ability (6 items), Appearance (6 items), Peer Relations (6 items), Parent Relations (8 items), Verbal (6 items), and Math (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [75] "The Sense Making Scale (SMS) is comprised of 38 items distributed across 6 factors (Redefined Life Purpose [11 items], Spiritual Perspective [8 items], Causal Attributions [7 items], Changed Values and Priorities [6 items], Acceptance [4 items], and Luck [2 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [76] "The SEQ-L contains 20 items divided among three factors: sexist hostility (4 items), sexual hostility (4 items), and unwanted sexual attention (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [77] "The Stages of Change Readiness and Treatment Eagerness Scale (SOCRATES) is available in a 19-item short form and a 39-item longer form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [78] "The Strategy Questionnaire contains 21 items divided among three factors, Selective Avoidance (7 items), Strategies While Drinking (10 items), and Alternatives (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [79] "The White Privilege Attitudes Scale has 28 items representing four factors: Willingness to Confront White Privilege (12-items), Anticipated Costs of Addressing White Privilege (6 items), White Privilege Awareness (4 items), and White Privilege Remorse (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [80] "The Work Hope Scale has 24 items, loosely forming 3 subscales: Agency (9 items), Pathways (8 items), and Goals (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [81] "The Self-Analysis Blank consists of three sections: Personal History (10 items), Personal Characteristics (11 items), Interests and Ambitions (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [82] "The Primary Examination Form A contains 3 reading tests (100 items); two arithmetic tests (45 items)); and one dictation exercise. The Advanced Examination Form A contains 3 reading tests (100 items); two arithmetic tests (45 items); a dictation exercise; and tests of nature and science (95 items), history and literature (95 items), and language usage (60 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [83] "169 total items: Exercise 1 (Social Relations) = 20 items; Exercise 2 (Moral Judgement) = 24 items; Exercise 3 (Proverbs) = 20 items; Exercise 4 (Definitions of Moral Terms) = 45 items; Exercise 5 (Offense Evaluation) = 50 items; Exercise 6 (Moral Problems) = 10 items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [84] "Each level from age 3 months to 2 years contains 5 items, with 25 total items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [85] "Test I (30 items), Test II (30 items), Test III (25 items), Test IV (30 items), and Test V (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [86] "The Miller Mental Ability Test contains 120 items; each of 3 subtests has 40 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [87] "This survey contains 4 sections: Section I contains 6 items, Section II contains 14 items, and Sections III and IV each contain one multi-faceted item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [88] "The Aberrant Salience Inventory contains 29 items that form 5 factors: Increased Significance (7 items), Senses Sharpening (5 items), Impending Understanding (5 items), Heightened Emotionality (6 items), and Heightened Cognition (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [89] "The Adolescent Self Concept Scale is comprised of 38 items in the following areas: attitudes toward the family (7 items), occupational choice (7), satisfaction with life (5), religion (2), peer relations (5), and the self (12)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [90] "The Adolescent Social Self-Efficacy Scale consists of 25 items. These include 5 items describing social assertiveness, 5 items describing performance in public situations, 5 items describing participation in social groups or parties, 7 items describing aspects of friendship and intimacy, and 3 items describing giving or receiving help."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [91] "The Aggression Questionnaire contains 29 items across 4 scales: Physical Aggression (9 items), Verbal Aggression (5 items), Anger (7 items), and Hostility (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [92] "There are 68 items, forming 6 scales: Global Positive Changes (24 items), Sexual Enhancement (7 items), Social and Physical Pleasure (9 items), Social Assertiveness (10 items), Relaxation (9 items), and Arousal/Aggression (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [93] "The Ambivalent Sexism Inventory is comprised a Hostile Sexism subscale with 11 items, and a Benevolent Sexism subscale with 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [94] "The Ambivalent Sexism Inventory--Short Form consists of 12 items (6 items each for Hostile Sexism and Benevolent Sexism scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [95] "The Aspiration Index contains 21 items rated on four domains: self-acceptance (four items), affiliation (six items), community feeling (six items), and financial success (five items). There was also a shorter 14-item version used by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [96] "The 21-item Assertive Interpersonal Schema Questionnaire is composed of 4 subscales: Outer Emotional Support (5 items), Functional Personal Ability (4 items), Interpersonal Management (8 items), and Affective Personal Ability (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [97] "The Attitudes Toward God Scale has 9 items: The Positive Attitudes toward God subscale has 5 items, and the Disappointment and Anger with God subscale has 4."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [98] "The BIS/BAS Scales consist of 20 items: BIS (7 items), BAS Reward Responsiveness (5 items), BAS Drive (4 items) and BAS Fun Seeking (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [99] "There are 15 items on the Body Consciousness Questionnaire, composing 3 scales: Private Body Consciousness (5 items), Public Body Consciousness (6 items), and Body Competence (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [100] "The measure consists of 12 items, with 6 items measuring each factor (Internal Stimulation and External Stimulation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [101] "The College Press Scales consist of 23 scales, 12 faculty press scales and 11 student press scales, with 6 items on each scale, for a total of 138 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [102] "The Family Stress Scale contains 23 items: Work Role Ambiguity (3 items), Work Role Overload (2 items), Conflicting Demands at Work (1 item), Work Disruptions (1 item), Repetitive Work (2 items), Lack of Autonomy (3 items), Nonchallenging Work (2 items), Work Dependency, Work Role Insignificance (4 items), Lack of Resources on the Job (2 items) and Work Environment Discomfort (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [103] "The Brief Adolescent Daily Hassles Scale contains 14 items (7 items that reflected hassles from parents and 7 items that reflected hassles from friends and others)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [104] "The Brief UPPS Impulsive Behavior Scales contains 4 scales: Urgency (12 items), Premeditation (11 items), Perseverance (10 items), and Sensation Seeking (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [105] "The 24 items of the JVCT compose two parallel sets of 11 items about justification of male tactics and 11 items about justification of female tactics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [106] "The Child Evaluation Inventory contains 19 items. The first subscale includes 11 items in which the child evaluates his or her progress in treatment. The second subscale (8 items ) measure acceptability of treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [107] "This 91 item measure consists of 7 categories, with 13 items per category."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [108] "The Clarity, Responsiveness and Comfort Scale consists of 15 items with 5 items representing each of the three title constructs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [109] "The measure consists of 45 items comprising three subscales: Symptom Distress (SD-25 items), Interpersonal Relationships (IR-11 items), and Social Role Functioning (SR-9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [110] "The Conscious Attitudes Test is composed of 27 items in the following dimensions: Normal Femininity (9 items), Concern about Sex (3 items), Affiliation-nurturance (5 items), Yielding (5 items), Unassertiveness (4 items), and Femininity (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [111] "The FAM Questionnaire consists of 18 items; both the Somatic Modality scale has 11 items and the Cognition scale has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [112] "The Consultation Services Questionnaire has 26 items. Part 1 of the scale contains 17 items assessing general perceptions of the consultant. Part 2 consists of 5 items assessing consultees' perceptions of benefits gleaned from working with the consultant. Four additional items are included in Part 3 to measure satisfaction with strategies developed, success of strategies, confidence in abilities to solve similar problems in the future, and overall effectiveness of the consultant."                                                                                                                                                                                                                                                                                                                                                                    
##  [113] "The measure consists of 29 items and three subscales: Anticipation Flight Anxiety scale (12 items), Inflight Anxiety scale (10 items), and Generalized Flight Anxiety scale (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [114] "The Gambling Expectancy Questionnaire contains 24-items across 5 subscales: Material Gain (5 items), Negative Affect (6 items), Positive Self-Evaluation (5 items), Negative Social Consequences (5 items), Parent Disapproval (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [115] "The German version contains 12 items and the Russian version contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [116] "(a) demographic information, (b) time allocation of AIM consultants (10 items), (c) knowledge demonstrated by AIM consultants (15 items), (d) recommended service involvement for AIM consultants (15 items), (e) characteristic style of AIM consultants (10 items), and (f) general effectiveness of AIM services and support for the program as well as suggestions for future service (4 items), for a total of 54 items in this scale."                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [117] "The elementary school version of the MRFS-III consists of 75 items and the middle and high school versions consist of 79 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [118] "The PNS consists of 12 items, though the analyses reported in this article are based on a revised 11-item scale which dropped Item 5."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [119] "The Physical Appearance Related Testing Scale contains 18 items. Factor 1 (the Weight/Size Testing scale consists of 12 items; Factor 3 (the General Appearance Teasing scale) consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [120] "The questionnaire consists of 25 items, with 13 items measuring overt sexual abuse and 12 items measuring covert sexual abuse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [121] "The Criterion Behavior Checklist has 75 items, with 25 items on each of three variables: hostility, anxiety, and dependency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [122] "The QOC-P contains 23 items. The QOC-S ihas 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [123] "The Physical Self-Efficacy Scale is comprised of 22 items: the Perceived Physical Ability subscale has 10 items and the Physical Self-Presentation Confidence subscale has 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [124] "The longer version of the Cross-Culrural Sensitivity Scale is 24 items; the 2 shorter parallel forms are 12 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [125] "The Child scale has 8 items,the Mother scale has 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [126] "The HCS-Adolescent contains 50-items, including 42 items on 7 subscales: Lifestyles (8 items), Customs (11 items), Activities (10 items), Folklore (5 items). Causes-Locations (3 items), Causes-Access (2 items), and Language Proficiency (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [127] "The Initial Assessment Interview has Part I: Driving Interview (41 items), Part 2: Psychosocial Assessment (30 items), Part 3: Psychiatric Assessment (7 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [128] "The Negative Attitudes toward Masturbation Inventory is comprised of 30 items and 3 subscales, Positive attitudes toward masturbation (12 items), False beliefs about the harmful nature of masturbation (11 items), and Personally experienced negative affects associated with masturbation (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [129] "The final MSQFOP consists of 24 items, including a 20-item Marital Satisfaction Scale, with one major (Communication/Companionship) and two minor (Sex/Affection, Health) factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [130] "The Protective Factor Measures contain 34 items in divided into two broad categories: Controls Protection (includes family monitoring [4 items], school attachment [11 items], and religiosity [3 items]) and Support Protection (includes family closeness [6 items] and neighborhood attachment [10 items]). The Risk Factor Measures contain 23 items divided into 3 broad categories: Models Risk (includes peer models [5 items] and family models [1 item]), Opportunity Risk (includes alcohol/gang behavior [4 items]), and Vulnerability Risk (includes depression [7 items] and low expectations for the future [6 items])."                                                                                                                                                                                                                                   
##  [131] "The Masculine Gender Identity Scale contains 29 items; Part A (20 items) consists of items intended to measure masculine gender identity, while Part B (29 items) consists mostly of items concerning cross dressing and items concerning erotic preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [132] "The MESSY consists of a 62-item self-report scale and the 64-item teacher report scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [133] "The final Preference for Consistency (PFC) Scale retained 18 items. A 9-item brief version of this measure (PFC-B) was also developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [134] "The DS-R consists of 25 items tapping 3 dimensions of disgust: Core Disgust (12 items), Animal Reminder Disgust (8 items), and Contamination-Based Disgust (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [135] "The Dispositional Positive Emotion Scales (DPES) questionnaire is a 38-item, self-report instrument with seven 5- or 6-item scales: joy, contentment, pride, love, compassion, amusement, and awe."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [136] "The Presidential Style Scale consists of 49 items divided among 5 dimensions: Interpersonal (21 items), Charismatic (15 items), Deliberative (7 items), Creative (3 items), and Neurotic (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [137] "The final 34-item dual-level TFL scale includes two subscales: Individual-Focused TFL (18 items) and Group-Focused TFL (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [138] "The IM-4 consists of a total of 15 items, with 10 items on the MM—Achievement Orientation subscale and 5 items on the MM—Unrestricted Mobility subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [139] "The ESFA consists of a total of 73 items, with 29 items each on the Connection With Homeland and Interpersonal Norms subscales and 15 items on the Conservatism subscale. The ESFA--Short Form consists of a total of 30 items with 10 items in each of the three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [140] "The 15-item Secure Base Characteristics Scale (SBCS) contains 3 subscales, Availability, Interference, and Encouragement (each scale has 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [141] "The ICQ consists of a total of 40 items, including 8 items on each of the five subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [142] "The IGI consists of a total of 32 items, with 4 items comprising each of the 8 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [143] "The Self-Report Multimethod Job Design Questionnaire has 48 items. It is a self-report version of the 70-item Multimethod Job Design Questionnaire that examined managerial and professional jobs that cannot be easily analyzed by observation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [144] "The IRI consists of a total of 28 items, with 7 items on each of the four subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [145] "The measure consists of 9 scales. Depth of knowledge has 19 items and 9 anchors, Delivery has 31 items and 9 anchors, Organization has 18 items and 7 anchors, Interpersonal relations with students has 41 items and 10 anchors, Relevance has 15 items and 8 anchors, Testing has 21 items and 9 anchors, Grading has 13 items and 8 anchors, Assignment and work load has 16 items and 8 anchors, and Ability to motivate has 23 items and 6 anchors."                                                                                                                                                                                                                                                                                                                                                                                                                
##  [146] "The Militant Extremism Scale is comprised of 24 items distributed across three subscales: War, God, and West (8 items each, 4 items reverse-coded)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [147] "The Measure of Militant Extremist Mind-Set is comprised of 24 items distributed across 3 scales: Proviolence (10 items), Vile World (6 items), and Divine Power (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [148] "The Interpersonal Sense of Control Scale is comprised of 18 items across 4 subscales: Effectance (6 items), Acquiescence (5 items), Fate (5 items), and Conflict Control (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [149] "The Miller Marital Locus of Control scale (MMLOC) is comprised of 44 items distributed across the following subscales: Ability (12 items), Effort (10 items), Context (15 items), and Luck (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [150] "The final version of the MSSI is composed of 18 items, 13 items from the original SSI, and 5 new items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [151] "The Newcomer Socialization Scale (NSQ) consisted of 43 items measuring three dimensions: Organizational Socialization (16 items), Group Socialization (16 items) and Task Socialization (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [152] "The Inventory of Interpersonal Strengths (IIS) is comprised of 64 items with 8 items each distributed across 8 subscales: Connect, Balance, Engage, Restrain, Lead, Cooperate, Direct, and Consider."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [153] "The Self-Efficacy Scale consists of a General Self-efficacy subscale (17 items) and a Social Self-efficacy subscale (6 items) along with 7 filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [154] "The original Smoking Expectancies Scale for Adolescents consists of 43 items, 27 items were retained for further analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [155] "There are 11 items forming a 3-factor model: behavioral (4 items), craving (4 items), and nervousness (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [156] "The Nuclear Attitudes Questionnaire has 15 items that form four factors: nuclear concern (5 items), nuclear support (4 items), fear of future (2 items), and nuclear denial (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [157] "The NOSIE-Shortened Form contains 12 items with 6 factors (2 items each): Social competence, Social interest, Neatness, Irritability, Motor retardation, and Psychoticism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [158] "The 21-item revised Sociocultural Attitudes Towards Appearance Questionnaire–Revised Female Version includes an 11-item awareness scale and a 10-item internalization scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [159] "The Specific Interpersonal Trust Scale (SITS-M) consists of 19 items distributed across Overall Trust, Reliableness and Emotional Trust subscales; the SITS-F consists of 13 items from the Reliableness and Emotional Trust subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [160] "The Psychological Empowment Scale consists of 9 items, 3 items each distributed across subscales for Perceived Control, Perceived Competence and Goal Internalization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [161] "There are 20 items in the State Self-Esteem Scale that form 3 primary factors: Performance (7 items), Social (7 items), and Appearance (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [162] "This measure consists of a total of 42 items, with the same 21 items in each of the state and trait forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [163] "There are 32 items, forming 2 factors: Factor 1 is ethnic society immersion (ESI, 17 items) and Factor 2 is dominant society immersion (DSI, 15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [164] "The Montag Driving Internality and Driving Externality scales are two scales of 15 items each (30 items in all)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [165] "The Iraq Readjustment Inventory consists of a total of 16 items (Global scale). A Social Readjustment scale is the sum of 8 items. A Concerns About Iraq scale is the sum of 6 items. A Career Readjustment scale is the sum of 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [166] "This 12-item measure consists of a 7-item Achievement Strivings scale and a 5-item Impatience-Irritability scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [167] "The Job Cognitions Scale consists of 12 items, including the 6-item Pay Cognitions subscale and the 6-item Job Cognitions subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [168] "The Controls Protection Measures consist of three scales: Family monitoring (4 items), School attachment (11 items), and Religiosity (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [169] "The Survey of Perceived Organizational Support (SPOS) contains 36 items for the long version (18 items reverse scored), and 17 items for the short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [170] "Participants are asked to respond to a 9-item questionnaire and 4-item interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [171] "Checksheet A contains 14 items; Checksheet B contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [172] "The EBPAS includes 15 items measuring four factors: Requirements (3 items), Appeal (4 items), Openness (4 items), and Divergence (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [173] "The Motoric Idcational Sensory Test (MIST) contains 45 items distributed across Sensory (15 items), Ideational (15 items), and Motoric (15 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [174] "The Job Stressor Questionnaire contains items assessing job stressor variables: Safety Climate (5 items), Job Certainty (4 items), Control (5 items), Harassment and Discrimination (3 items), Job Demands (2 items), Training (4 items), Daily Exposure (summated scale), Overcompensating (1 item), Skill Underutilization (1 item), and Responsibility for Safety of Others (1 item), and Support of Supervisors/male co-workers."                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [175] "The Schutte Scale for Rating Teachers contains 86 items: personal and social qualities (18 items), cooperative qualities (11 items), leadership (11 items), scientific and professional attitude (19 items), and teaching ability (27 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [176] "The Scott Mental Alertness Test contains six tests. Test A (arithmetic) includes 17 word problems); Test B (word opposites) contains 25 items; Test C (reasoning) contains 25 items; Test D (figure perception) contains 16 items; Test E (letter arrangement) contains 20 items); and Test F (coin counting) contains 12 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [177] "The Multi-Attitude Suicide Tendency Scale has 30 items with four factors: Attraction to Life (7 items), Attraction to Death (7 items), Repulsion by Death (9 items), and Repulsion by Life (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [178] "The Revised Dual-Role Relationships Inventory (DRI-R) contains 30 items distributed across Trust (5 items), Caring-Fairness (20 items), and Toughness scales (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [179] "The Tall Poppy Scale consists of 20 items, with two 10-item subscales: Favor Fall and Favor Reward."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [180] "The Teacher Expectations Measure has 3 items: 2 items that are summed to form a scale for teacher's ratings of students' math ability, and 1 item used as a gross indicator of learned helplessness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [181] "The 40-item TISS consists of two scales: a 20-item positive scale and a 20-item negative scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [182] "Most versions of the Ontario Child Health Study Scales—Revised consist of 12 items measuring conduct disorder, 9 items measuring oppositional disorder, and 14 items measuring attention-deficit hyperactivity disorder. The teacher versions use 9 items to measure conduct disorder for both the 6-11 and the 12-16 age groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [183] "The LES consists of a total of 57 items and two sections. Section 1, which is designed for all respondents, contains a list of 47 specific events plus three blank spaces in which subjects can indicate other events that they may have experienced. Section 2, which is designed mainly for use with students but may be adapted for other populations, contains 10 items which deal specifically with changes experienced in the academic environment."                                                                                                                                                                                                                                                                                                                                                                                                               
##  [184] "The Diabetes Distress Scale consists of 17 items; 5 items assessing emotional burden, 4 items assessing physician-related distress; 5 items assessing regimen-related distress; and 3 items assessing diabetes-related interpersonal distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [185] "The Psychological Screening Inventory (PSI) is comprised of five subscales are: Alienation (Al, 25 items), assessing similarity to psychiatric patients; Social Nonconformity (Sn, 25 items), assessing similarity to incarcerated prisoners; Discomfort (Di, 30 items), assessing the major personality factor of anxiety or perceived maladjustment; Expression (Ex, 30 items), assessing the factor of extraversion or undercontrol; and Defensiveness (De, 20 items), assessing test-taking attitude."                                                                                                                                                                                                                                                                                                                                                               
##  [186] "The 26-item Outcome Scales consist of 3 factors: Depression (12 items), Sexual Dissatisfaction (eight items), and Fear (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [187] "The Pain Response Inventory for Children is comprised of 60 items across 13 subscales: Problem-Solving (5 items), Seeking Social Support (6 items), Rest (5 items), Massage/Guard (3 items), Condition-specific Strategies (5 items), Self-Isolation (5 items), Behavioral Disengagement (5 items), Catastrophizing (5 items), Acceptance (5 items), Minimizing Pain (3 items), Self-Encouragement (3 items), Distract/Ignore (5 items), and Stoicism (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                        
##  [188] "There are 21 paranormal belief questions in the scale, including (a) 5 questions regarding the spiritual-religious aspect of paranormal phenomena, (b) 5 items concerning the scientific value or validity of paranormal phenomena, (c) 5 questions pertaining to the existence of paranormal phenomena or psychic powers, and (d) 6 items concerning topics related to paranormal phenomena or the development of psychic abilities in some form or another."                                                                                                                                                                                                                                                                                                                                                                                                           
##  [189] "The Parenting Sense of Competence Scale consists of 17 items and two factors: satisfaction (9 items) and efficacy (7 items). The authors note that although included on the original Efficacy scale, Item 17 failed to load above .40 on either of the empirically derived factors; scores are calculated by summing the 16 items that loaded on the two factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [190] "The two present implementations of the Traits Attribution Test are composed of 7 items and 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [191] "The Trauma-Related Guilt Inventory (TRGI) is comprised of 32 items distributed across the 4-item Global Guilt, 22-item Guilt Cognitions, and 6-item Distress scales. The Guilt Cognitions Scale is comprised of 6 items that loaded highly on more than one cognitive factor and 3 subscales: a Hindsight-Bias/Responsibility subscale (7 items); a Wrongdoing subscale (5 items); and a Lack of Justification subscale (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [192] "The TBQ-C consists of a total of 19 items and six subscales. The 'Specific to Child' scale contains 7 items, the 'General Beliefs about Medication' scale contains 3 items, the 'Seriousness of Illness' scale contains 4 items, the 'Costs/Benefits' scale contains 1 item, the 'Knowledge about Treatment' scale contains 2 items, and the 'Relationship with Health Care Provider' scale contains 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [193] "The Trust Scale has 17 items comprising 3 subscales: Faith (7 items), Dependability (5 items), and Predictability (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [194] "The Self-Perception in Exercise Questionnaire (SPEQ) is a 24-item measure. Factor 1 corresponded to the Exercise Mastery scale with 8 items, Factor 2 to the Body Perception scale with 7 items, Factor 3 to the Perceived Fitness scale with 4 items, and Factor 4 to the Social Comfort/Discomfort scale with 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [195] "The Self-Statements During Public Speaking (SSPS) scale is a 10-item questionnaire consisting of two 5-item subscales, the Positive Self-Statements (SSPS-P) and the Negative Self-Statements subscale (SSPS-N)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [196] "The Sensitivity to Punishment and Sensitivity to Reward Questionnaire consists of 24 items, with 14 items on the Sensitivity to Punishment scale and 10 items on the Sensitivity to Reward scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [197] "The 12-item scale consists of 6 items written to assess sexblindness and 6 to assess sexawareness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [198] "The SMTQ consists of a total of 14 items divided into three subscales: Confidence (6 items), Constancy (4 items), and Control (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [199] "The focus of this study is on the 11 items representing four factors with high loadings to mathematics achievement, which were common to both forms of the measure (Form A contains 19 items; Form B 21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [200] "The Thought Control Ability Questionnaire is composed of 25 items. After analysis, two problematic items were eliminated resulting in a 23-item scale (French adaptation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [201] "The preliminary clinician-report of the ADRS contains 10 items. The self-report version of the ADRS contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [202] "The SADQ consists of 33 items and 5 subscales: Physical Withdrawal (7 items) , Affective Withdrawal (7 items), Withdrawal Relief (7 items), Typical Daily Consumption (6 items), Post Abstinence (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [203] "The original 1983 version of the TSQ included 13 items. The revised 1988 version of the TSQ includes 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [204] "The Trait Meta-Mood Scale contains 48 items divided into 3 factors: Attention to Feelings, Clarity in Discrimination of Feelings, and Mood Repair. A shorter (30-item) version of the TMMS is also described."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [205] "The Vocational Decision Scale consists of 25 items; 2 items assess the decidedness and comfort dimensions of the model, and the remaining 23 items are reasons for being vocationally undecided, divided into 3 factors: self-uncertainty, choice/work salience, and transitional self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [206] "The Women's Wartime Stressor Scale contains 27 items, with four subscales: Quality of Care Issues (9 items), Discriminatory Experiences (7 items), Environmental Stressors (5 items), and Exposure to Catastrophic Death and Dying (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [207] "There are 30 items in the Work Preference Inventory, composed of 15 items each for Intrinsic and Extrinsic motivation. The Intrinsic motivation scale can be further divided into Challenge (5 items) and Enjoyment (10 items), and the Extrinsic motivation scale can be further divided into Outward (10 items) and Compensation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [208] "The Therapeutic Bond Scales consist of three subscales, the 15-item Working Alliance subscale, the 17-item Empathic Resonance subscale, and the 18-item Mutual Affirmation subscale. The Global Bond scale is a composite of these three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [209] "This study resulted in a 30-item Interest Profiler, and two brief 8-item activity scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [210] "The Career Decision-Making Self-Efficacy Scale consists of 50 items and 5, 10-item subscales: accurate self-appraisal, gathering occupational information, goal election, making plans for the future, and problem solving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [211] "The CCCS consists of 28 items--9 items tapping Tendency to Foreclose and 19 items tapping Vocational Exploration and Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [212] "This is a 15-item measure consisting of three 5-item subscales: parental support, interference, and lack of engagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [213] "The I scale contains 7 items, E1 contains 7 items, and E2 contains 9 total items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [214] "The measure consists of 30 items measuring Kuder’s 10 (3 items each) occupational interest areas (Kuder & Zytowski, 1991)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [215] "The Adolescent Obsessive-Compulsive Drinking Scale contains 14 items and two subscales: Irresistibility (8 items) and Interference (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [216] "The long form (LF) of the Injecting Risk Questionnaire contains 18 items, while the short form comprises 2 items. A single-item measure (Health of the Nation Question—HNQ) was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [217] "The Original Relational Uncertainty Version had 14 final items, the Likert Relational Uncertainty Version had 13 items, the Relative Relational Uncertainty Version had 14 items, and the Unipolar Relational Uncertainty Version had 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [218] "The Chicago Food Allergy Research Survey for Parents of Children with Food Allergy contains 42 items, The Chicago Food Allergy Research Survey for the Primary Care Physicians contains 50 items, and The Chicago Food Allergy Research Survey for the General Public contains 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [219] "The Coping Questionnaire consists of 10 items distributed across an Angry Coping subscale (7 items) and an Unassertive Coping subscale (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [220] "This 59-item measure consists of four subscales: Occupational facet (31 items), Value facet (10 items), Organizational facet (8 items), and Job facet (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [221] "This is an 18-item measure with six subscales consisting of 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [222] "The WOLF contains 13 items and measures 3 dimensions of flow: absorption (4 items), work enjoyment (4 items), and intrinsic work motivation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [223] "Item elimination procedures resulted in the selection of six 14-item scales (Set I) which can be used with any form of the Men’s SVIB ever published, and six 20-item scales (Set II) which can be used only with the 1966 booklet (T399). Whenever possible, the Set II scales should be used because they are longer and slightly more reliable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [224] "The Competing Value Scale is composed of 28 items (four subscales with 7 items each in the following domains: human relations, open systems, internal process, and rational goal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [225] "This is a 16-item measure. A 6-item version was also created for the inclusion in the General Social Survey because of the need to shorten the measure for the survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [226] "The measure consists of 13 items and two subscales: Dyadic Perspective Taking (6 Items) and Dyadic Empathic Concern (7 Items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [227] "This is a 10-item measure comprised of two 5-item subscales: General Social Curiosity and Covert Social Curiosity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [228] "This 12-item child-informant measure consists of two subscales: Cognitive Gender Confusion (4 items) and Affective Gender Confusion (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [229] "These scales consist of 40 items altogether: Ability (6 items), Benevolence (5 items), Integrity (6 items), Propensity (8 items), Trust (4 items), Perceived accuracy (8 items), and Outcome instrumentality (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [230] "Michigan Study of Adolescent Life Transitions: Mother Scales consists of 15 items. The Michigan Study of Adolescent Life Transitions: Child Scales consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [231] "The Paranormal Scale contains 25 items distributed across the following subscales: Traditional Religious Belief (4 items), Psi (4 items), Witchcraft (4 items), Superstition (3 items), Spiritualism (4 items), Extraordinary Life Forms (3 items), and Precognition (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [232] "The Relationship Incentive and Threat Sensitivity Scales (RITSS) consists of 11 items divided between two constructs (relationship-specific threat sensitivity-5 items and relationship-specific incentive sensitivity-6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [233] "The Bases of Social Power Scale includes 20 items divided into five subscales of 4 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [234] "The Work/Nonwork Interference and Enhancement Measure consists of 17 items with four dimensions: work interference with personal life (5 items), personal life interference with work (6 items), work enhancement of personal life (3 items), and personal life enhancement with work (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [235] "The measure consists of 20 total items, with 10 items each distributed across a Pro Scale and a Con Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [236] "The Measures to Assess Collapse of Compassion are comprised of 21 items distrubuted across the following scales: Compassion (9 items), Distance (8 items), Diffusion (2 items), and Efficacy (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [237] "The Integration of Stressful Life Experiences Scale (ISLES) contains 16 items distributed across two subscales: Footing in the World (11 items) and Comprehensibility (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [238] "The measure consists of 16 items and two, 8-item subscales: Disengagement and Exhaustion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [239] "The Ambivalence Toward Men Inventory contains 12 items in 2 subscales: Hostility Toward Men (6 items) and Benevolence Toward Men (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [240] "This 15-item measure consists of the following subscales: social motives (4 item); self-enhancement (4 items); boredom relief (2 items); and stress reduction (5 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [241] "Metacognitive Strategy Use = 19 items, Capacity Beliefs = 5 items, Context Beliefs = 7 items, Abbreviated Version of the Goal Importance and Facilitation Inventory = 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [242] "The Executive Coaching Evaluation consists of four sections: Sections I and III require brief descriptions from respondents, while Section II requires a response to 40 items (phrased in the past tense). The same 40 items are listed in Section IV, however they are phrased in the present tense."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [243] "The Healthcare Provider Cultural Competency Measure consists of 9 items divided among 3 factors (3 items each): Knowledge, Awareness, and Skill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [244] "The HSM has 13 items (4-item exploration, 4-item insight, and 5-item action)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [245] "The PWS is a 36-item self-report measure consisting of six life dimensions (6 items per dimension)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [246] "The Real Relationship Inventory—Therapist Form (RRI–T) contains 24 items (10 items reverse scored) distributed across Realism and and Genuineness subscales, each with 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [247] "36-item measure of negative mentoring experiences (9 items for Protégé Performance Problems, 12 items for Interpersonal Problems, 15 items for Destructive Relational Patterns). Construct-related (convergent and discriminant) and criterion-related validity evidence were also obtained by using data from matched mentor–protege dyads. Study 3 replicated the factor structure of the instrument and provided additional validity evidence by using a sample of female academic mentors."                                                                                                                                                                                                                                                                                                                                                                          
##  [248] "The 1995 Sexual Harassment Survey consists of three surveys: Form A (51 items), Form B (133 items), and Form C."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [249] "The 30-item CASPI involves 3 subscales: Anxious-Impulsive Depression (16 items), Suicidal Ideation or Acts (6 items) and Family Distress (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [250] "The 31-item AWAI–A has 3 subscales: Rapport subscale (15 items), Apprenticeship subscale (8 items), Task Focus subscale (8 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [251] "The CRIS consists of 40 items. Each subscale consists of 5 items alongside 10 filler items. There is no global CRIS score; rather, the CRIS results in six subscale scores which cannot be collapsed or summed for interpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [252] "The Amoebic Self Scale contains 30 items across 3 subscales: Bodily subscale (6 items), Social subscale (8 items) and Spatial–Symbolic subscale (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [253] "The Athlete Drinking Scale contains 19 items across 3 subscales: Positive Reinforcement (9 items), Team/Group (7 items), and Sport-Related Coping (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [254] "The original CSI consists of a total of 32 items. Shorter versions of the measure also exist, including a 16 item version as well as a 4 item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [255] "The ADMI contains 60 items across 4 subscales: Hypermasculinity (16 items), Sexual Identity (14 items), Dominance & Aggression (16 items), and Conservative Masculinity (14 items, and Devaluation of Emotion (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [256] "The Comparative Psychotherapy Process Scale (CCPS) is comprised of either an Experimental Rater or Therapist Form (ER/T; 20 items) or Patient Form (P; 20 items)--each with PI (Psychodynamic-Interpersonal) and CB (Cognitive-Behavioral) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [257] "The PAGEQ consists of a total of 21 items. There are 6, 6, 5, and 4 items on the ATG-T, ATG-S, GI-T, and GI-S scales, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [258] "The QDR-36 has the following dimensions: Dyadic Consensus (11 items), Dyadic Cohesion (4 items), Dyadic Satisfaction (11 items), Dyadic Sensuality (5 items), and Dyadic Sexuality (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [259] "The CADI consists of 113 items separated into seven modules: general (7 items), medical history/systems review (22 items), developmental history (28 items), emotional/social functioning (19 items), depression/ anxiety (23 items), school history (6 items), and behavior (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [260] "The Smoking Consequences Questionnaire--Short Form (S-SCQ) contains 21 items and 4 subscales--Negative Consequences (4 items), Positive Reinforcement (5 items), Negative Reinforcement (7 items), and Appetite-Weight Control (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [261] "The measure consists of 30 items sampling six domains that are widely considered to reflect basic aspects of dissociation: Dissociative Amnesia (7 items), Absorption and Imaginative Involvement (6 items), Passive Influence (5 items), Depersonalization and Derealization (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [262] "The Affect Regulation and Experience Q-Sort contains 47 items: the Affect Experience subscale contains 20 items; the Affect Regulation subscale contains 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [263] "The Antifat Attitudes Questionnaire contains 13 items: Dislike (7 items), Fear of Fat (3 items), and Willpower (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [264] "One version of the Assertiveness Inventory comprises 18 items that focus on three factors: Substance Assertiveness, General Assertiveness, and Social Assertiveness. A second version of the Assertiveness Inventory comprises 20 items focusing on five factors: Substance Assertiveness, Social Assertiveness, General Assertiveness, Rights Assertiveness, and Dating Assertiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [265] "The three main sections of the questionnaire measure employee perceptions of their job (27 items), organizational commitment (9 items) and employee health (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [266] "The Short Form of the Adolescent Coping Scale consists of 18 items and the Long Form consists of 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [267] "The C-SARS consists of 3 subscales: Abuse-Specific Events (34 items), Abuse-Related Events (20 items), and Public Disclosure Events (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [268] "The CAT scale consists of 38 items across 3 subscales: Sexual Abuse (6 items), Punishment (6 items), and Neglect/Negative Home Atmosphere (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [269] "The CABS-PA consists 30 items across 4 subscales: Child Blame (9 items), Situational Blame (8 items), Societal Blame (7 items), and Parental Blame (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [270] "The Child Conflict Index contains 21 items for boys' and 18 items for girls' behavior (12 items are the same for both genders)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [271] "The CWVI has 3 main components: Attitudes and Responses to Anger (19 items), Responsibility for Violence (12 items), and Safety Skills (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [272] "The Child's Reaction to Traumatic Events Scale has 15 items in 2 subscales: Avoidance Statements (8 items) and Intrusion Statements (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [273] "This is a 46-item interview divided into 9 sections: Parental Physical Availability ( 8 items), Parental Disorder ( 5 items), Parental Psychological Availability (4 items), Psychological Abuse (7 items), Physical Abuse (2 items), Emotional Abuse (7 items), Ritualistic Abuse (1 item), and Perceptions of Abuse Status (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [274] "The CTQ inventory contains 70 items arranged according to four factors: physical and emotional abuse (23 items), emotional neglect (16 items), sexual abuse (6 items), and physical neglect (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [275] "There are a total of 32 questions and 4 aspects-subscales: general conceptions about personal body safety (5 items), characteristics of violators (1 1 items), characteristics of victims (6 items), and consequences of safety violation for victim and perpetrator (10 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [276] "The Children's Impact of Traumatic Events Scale B--Revised has 78-items across 11 subscales: Intrusive Thoughts (7 items), Hyperarousal (6 items), Sexual Anxiety (5 items), Self-Blame/Guilt (13 items), Empowerment (6 items), Personal Vulnerability (8 items), Dangerous World (5 items), Social Support (6 items), Negative Reactions From Others (9 items), and Eroticization (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [277] "The CAPS has 18 items across four subscales: Feeling Dqferent From Peers (4 items), Personal Attributions For Negative Events (4 items), Limited Perceived CredibiZity ( 5 items), Low Interpersonal Trust (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [278] "The Chronic Strain Inventory has 45 items. Types of chronic stressors are: general (3 items) or related to employment (6 items), school (5 items), residence (6 items), children (3 items), relationships with partners (6 items) or parents (7 items), and discrimination (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [279] "The Clinical Trauma Assessment consists of 16 items with 3 subscales: Controlled Style (6 items), Cognitive Style (5 items), Expressed Style (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [280] "The Cognition Checklist consists of 14-item depression and a 12-item anxiety subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [281] "Multivariate analyses yielded a 12-item subscale of anxious cognitions and a 14-item subscale of depressed cognitions, which comprise the 26-item CCL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [282] "There are two versions of the Conflict Behavior Questionnaire: the adolescent version contains 73 items and the maternal version contains 75 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [283] "The CIRQ is a 76-item self-report. It has 3 subscales: Abuse/Coercion (13 items), Negative Communication (15 items), Abuse/Blame (28 items), and Positive Communication (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [284] "The 48-item questionnaire includes 8 subscales with 6 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [285] "The Counselor Professional Identity Scale consists of a total of 102 items, evenly divided between the Real and Ideal scales (51 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [286] "The 45 items on the final CCI were distributed across 4 factors: Detachment (8 items), Self-rated Inferiority (10 items), Helplessness (9 items), and Hopelessness (7 items). Eleven positive buffer items, which are not scored are added to prevent response set."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [287] "The APS-R has 23 items and consists of 3 subscales: High Standards (7 items), Order (4 items), and Discrepancy (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [288] "The full DHS consists of 39 items. The Depression Scale includes 17 items, the Hopelessness Scale includes 10 items, and the Critical Item Checklist includes 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [289] "The DCCQ includes 23 items grouped into two subscales: Direct Intervention (13 items) and Self-Calming (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [290] "The EEI contains 5 subscales, with item numbers as follows: (1) Eating Helps Manage Negative Affect (18 items); (2) Eating Is Pleasurable and Useful as a Reward (6 items); (3) Eating Leads to Feeling out of Control (4 items); (4) Eating Enhances Cognitive Competence (2 items); and (5) Eating Alleviates Boredom (4 items). The TREI has 44 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [291] "The EAS consists of a total of 54 items and 4 subscales: Hostile Withdrawal (9 items), Dominance/Intimidation (15 items), Denigration (17 items), and Restrictive Engulfment (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [292] "The test contains 35 items in five sections: Speech (13 items), Reading and Writing (4 items), Faces and Places (6 items), Actions (6 items), and Learning New Things (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [293] "The brief form of the Expectations About Counseling questionnaire consists of 66 items, pertaining to 18 scales. Also, there are 13 items assigned to a Realism scale that are not intended to be included in analysis of the instrument. Rather, they represent expectations for situational conditions (e.g., taking psychological tests, seeing counselors in training) that have been found to assist in interpretation of the instrument as a whole."                                                                                                                                                                                                                                                                                                                                                                                                               
##  [294] "The Exposure to Abuse and Supportive Environments--Parenting Inventory (EASE--PI) consists of 70 items divided into six scales, three scales (42 items) reflecting abusive behaviors and three scales (28 items) reflecting supportive behaviors. The Abusive/Negative subscales include, Emotional Abusiveness (EA, 19 items), and Physical Abusiveness (PA, 13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [295] "The assessment is an inventory that has three versions: (1) A 50-item General Scale; (2) A 42-item Dyadic Relationship Scale; and (3) A 42-item Self-Rating Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [296] "The parent version consists of 60 items, while the adolescent version consists of 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [297] "The F-COPES consists of 30 items distributed among the following five subscales: Acquiring Social Support (9 items), Reframing (8 items), Seeking Spiritual Support (4 items), Mobilizing Family to Acquire and Accept Help (5 items), and Passive Appraisal (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [298] "The Family Environment Questionnaire 12 items, with 7 items in the Psychological Maltreatment subscale and 5 items in the Physical Maltreatment subscale. ,"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [299] "The Family Functioning Measure has 18 items across 4 subscales: Communication (4 items), Monitoring (3 items), Conflict (5 items) and Cohesion (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [300] "50 items Employees--50 items Supervisors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [301] "The FEEDSA inventory consists of 54 items categorized into the two subscales—trauma (48 items) and dissociation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [302] "The Goal Commitment Scale has 9 items and alternative 4-item and 7-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [303] "The Hostile Environment Inventory consists of 54 items and one summary item. It also contains the following 9 scales: Over the Hill and Out (5 items), Religious Sensitivity (4), Made in the U.S.A. (3), Racism (14), Social Cliquishness (3), Minority Misbehavior (3), Woman as Interloper (7), Woman as Servant (8), Woman as Sex Object (5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [304] "The Human Factors Inventory contains 91 items and 4 subscales. The subscales are Job Stress (29 items), Job Dissatisfaction (20), Organizational Stress (17), and Personal Stress (25)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [305] "There are 17 items on the Hurricane-Related Traumatic Experiences Questionnaire, reflecting Perceived life threat (1 item), Life-threatening experiences (6 items), and Loss-disruption experiences (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [306] "The IMI Circumplex Interactant and IMI Circumplex Self forms are each composed of a subset of 56 (8 subscales of 7 items each) of the original 90 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [307] "The 72-item Inventory of Memory Experiences is divided into two sections: Part F, which includes 48 items concerning frequency of forgetting, and Part R, comprising 24 items tapping various aspects of remembering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [308] "The Time Urgency Scales in Likert-type format contained 33 items; the Behaviorally Anchored Rating Scale format had 127 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [309] "There are 42 items in the scale, with 7 items measuring each of 6 love styles: Eros, Ludus, Storge, Pragma, Mania, and Agape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [310] "The Maine Scale of Paranoid and Nonparanoid Schizophrenia consists of 10 items and two 5 item subscales: paranoid and nonparanoid."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [311] "The Profile Questionnaire contains 6 scales (Organization Inputs (12 items), Task Inputs (14 items), Personal Inputs (21 items), Transforms: Within-System Relations (19 items), Transforms: Management Styles (36 items), and System Outputs (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [312] "The Marijuana Effect Expectancy Questionnaire contains 55 items and has 6 subscales: Cognitive and Behavioral Impairment (13 items), Relaxation and Tension Reduction (9 items), Social and Sexual Facilitation (10 items), Perceptual and Cognitive Enhancement (9 items), Global Negative Effects (10 items), and Craving and Physical Effects (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [313] "This 55-item measure contains the following scales: Interest in Uncommitted Sex scale (10 items), Interest in Visual Sexual Stimuli (12 items), Unimportance of Partner's Status (12 items), Prefer Young Partner (11 items), and Importance of Partner's Physical Attractiveness (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [314] "Across nine moral dilemmas, 69 items are included in the measure: 34 items address issues of justice and 35 items address care issues. In addition, a 14-item self-descriptive section provides an assessment of a respondent's thoughts and feelings of being caring or just."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [315] "The Measures of Connectedness to School, Teachers, and Family contain 24 items altogether; Connectedness to school (5 items), Connectedness to Teachers (6 items), Connectedness to Family (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [316] "The Modified Leader Behavior Description Questionnaire is composed of 15 items, with 13 items measuring Benevolent Paternalism and 2 items measuring Domineering Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [317] "Childrearing Attitudes Survey contains 67 items pertaining to childrearing that can be classified in the following 3 clusters: measures of control the parent employs (39 items), intellectual objectivity of the parent (14 items), and (3) warmth of the parent-child relationship (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [318] "There are 44 items in the Multidimensional Coping Inventory, composed of 3 subscales: the Task subscale (19 items), Emotion subscale (12 items), and Avoidance subscale (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [319] "The MNS has a total of 20 items, 5 in each of the following domains of neglect: Physical needs, Emotional needs, Supervision needs, and Cognitive needs. It is noted that there are 8-item and 4-item versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [320] "The NASAS consists of rating scales in which there are 56 items categorized into eight subscales of different types of negative appraisals: Physical Pain/Damage (7 items); Negative Self-Evaluation: Global (9 items); Negative Self-Evaluation: Sexuality (8 items); Negative Evaluation by Others (5 items); Loss of Desired Resources (6 items); Harm to Relationships/Security (8 items); Harm to Others (4 items); and Criticism of Others (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                             
##  [321] "The NAS consists of 90 items describing potentially anger-provoking situations. An 80-item version has also been published (Novaco, 1977). The scale contains no subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [322] "The Occupation Analysis Inventory contains 617 elements separated into five major divisions: Information Received (125 items), Mental Activities (41 items), Work Behavior (262 items), Work Goals (112 items), and Work Context (77 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [323] "The Experience of Heterosexual Intercourse Scale has 29 items across 4 subscales: Being loved (11 items), Focus on partner’s state (8 items), Feelings of love toward partner (5 items), Desire for partner involvement (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [324] "This is a 21-item, self-report inventory that includes the following subscales: Self-Blame (5 items); Child Blame (5 items); Perpetrator Blame (5 items); and Negative Impact (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [325] "The Normative version of the measure consists of 132 Questions, while the Ipsative version consists of 220 Questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [326] "Parents and teachers rate 14 target behaviors. The Negative Behaviors subscale includes 10 items and the Positive Behaviors subscale includes 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [327] "The long-form PSI includes 101 main items that measure six child-related subscales (Adaptability: 11 items, Acceptability: 7 items, Demandingness: 9 items, Mood: 5 items, Distractibility/Hyperactivity: 9 items, and Reinforcement of Parent: 6 items) as well seven parent personality and situational variable subscales (Depression: 9 items, Attachment: 7 items, Restriction of Role: 7 items, Sense of Competence: 13 items, Social Isolation: 6 items, Relationship with Spouse: 7 items, and Parent Health: 5 items). Additionally, there is an optional 19-item life stress subscale. The short form includes 36 items that yield a total stress score from three subscales: parental distress, parent-child dysfunctional interaction, and difficult child."                                                                                                 
##  [328] "The Parents' Racial Attitudes Questionnaire is composed of 24 items (only 11 items were used to compute the total score)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [329] "The 15-item Patient Reactions Assessment consists of three 5-item scales: the Patient Information Index, the Patient Affective Index, and the Patient Communication Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [330] "The 18-item PFIT consists of two subscales—Supervisor (14 items) and Coworker (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [331] "The Personal Attributes Questionnaire consists of 55 items and 3 subscales: Male (23 items), Female (18 items), and Male-Female (13 items). One item does not appear on any subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [332] "The Personal Safety Questionnaire consists of 8 questions designed to assess children's knowledge about sexual abuse and 4 validity items (12 total items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [333] "The four factors corresponding to attitudes towards personality were as follows: Restless Dysphoria (11 items), Extraversive Adjustment (13 items), Tense Dependency (11 items), and Excitement Seeking (6 items). The four factors derived from the set of items related to time attitudes are: Time Anxiety (16 items), Time Submissiveness (8 items), Time Possessiveness (6 items), and Time Flexibility (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [334] "The measure consists of 64 items on the Parent Respondent form, 87 items on the Teacher Respondent form, and 72 items on Clinician Respondent form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [335] "Total PPAQ (61-items); Subscales -- Work in Home (8 items); Work on Job (4 items); Family (12 items); Friends (8 items); New Baby (9 items) ; Other children (8 items); Spouse (12 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [336] "The Profile of Psychological Abuse and Fear of Abuse Scale is comprised of the 21-item Profile of Psychological Abuse and the 6-item supplemental Fear of Abuse Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [337] "The Psychological Maltreatment of Women Inventory contains 58 items and two subscales: Dominance-Isolation (20 items) and Emotional-Verbal (28 items). It is noted that 10 of the 58 of the items loaded highly on both scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [338] "The Quality of Life Interview contains 40 items distributed across the following subscales: Frequency of Social Contacts (10 items), Satisfaction with Social Relations (8 items), Quantity of Leisure Activities (16 items), and Satisfaction with Leisure Activities (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [339] "There are 25 items in the parent form and 15 items in the teacher form of the Hyperkinesis Rating Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [340] "The RAQ consists of a total of 20 items, with 10 items on each on the Personal and Moral scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [341] "There are 4 items related to Phase 1, 18 items related to Phase 2, and 13 items related to Phase 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [342] "The Religious Background and Behaviors Questionnaire is comprised of 13 items across 2 factors: God Consciousness (5 items), and Formal Practices (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [343] "Item analyses identified a 14-item depression and a 12-item anxiety subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [344] "The Role Stress Measures have the following number of items in each scale: Role Overload (4 items), Role Ambiguity (4 items), and Nonparticipation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [345] "The SHI-IPV instrument is a 24-item self-report measure with 3 scales of 8 items each: Precontemplation, Contemplation, and Preparation/Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [346] "The measure consists of 40 items describing 10 categories (4 items per category) of behaviors often associated with hyperactivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [347] "This measure is an 18-item self-report inventory. Each of the 18 items is completed three times: once for the frequency of the racist event in the past year, once for the frequency of the racist event during one's entire life, and once for the appraisal of the stressfulness of the racist events (only 17 items are completed for appraisal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [348] "The Self-Evaluation of Interpersonal Relationships Form includes 9 items, with 5 items measuring interpersonal relationships with men and 4 items pertaining to relationships with other women."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [349] "There are two versions of the DEMQOL: a 28-item interviewer-administered questionnaire that is self-reported by the person with dementia (DEMQOL) and a 31-item interviewer-administered questionnaire that is proxy-reported by a caregiver (DEMQOL-Proxy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [350] "The SAFE is a 27-item scale, divided into 2 subscales: Sexual Associated Fears (11 items) and Interpersonal Discomfort (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [351] "The SAAQ contains 43 items, divided into 4 factors: (a) Sexual Permissiveness (12 items), (b) Sexual Preoccupation (15 items), (c) Negative Attitude Toward Sex (10 items), and (d) Pressure to Engage in Sex (internal and external, 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [352] "The measure consists of 28 items in the full-length form and 14 items each in two alternate forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [353] "The Shirom-Melamed Burnout Measure consists of 2 subscales: physical fatigue (6 items) and cognitive weariness (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [354] "The Shyness and Sociability Scale contains 14 items distributed across a Shyness subscale (9 items) and a Sociability subscale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [355] "The Social Skills Inventory (SSI) is comprised of 105 items distributed across 7 subscales of 15 items each: Emotional Expressivity, Emotional Sensitivity, Emotional Control, Social Expressivity, Social Sensitivity, Social Control, and Social Manipulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [356] "The Preschool Socioaffective Profile contains 80 items, divided into 8 scales (10 items each): Depressive-Joyful, Anxious-Secure, Angry-Tolerant, Isolated-Integrated, Aggressive-Calm, Egotistical-Prosocial, Oppositional-Cooperative, and Dependent-Autonomous."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [357] "The Supervisory Working Alliance Inventory consists of three supervisor factors (Client Focus, Rapport, and Identification; 23 items total) and two trainee factors (Rapport and Client Focus; 19 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [358] "The SWV consists of 54 items, divided into 6 subscales (each containing 9 items): Intrinsic Values, Organization-Man Ethic, Upward Striving, Social Status of Job, Conventional Ethic, and Attitude toward Earnings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [359] "The measure contains 161 items and five sections: Verbal Meaning (50 items), Space (20 items), Reasoning (30 items), Number Ability (60 items), and Word Fluency (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [360] "The Time Management Behavior Scale (TMB) contains 46 items addressing the following factors: Setting Goals and Priorities (15 items); Mechanics-Planning, Scheduling (13 items); Perceived Control of Time (13 items); and Preference for Disorganization (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [361] "The A/A CRS is a self-report consisting of 105 items, 99 of which are illustrated. Another revision is in progress and the scale is expected to be reduced to no more than 70 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [362] "The TSS includes 38 items divided among the following 4 subscales: Avoidance and Fear of Sexual and Physical Intimacy (16 items), Thoughts About Sex (12 items), Role of Sex in Relationshzps (7 items), and Attraction/Interest and Sexuality (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [363] "The Values Q Sorts consists of 90 items in two decks, the 40-item Personal Directions deck and the 50-item Personal Assumptions deck."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [364] "57 items are rated against 3 dimensions of support needs (frequency, duration, type) and each dimension is rated on a 5-point scale; 29 items related to exceptional medical and behavioral support needs are rated on a 3-point Likert scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [365] "The CIRS consists of 64 items, with an extra item that lists additional factors or resources used over the past 3 months that helped to manage the chronic illness. The Brief CIRS consists of 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [366] "The measure consists of 32 items and 11 subscales: Behavior (1 item), Knowledge (6), Attitudes (3), Interpersonal Sources (1), Media Sources (1), Subjective Social Norms (2), Perceived Benefits (3), Bodily Integrity (3), Jinx Factor (4), Ick Factor (4), and Medical Mistrust (4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [367] "The Escala de Demora Académica consisted of 15 items in its preliminary form; as supplied by the author the EDA consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [368] "Factor 1, with 12 items, was defined as Emotional Reactivity; Factor 2, with 10 items, was defined as taking an I Position; Factor 3, with 13 items, was defined as Reactive Distancing; and Factor 4, with 9 items, was defined as Fusion With Parents,"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [369] "29 of the 30 items from the original Rehabilitation Situations Inventory were subdivided to form the following subscales: motivation/adherence situations (7 items), sexual situations (4 items), aggressive patients (6 items), depressed patients (3 items), staff interactions (4 items), and family interactions (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [370] "Counseling Self-Estimate Inventory contains 53 items. Microskills (12 items), Process (10 items), Difficult Client Behaviors (7 items), Cultural Competence (4 items) and Awareness of Values (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [371] "The Long Version of the measure consists of 70 items, while the Short Version consists 51 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [372] "There are 9 items in the Propensity to Connect with Others Scale, with 3 items each forming the components of making friendships, making acquaintances, and joining others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [373] "The AE Scale contains 15 items: The Externalized Responsibility subscale has 10 items and the Entitled Expectations subscale has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [374] "The ACSS is a 34-item scale with 3 subscales: Approach (15 items), Avoidance (11 items), and Social Support (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [375] "The Adolescent Medication Barriers Scale contains 17 items across 3 subscales: Disease Frustration/Adolescent Issues (8 items), Ingestion Issues (5 items) and Regimen Adaptation/Cognitive (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [376] "The PMBS consists of a total of 16 items, including 7 items tapping Disease Frustration/Adolescent Issues, 5 items tapping Regimen Adaptation/Cognitive Issues, 3 items tapping Ingestion Issues, and 1 item tapping Parent Reminder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [377] "The PCOM includes 27 items measuring four dimensions: (1) Social functioning (9 items), (2) Emotional functioning (8 items), (3) Physical activity (5 items), and (4) Self-esteem (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [378] "The Progress in Singing Development scale consists of 42 items and the Development in Rhythmic Ability scale consists of 44 items (86 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [379] "The Fear of Pain Questionnaire (FOPQ) is available in two versions: Child (37 items; Avoidance of Activities [15 items], Fear of Pain [9 items], Cognitive Fusion [8 items], Somatic Fear [5 items]); and Parent (38 items; Avoidance of Activities [14 items], Fear of Pain [10 items], and Cognitive Fusion [9 items], and Somatic Fear [5 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [380] "The inventory contains 42 items, with 21 items measuring interest in scientist activities (s) and 21 items measuring interest in practitioner activities (p)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [381] "The PsychEval Personality Questionnaire consists of one form with two parts--325 total items (Part I = 185 items; Part II = 140 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [382] "The Coping Style Questionnaire has 12 items: emotion-focused (5 items), problem- focused (4 items), and avoidance-focused (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [383] "The Managerial Attitudes Toward Change Questionnaire contains 78 items. 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [384] "This measure contains 15 items for women and 22 items for men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [385] "The Perceived Ethnic–Racial Socialization Measure is a 16-item scale adapted from a Hughes and Johnson measure (2001). Its Preparation for Bias, Cultural Socialization-Pluralism, and Promotion of Mistrust subscales had 8, 5, and 3 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [386] "There are 20 items in the scale, 5 items measuring Environmental uncertainty, 9 items measuring Complexity, and 6 items measuring Decision authority."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [387] "The Work and Family Conflict Scale consists of a total of 22 items. Strain-based work interfacing with family (WIF) is measured with 6 items, Time-based WIF is measured with 5 items, Strain-based family interfacing with work (FIW) is measured with 6 items, and Time-based FIW includes 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [388] "The Family Relationship Scales contain a total of 35 items distributed across the following subscales: Beliefs About Family (10 items), Cohesion (6 items), Shared Deviant Beliefs (4 items), Support (6 items), Organization (6 items), and Communication (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [389] "The Psychological Reasons for Termination Survey contains 14 items distributed across 4 subscales: Jealousy (3 items); Dependency (5 items); Support (3 items); and Outgrew (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [390] "The ELLAS consists of a total of 21 items. Factor 1 (Educational Learning) includes 9 items, factor 2 (Friend-Based Learning) includes 6 items, factor 3 (Family-Based Learning) consists of 3 items, and factor 4 (Community-Based Learning) includes 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [391] "The Ethical Beliefs Index has 16 items; the Ethical Practices Index has 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [392] "The DBRSII- T consists of 35 items, with 7 items assigned to each of five subscales: (a) Inattention (Items 1, 15, 17, 22, 24, 29, 31), (b) Hyperactivity/ Impulsivity (Items 3, 6, 8, 10, 13, 14, 25), (c) Antisocial Conduct (Items 4, 16, 18, 20, 23, 30, 32), (d) Oppositional (Items 5, 12, 19, 26, 28, 33, 35), and (e) Anxiety (Items 2, 7, 9, 11, 21, 27, 34)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [393] "The Technology Acceptance Measure for Preservice Teachers (TAMPAST) consists of 16 items distributed over 5 factors: Perceived Usefulness (PU; 4 items), Perceived Ease of Use (PEU; 3 items), Subjective Norm (SN; 2 items), Facilitating Conditions (FC; 3 items), and Attitude Toward Computer Use (ATCU; 7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [394] "The Coercion Scale is a 24-item scale that includes 8 items related to direct victimization while in prison, 6 items related to witnessing victimization in prison, 9 items related to perceptions about the coerciveness and threatening nature of the prison environment, and 1 item related to being locked in solitary confinement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [395] "The University Attachment Scale consists of 8 items and 2 factors: group attachment (5 items) and member attachment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [396] "The Intervention Fidelity Checklists are a 3-component unit that includes: (1) transitions between settings or activities (5 items), (2) termination of a preferred activity (1 item), and (3) presence of a feared stimulus (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [397] "The Multidimensional Inventory of Black Identity--German Version consists of the following subscales: Centrality (4 items), Private Regard (3 items), Public Regard (4 items), Assimilationist Ideology (4 items), Humanist Ideology (4 items), Oppressed Minority Ideology (4 items), and Nationalist Ideology (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [398] "The Haley Transcultural Strength Assessment Interview Guide for Parent Caregivers is composed of Background Questions (10 items), Strength Attribute/Source (12 items), Importance of Strength Attribute/Source (11 items), and Other Things That Give Support (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [399] "PBI items were written to assess trait versus contextual beliefs for each of five belief components: longitudinal stability, cross-situational consistency, predictive validity, trait inference, and general understanding components. An 84-item version of the PBI was used in Study 2; a 77-item version was used in Study 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [400] "Physical abuse (7 items), Material abuse (11 items), Neglect (9 items), Sexual abuse (4 items), and Psychological abuse (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [401] "The General Self-Efficacy Scale consists of two subscales: a General Self-efficacy subscale (17 items) and a Social Self-efficacy subscale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [402] "The scale includes a total of 45 items, with 22 questions on the basic human needs subscale and 23 questions on the activities of daily living subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [403] "There are 30 items on the Work Ethic Traits Behavior Indicators Inventory, which formed 3 constructs: initiative (13 items), dependability (8 items), and interpersonal skills (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [404] "The Coping with School-related Stress Questionnaire consists of 42 items: Task-oriented coping (11 items); Emotion-oriented coping (11 items); Avoidance-oriented coping (11 items). The remaining 12 items are buffers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [405] "The Multicomponent Measure of Individualism and Collectivism consists of 6 items measuring independence, 8 items for competitiveness, 6 items for uniqueness, 6 items for considering the implications of one’s decision on others, 6 items for sharing successes, and 6 items for sharing failures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [406] "The measure consists of 2 mirror-image subtests (effectance and acquiescence) of 4 subscales each, totaling 12 items per subtest, yielding 24 items for the entire test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [407] "The Treatment Progress Inventory for Adolescents Who Sexually Abuse (TPI-ASA) is a clinician-completed measure that contains 64 items distributed across the following 9 dimensions: (a) inappropriate sexual behavior (9 items), (b) healthy sexuality (10 items), (c) social competency (8 items), (d) cognitions supportive of sexual abuse (6 items), (e) attitudes supportive of sexual abuse (6 items), (f) victim awareness (4 items), (g) affective/behavioral regulation (sexual and nonsexual, 8 items), (h) risk prevention awareness (7 items), and (i) positive family caregiver dynamics (6 items)."                                                                                                                                                                                                                                                       
##  [408] "The measure consists of 11 items total, with 6 items in the Task Value subscale and 5 items in the Self-Efficacy subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [409] "The Modified Children's Academic Intrinsic Motivation Inventory contains 12 items. The Enjoyment of Learning scale has 8 items and the Disinvestment in Schooling scale has 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [410] "The Gender-Equitable Men Scale has 24 items: The Inequitable Gender Norms subscale consists of 17 items, and the Equitable Gender Norms subscale has 7."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [411] "31 items dispersed across 3 subscales: Angry Rumination (10 items), Behavioural Displaced Aggression (10 items), and Revenge Planning (11 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [412] "The Authoritarianism-Conservatism-Traditionalism Scale consists of 36 items and three subscales with 12 items each: Authoritarianism, Conservatism, and Traditionalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [413] "The MIBI consists of 121 items: Centrality Scale (10 items), Private Regard subscale (7 items), Public Regard subscale (4 items), Ideology Scale (50 items), Nationalist subcale (13 items) Oppressed Minority Ideology subscale (13 items), Assimilationist subscale (12 items), and Humanist subscale (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [414] "The Restraint Questionnaire consists of a total of 11 items, with 6 items on the Diet and Weight History subscale and 5 items on the Concern with Food and Eating subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [415] "The College Alcohol Problem Scale (CAPS) contains 10 items with two subscales: Socio-Emotional Problems (6 items) and Community Problems (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [416] "The original version of the Drinking Context Scale consists of 23 items and the modified version consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [417] "The PSI consists of 14 items, divided into 3 subscales: Supportive (4 items), Therapeutic Coping (5 items), and Case Management (5 items). The original PSI consists of 75 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [418] "The ARQ consists of a total of 22 items. Confirmatory factor analysis resulted in four factors (Thrill-seeking [7 items]; Rebellious risk [5 items]; Reckless risk [5 items]; and Anti-social risk [5 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [419] "The TUFAQ consists of 14 items and 3 subscales: Perceived frequency of fear appeals referring to the consequences of failure (7 items), perceived frequency of fear appeals referring to the timing of forthcoming examinations (3 items), and perceived threat of fear appeals (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [420] "The 7-item Individually Valued States Measures comprise three constructs: Job dissatisfaction (2 items), Fatigue (3 items), and Tension (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [421] "\"Effort toward quantity\" was measured with 2 items, \"Effort toward quality\" was measured with 1 item, and \"Involvement\" was measured with 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [422] "The measure consists of 9 items total, with 5 items assessing Emotional eating beliefs and 4 items assessing Reactance to dietary advice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [423] "The YFAS consists of 20 items (the authors notes that 2 additional items assess clinical significance for a total of 22 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [424] "The abbreviated version of the O-LIFE retains the original four subscales called Unusual Experiences (12 items), Cognitive Disorganisation (11 items), Introvertive Anhedonia (10 items) and Impulsive Nonconformity (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [425] "The questionnaire consists of four subscales including a Parental Attributions Scale (24 items), Parental Beliefs of Working Memory Scale (12 items), Parental Home and School Involvement Scale (10 items), and Parental Academic Expectations Scale (2 items). These subscales were supplemented by a fifth subscale that describes parents' socio-economic background."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [426] "The Hogan Development Survey contains 154 items scored for 11 scales, each containing 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [427] "The 200-item Motives, Values, Preferences Inventory consists of 10 subscales with 20 items per scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [428] "The CAAFI is a 30-item measure (10 items for each of the aversion, attitudes, and familiarity factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [429] "26 items total: Intellectual Activity Domain (10 items), Creativity Domain (6 items), Meaningful Relationships (6 items), and Moral Activity (4 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [430] "The Preference for and Tolerance of the Intensity of Exercise Questionnaire contains 16 items with two factors: Preference (8 items) and Tolerance (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [431] "The Sexual Inhibition/Sexual Excitation Scales contains 45 items, divided into 3 factors: Inhibition due to the Threat of Performance Failure (14 items), Inhibition due to the Threat of Performance Consequences (11 items), and Sexual Excitation Factor (20 items). A short form (14 items) of the SIS/SES is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [432] "The School Attitude Assessment Survey consists of 20 items total, distributed across the following factors: Academic Self-Perceptions (5 items), Attitudes Toward School (6 items), Peer Attitudes (5 items), and Motivation/Self-Regulation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [433] "The Subjective Stress Scale (SSS) consists of 100 items. There are two alternate forms of the SSS with 15 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [434] "The final NCAPS item pool consists of 1,494 items: from 106 to 199 items per 10 personality traits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [435] "The 60-item Radio Communications Checklist of Leader Awareness (RCCOLA) consists of 20 items measuring each level of situation awareness (outstanding, typical, and poor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [436] "The 60-item Future Expectations of Likely Leader Awareness Scale consists of 20 items measuring each level of situation awareness (outstanding, typical, or poor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [437] "The Teacher Efficacy Scale has 30 items. The authors note that further research is suggested with a revised scale of 16-20 items. Analyses in all three phases of the test authors' study were based on responses to the 16 of the original 30 items that yielded significant loadings on one of the two factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [438] "The Initial Interest portion of the test consisted of 4 items; Performance Expectations, 3 items; Utility Value, 3 items; and Situational Interest, 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [439] "The Course Topic Interest Scale consists of 14 items divided into 4 subscales: Initial Interest (5 items), Utility Value (3 items), Situational Interest (5 items), and Maintained Situational Interest (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [440] "The Music Preference Scale includes 39 items across the following dimensions: Preference (6 items), Arousal and Activation (7 items), Communication (7 items), Self-reflection (5 items), Mood and emotion (6 items), Culture (4 items) and Repetition and Familiarity (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [441] "The MCML consists of 5 parts: Student Information (4 items), Teacher Information (8 items), For the Teacher or Diagnostician (5 items), Oral Language (8 items), and Academic Language (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [442] "There are four instruments that are collectively known as Carlson’s Prior Conditions Instruments: the Felt Needs/Problems Instrument contains 6 items; the Norms of the Social System Instrument contains 7 items; the Previous Practice Instrument contains 11 items; and the Innovativeness Instrument contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [443] "The 42 items of the measure are divided as follows: Institutional Responsiveness (IR; 11 items), Student Relations (SR; 7 items), Cultural Integration (CI; 9 items), Cultural Accessibility (CA; 7 items), Cultural Sensitivity (CS; 4 items), and Diversity Recognition (DR; 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [444] "The RSQ–P consists of 26 items divided into six subscales: Racial Pride (4 items), Racial Barriers (4 items), Egalitarian (4 items), Self-Worth (4 items), Negative (5 items), and Socialization Behaviors (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [445] "There are 3 items each in the autonomy support and structure-providing measures that make up the Teacher Instructional Style Rating Sheets (6 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [446] "EFA produced a 94-item Dutch version (compared to 118 items on the American version). CFA with a validation sample of Dutch children replicated 87 of the 94 items from the exploratory Dutch sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [447] "The RCADS consists of 47 items total and 6 subscales: Separation Anxiety Disorder (SAD; 7 items); Social Phobia (SP; 9 items); Obsessive-Compulsive Disorder (OCD; 6 items); Panic Disorder with agoraphobia (PD; 9 items); Generalized Anxiety Disorder (GAD; 6 items) and Major Depressive Disorder (MDD; 10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [448] "This is a 14-item measure with two subscales: the submission and authoritarian aggression sub-scale (7 items), and the conservatism sub-scale (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [449] "The CRBS consists of 21 items and four subscales: Perceived need/health care factors (9 items), Logistical factors (5 items), Work/time conflicts (3 items), and Comorbidities/functional status (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [450] "The measure consists of 13 items and three subscales: enhancement (5 items), risk (4 items), and disinhibition (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [451] "There are 9 items in the test, with 3 items representing each of the ambiguity scales (work method, scheduling, and performance criteria)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [452] "There are two 5-item scales (10 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [453] "The Positive and Negative Affect Schedule is composed of 20 items, with positive and negative mood each being measured by 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [454] "18 items; 3 items for each component category: Relationship Satisfaction, Commitment, Intimacy, Trust, Passion, and Love"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [455] "The MLQ 5X consists of a total of 36 items divided into six subscales: Charisma/Inspirational (12 items); Intellectual Stimulation (4 items); Individualized Consideration (4 items); Contingent Reward (4 items); Management-by-Exception-Active (4 items); and Passive/Avoidant (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [456] "The measure consists of 17 items and two subscales: Atmosphere and Support (9 items) and Participation in Decision Making (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [457] "The Augmented Religious Zeal Scale consists of 16 items and three subscales: the 5-item Religious Integrity subscale, the 3-item Religious Extremism subscale, and the 8-item Religious Jingoism subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [458] "The Poor Employee Well-Being and Mental Ill-Health Measure consists of 36 items and two subscales: Poor Employee Well-Being (PEWB; 19 items) and Mental Ill-Health (MIH; 17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [459] "ADHD Scale parallel forms: Form A = 18 items; Form B = 18 items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [460] "The 36-item Cognitive Triad Inventory for Children consists of three 12-item subscales: View of Self, View of World, and View of Future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [461] "The measure consists of 40 items total, with 8 items relating to each of the following scales: (a) initiation of interactions and relationships, (b) assertion of personal interests, (c) self-disclosure of personal information, (d) emotional support of others, and (e) management of interpersonal conflicts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [462] "The measure consists of 120 items divided into three sections of 40 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [463] "The Organizational Support for Development and Perceived Career Opportunity Scale consists of 9 total items (OSD = 6 items; PCO = 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [464] "The 40-item measure consists of 3 factors: the Absence of Anxiety factor (S-Anxiety-I, 10 items), the Presence of Anxiety factor (S-Anxiety-II, 10 items), and the Trait Anxiety factor (T-Anxiety, 20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [465] "Item distribution was as follows for the 24-item NBAP-Atypical Post-Injury Symptom Scale: Mania (13 items), Neutral (9 items), and Inappropriateness (2 items). Item distribution was as follows for the 24-item NBAP-Infrequency Scale: Mania (17 items), Inappropriateness (3 items), Pragnosia (2 items), Indifference (1 item), and Neutral (1 item) scales. For the NBAP-Contradictory Scale, nine pairs were finally selected, with nine Depression scale items being paired with items from the Mania (7 items), Inappropriateness (1 item), and Pragnosia (1 item) scales. The NBAP-Complementary Scale has twelve final pairs, with pair members both being selected from the same scale. These pairs were chosen from the Indifference (5 pairs), Mania (4 pairs), Pragnosia (1 pair), Depression (1 pair), and Neutral (1 pair) scales."                      
##  [466] "The ADQ consists of 38 items, divided into 7 subscales: Interpersonal Aspects of Care (8 items), Perceived Utility (Benefits/Costs and Efficacy (8 items); Perceived Severity (4 items), Perceived Susceptibility (4 items), Subjective Norms (6 items), Intentions (4 items), and Support/Earners (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [467] "The Big-Five Factor Markers includes a set of 100 items (20 items per personality factor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [468] "The Family Life Project Executive Function Task Battery consists of the 12-item spatial conflict task, the 17-item silly sound Stroop task, the 7-item go/no-go task, the 14-item item selection task, and the 4-item working memory span."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [469] "The G-ECR-R consists of 36 items, divided into two subscales: attachment anxiety (18 items) and avoidance (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [470] "The measure consists of 75 items total, with 15 items distributed across each of 5 subscales: Neuroticism, Extraversion, Agreeableness, Conscientiousness, and Openness to Experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [471] "The SPAI consists of 45 items, which includes a 32-item Social Phobia subscale and a 13-item Agoraphobia subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [472] "The scale consisted of 16 items for the first study and 17 items in the second study, divided among the following subscales: Initial Interest (4 & 5 items; across 2 studies), Performance Expectations (3 items), Situational Interest (5 items), Maintained Situational Interest (1 item), Utility Value (3 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [473] "The Time Integration Questionnaire is composed of 2 scales: Succession (22 items) and Integration (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [474] "The Short-TPQ consists of 44 items, divided into 3 scales: novelty seeking (13 items), harm avoidance (22 items), and reward dependence (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [475] "The EQ-i:S contains 35 self-report items designed to assess 4 broad dimensions of Bar-On’s (1997) EI model: Intrapersonal (10 items), Interpersonal (10 items), Adaptability (7 items), and Stress Management (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [476] "The Fear of Hypoglycemia Scale is composed of 15 items and divided into 3 factors: fear (7 items), avoidance (3 items), and interference (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [477] "The Experiences in Close Relationships Questionnaire—Revised consists of a total of 36 items and 2 subscales: Anxiety (18 items) and Avoidance (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [478] "The measure consists of 18 items total, distributed across 3 subscales: Perfectionist Self-Promotion (8 items), Nondisplay of Imperfection (6 items), and Nondisclosure of Imperfection (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [479] "18 elemental scales with 9 items each; 2 validity scales (Infrequency scale, and scale measuring overly positive self-presentation), 8 items each"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [480] "The Motivators of and Barriers to Health-Smart Behaviors Inventory consists of 127 items in the following subscales: Healthy Breakfast–Motivators (14 items), Healthy Breakfast–Barriers (8 items), Healthy Foods and Snacks–Motivators (20 items), Healthy Foods and Snacks–Barriers (15 items), Healthy Drinks–Motivators (16 items), Healthy Drinks–Barriers (13 items), Physical Activity–Motivators (22 items), and Physical Activity–Barriers (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                         
##  [481] "The French version of the measure consists of 15 items and 3 subscales of 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [482] "The Interdisciplinary Fitness Interview consists of three major sections: legal issues (5 items), psychopathological issues (11 items) and overall evaluation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [483] "The CKS consists of a total of 20 items and 5 subscales: Sensitivity to environment (4 items); Sensitivity to member needs (3 items); Strategic vision and articulation (7 items); Personal risk (3 items); and Unconventional behavior (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [484] "Focal measure items were allocated as follows: Focal measures pertaining to employee performance, 5 items; employee manager job satisfaction, 3 items; manager performance, 7 items; and customer satisfaction, 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [485] "The TIR-I and the TIR-II each have 43 items, of which 16 items are common to both tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [486] "There are 24 items in the revised version, forming 4 factors: Social support (7 items), Monitoring illness (5 items), Information (4 items), and Continuity of care (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [487] "46 items are distributed across 6 scales: Depression (8 items), Phobic Anxiety (7 items); Paranoid Ideation (9 items), Obsession-Compulsion (10 items), Somatization (7 items), and Hostility/Aggressivity (5 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [488] "The Questions on Life Satisfaction Modules consists of two 8-item modules (16 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [489] "The SL-ASIA is composed of 21 multiple choice questions that cover: language (4 items), identity (4 items), friendship choice (4 items), behaviors (5 items), generation/geographic history (3 items), and attitudes (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [490] "The measure consists of 12 total items distributed across 3 factors: Language (5 items), Media (3 items), and Ethnic Social Relations (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [491] "This is an 18-item measure with two 9-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [492] "The 30-item ARMSA-II consists of the 17-item Mexican Orientation subscale and the 13-item Anglo Orientation subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [493] "The measure consists of 21 items distributed across 3 subscales: Social (5 items), Appearance (6 items), and Stereotype (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [494] "The Black Ethnocentrism Scale is a 40-item scale with a 20-item Pro-Black subscale and a 20-item Anti-White subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [495] "The African American Acculturation Scale-Revised contains 47 items distributed across 8 subscales: Religious Beliefs & Practices (10 items), Preferences for Things African American (9 items), Interracial Attitudes (7 items), Family Practices (4 items), Health Beliefs & Practices (5 items), Cultural Superstitions (4 items), Racial Segregation (4 items), and Family Values (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [496] "The CMI consists of 48 items across 4 subscales: Politics and Law (12 items), Interpersonal Relations (14 items), Education and Training (7 items), and Business and Work (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [497] "30 items distributed (10 items each) across Coworker, Supervisor, and Hiring/Promotions subscales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [498] "The Modified Godfrey-Richman ISM Scale (M-GRISMS) consists of 50 items. The M-GRISMS More Perfect Scale consists of 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [499] "The measure consists of 17 items (6 items reverse-scored) across two factors labeled Concern with Acting Prejudiced and Restraint to Avoid Dispute."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [500] "The 10 items used in the final analyses were divided as follows: Internal Motivation to Respond Without Prejudice Scale (IMS; 5 items) and External Motivation to Respond Without Prejudice Scale (EMS; 5 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [501] "The Ethnic Identity Scale consists of 17 items, divided into 3 subscales: Exploration (7 items), Affirmation (6 items), and Resolution (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [502] "The Native American Acculturation Scale (NAAS) consists of 20 questions, covering language (5 items), identity (2 items), friendships (3 items), behaviors (4 items), generational/geographic background (5 items), and attitudes (1 item). A modified version of the NAAS provides 10 items in an interview format."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [503] "The Two Dimensional Black Acculturation Scale contains 42 items, divided into 2 factors: Out-Group Comfort (OC; 16 items) and Culture, Heritage, and Identity (CHI; 26 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [504] "The 29 EAAM items are divided among four scales: Assimilation (8 items), Separation (7 items), Integration (5 items), and Marginalization (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [505] "The Khmer Acculturation Scale consists of 69 items, divided into 2 subscales: the Khmer Orientation Scale (KOS, 33 items) and Anglo-American Orientation Scale (AOS, 36 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [506] "The Antisocial Personality Questionnaire consists of 125 items, divided into 8 factors: Self-Control, Self-Esteem, Avoidance, Paranoid Suspicion, Resentment, Aggression, Deviance, and Extraversion. Subscale lengths vary from 16 to 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [507] "The first subscale, the Supervisory Functions Scale (SFS), is a 9-item measure. The Supervisory Occasions Scale (SOS) is a 23-item measure. The Supervisory Embodiment Scale (SES) includes 19 items. Finally, the Deferred Imitation Scale (DIS) is a 5-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [508] "The Health Self-Efficacy Scale consists of 10 items, 5 items measuring efficacy expectations and 5 items measuring outcome expectations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [509] "This is a 16-item measure consisting of 2 subscales: Multicultural Teaching Skill (10 items) and Multicultural Teaching Knowledge (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [510] "The TRIM consists of 12 items, divided into 2 subscales: Avoidance (7 items) and Revenge (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [511] "11 items common to 19-item Form A and to 21-item Form B; 3 Student accountability items, 3 School accountability items, 2 Assessment is fun items, and 3 Assessment is ignored items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [512] "The SCoA-VI includes 33 items measuring four major conceptions (i.e., \"external factors\" [6 items], \"affect/benefit\" [8 items], \"improvement\" [11 items], and \"irrelevance\" [8 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [513] "The 20-item Dream Questionnaire consists of the 10-item Dream Recall Scale and the 10-item Attitude Toward Dreams Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [514] "The Dream Intensity Scale consists of 20 items (The author notes that 18 of these 20 items could form four scales, each comprising four or five indicator variables.)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [515] "The Metacognitive Awareness of Reading Strategies Inventory contains 30 items, divided into 3 factors: Global Reading Strategies (13 items), Problem-Solving Strategies (8 items), and Support Reading Strategies (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [516] "The final instrument contains 47 specific behaviors grouped into 5 scales: Sensory-Motor (7 items), Social-Relationship to People (9 items), Affectual Response (5 items), Sensory Response (16 items), and Language (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [517] "There are 15 items in the Quality of Communication Experience Scale, with 5 items each in the dimensions of Clarity, Responsiveness, and Comfort."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [518] "The questionnaire consists of a total of 8 items and 2 subscales: Confidant support (5 items) and Affective support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [519] "The measure consists of 57 items total and two subscales: the Irrational Food Beliefs subscale (41 items) and the Rational Food Beliefs subscale (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [520] "The Structured and Scaled Interview to Assess Maladjustment has 45 items to assess deviant behavior and 15 items cover the degree of environmental stress, prognostic issues, and aspects of positive mental health."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [521] "The longer form of the HSS contains 13 items, the shorter form 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [522] "The measure consists of 9 items across three subscales: Euphoric/Social (3 items), Dysphoric (3 items), and Sexual Disinhibition (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [523] "The Alcohol Expectancies Regarding Sex, Aggression, and Sexual Vulnerability Questionnaire consists of 4 domains with 25 items rated for 3 targets. The same 25 items are responded to in relation to the effects of alcohol on the self, women, and men separately (resulting in 75 items in all)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [524] "The Family and Friends Social Support Measures consist of two 7-item scales (14 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [525] "The Brief Assessment Schedule is composed of 29 items: 8 items for the Organic Brain Syndrome Scale and 21 items for the Depression Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [526] "The SPSRQ consists of 48 items, divided into 2 scales: Sensitivity to Punishment (24 items) and Sensitivity to Reward (24 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [527] "The T-ASI SR Net has a range of 68 - 215 items, including 39 items that track current activity only (i.e., the past 30 days)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [528] "The TSI-ASI SR IVR has a range of 68-215 items, including 39 items that track current activity only (i.e., the past 30 days)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [529] "The SCQ-S consists of 40 items in an 8-factor model: Affect Reduction (8 items), Stimulation/State Enhancement (5 items), Health Risks (3 items), Taste/Sensorimotor (7 items), Social Facilitation (5 items), Weight Control (5 items), Craving/Addiction (3 items), and Boredom Reduction (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [530] "The Alcohol and Drug Consequences Questionnaire contains 29 items distributed across 2 subscales: Costs of change (14 items), and Benefits of change (15 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [531] "116 items distributed across 16 scales (58 items for mother scales -- Mother's Aggression to Subject [11 items], Subject's Aggression to Mother [4 items], Mother's Aggression to Father [14 items], Mother's Competence [10 items], Mother's Affection [6 items], Mother's Strictness [6 items], Mother Identification [3 items], Mother's Indulgence [4 items]); 58 items for complementary Father scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [532] "The measure contains 30 items (16 items pertaining to video-games and 14 items pertaining to gambling behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [533] "The GAMTOMS includes the following instruments: (a) Gambling Treatment Admission Questionnaire/Interview (GTAQ/GTAI; 162 items), (b) Gambling Treatment Discharge Questionnaire/Interview (GTDQ/GTDI; 88 items), (c) Gambling Treatment Services Questionnaire (GTSQ), and (d) Gambling Treatment Follow-up Questionnaire/Interview (GTFQ/GTFI; 95 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [534] "The shortened version of the AIMS consists of 22 items (the authors note that the measure can be reduced to 18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [535] "20 items total: 5 items in each of the following subscales: Negative affect, Social/positive, Physical and other concerns, and Withdrawal and urges"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [536] "The Adolescent Drug Abuse Diagnosis is a 150-item instrument. Preceding the nine ADAD problem areas there is a 20-item sociodemographic section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [537] "The scale consists of 5 items: 2 items measure social cohesion and 3 measure social control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [538] "The measure consists of 7 items assessing two factors, Exploration (4 items) and Absorption (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [539] "This 120-item measure consists of 6 subscales (20 items per scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [540] "The State-Trait-Cheerfulness Inventory--Trait Form consists of three versions: component or long form (with 106 items), a standard form (with 60 items) and a short form (with 30 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [541] "Version 3 of the CoSS contains 48 items. There is also a 58-item Version 5."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [542] "There are 36 items on the test. The two pages of each form are usable as alternate 18-item forms. The items consist of sentence stems that subjects are instructed to complete."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [543] "A 12-item Block Pattern Analysis Test was used in the analysis with control and clinical subjects. However, the authors note that the test has been expanded to 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [544] "The MSMHS consists of a total of 34 items and 5 subscales: Perceived Racism/Discrimination (10 items); Depression (9 items); Well-Being (7 items); Anxiety (5 items); and Suicidal Thoughts (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [545] "The OADS consists of a total of 36 items and four subscales: Cranky Dependency (10 items); Discomfort with Aging (8 items); Positive Attributes of Aging (8 items); and Negative Expectations of Disability (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [546] "The MITS consists of a total of 37 items divided into two subscales: Negative Transference Reactions (NTR; 25 items) and Positive Transference Reactions (PTR; 12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [547] "Client Resistance Scale consists of 25 items across 5 subscales: Opposing Expression of Painful Affect (7 items), Opposing Recollection of Material (7 items), Opposing Therapist (7 items), Opposing Change (7 items), and Opposing Insight (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [548] "The SLQ-R consists of a total of 30 items and 3 subscales: Self and Other Awareness (12 item), Motivation (8 item), and Dependency-Autonomy (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [549] "The scale consists of a total of 32 items. Factor 1 includes 15 items tapping into lack of concern regarding others' reactions to one's different ideas, actions, etc.; the 11 items of Factor 2 concern a person's desire to not always follow rules; and the 6 items of Factor 3 reflect one's willingness to publicly defend his or her beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [550] "The SSI consists of 25 items and 3 subscales: Attractive (7 items), Interpersonally Sensitive (8 items), and Task Oriented (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [551] "The PSI includes 32 items and three distinct constructs: problem-solving confidence (11 items), approach-avoidance style (16 items), and personal control (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [552] "The Survey of Heterosexual Interactions for Females contains 4 questions on dating frequency, 20 heterosocial situations for subjects to rate, and 1 item requesting the subject to rate her physical attractiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [553] "Two 100-item forms of the inventory were compiled (SAI-A and SAI-B). In addition, a 30-item form (SAI-J) was derived from SAI-A to represent the cluster dimensions and total score of the longer form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [554] "The measure consists of 20 items and 2 subscales: the 11-item Laxness Subscale and the 9-item Overreactivity Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [555] "The Multilevel Assessment Instrument has 135 items and 7 scales: Physical Health (31 items), Cognition (15), Activities of Daily Living (16), Time Use (19), Social Interaction (16), Personal Adjustment (14), Perceived environment (24)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [556] "The Sociocultural Attitudes Towards Appearance Questionnaire—3 consists of 30 items, divided into 4 subscales: Internalization-General (9 items), Information (9 items), Pressures (7 items), and Internalization-Athlete (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [557] "The Alcohol Attitude Scales are composed of two 10-item subscales (for a total of 20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [558] "The Adolescent Activities Checklist consists of 100 items, with 50 items measuring each pleasantness and unpleasantness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [559] "Three forms of the Scriptural Literalism Scale were developed: A 16-item version (SLS-C) and two 12-item versions (SLS-A and SLS-B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [560] "The Shepherd Scale consists of 2 subscales: the Belief component was comprised of 13 items, and the Christian Walk component comprised of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [561] "15 items distributed across two subscales: Therapist Responsiveness (8 items), and Image Concerns (7 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [562] "The full DISC-P (parent) contains roughly 3,000 questions and DISC-Y (youth) contains 2,930 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [563] "The SRQ contains 18 items: The first 6 items collect data on sex, age, race, school, religious affiliation, and medical diagnosis; 12 additional items assess beliefs, attitudes, and needs on various Likert scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [564] "The Indiscriminate Proreligiousness Scales are composed of 2 scales: personal (Pro-P, 12 items) and congregational (Pro-C, 16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [565] "The GPS consists of 10 items, with 5 items each measuring both obsessive passion and harmonious passion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [566] "This is an 18-item measure. The subscales are as follows: 1) craving (7 items), 2) physical symptoms (4 items), 3) stimulation (4 items), and 4) psychological symptoms (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [567] "The PIC Revised Content Scales include a total of 280 items and 10 scales: Somatic concern (40 items), Family relations (35 items), Asocial behavior (30 items), Aggression (25 items), Intellectual/physical development (25 items), Withdrawal (25 items), Anxiety (30 items), Reality distortion (25 items), Excitement (15 items), and Social skills (30 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [568] "This measure consists of 23 items, but a factor analysis yielded an 18-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [569] "The Washington State Juvenile Court Assessment consists of 132 items and 13 domains: Criminal History (12 items), Demographics (1), School (15), Use of Free Time (5), Employment (8), Relationships (8), Family (20), Alcohol and Drugs (10), Mental Health (13), Attitudes/Behaviors (11), Aggression (6), Skills (11), and Sex Offender: Intensive Parole (12)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [570] "The 3 final parent scales are: Trust (14 items), Communication (12 items), and Alienation (5 items). The final peer scales are: Communication (12 items), Trust (10 items), and Alienation (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [571] "The measure consists of 21 items divided across three factors: Concentration Problems (CP; 7 items), Disruptive Behavior (DB; 9 items), and Prosocial Behavior (PB; 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [572] "The BTPS consists of a total of 28 items divided into two subscales: Past orientation (14 items) and Future orientation (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [573] "The 10-item experience of violence measure consists of the 5-item physically violent behaviors indicator, the 3-item threats of violence indicator, and the 2-item vicarious experience of workplace violence indicator."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [574] "The measure consists of 14 scales: Prior Stressors (20 items), Childhood Family Environment (15 items), Preparedness (14 items), Difficult Living and Working Environment (21 items), Concerns About Life and Family Disruptions (14 items), Deployment Social Support (12 items), General Harassment (7 items), Sexual Harassment (7 items), Perceived Threat (15 items), Combat Experiences (20 items), Aftermath of Battle (17 items), Postdeployment Social Support (15 items), Postdeployment Stressors (23 items), and Nuclear Biological Chemical Exposures (20 items)."                                                                                                                                                                                                                                                                                          
##  [575] "The Adult Religious Conversion Experiences Questionnaire has 54 items across 6 subscales: Crisis subscale (11 items), Quest subscale (8 items), Encounter subscale (6items), Interaction subscale (8 items), Commitment subscale (9 items, and Consequences subscale (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [576] "The Brazil-Experienced Missionary Kids' (MK) Value Scales consists of four scales: Attitudinal Worldmindedness (5 items), Cross Cultural Involvement as Youth (8 items), Christian Commitment (16 items), and Religious Interaction in School (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [577] "The 19-item Dimensions of Religious Ideology consists of 3 scales of 6 questions each (Orthodoxy, Fanaticism, and Importance), and 1 single-question scale (Ambivalence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [578] "The Five-Dimension Scale of Religiosity consists of 23 items and the following 5 scales: the 5-item Ideological Scale, the 4-item Intellectual Scale, the 5-item Ritualistic Scale, the 5-item Experiential Scale, and the 4-item Consequential Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [579] "The Experiential Permeability Inventory consists of 55 items, divided into 4 factors: Odd and Eccentric (16 items), Unrestricted Self (11 items), Rigid (12 items), and Superficial (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [580] "The test includes 8 items making up a confusion scale, 10 items that are true indicators of schizophrenia, and 15 items that are not true indicators of schizophrenia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [581] "The AISS had 20 items, with two subscales of 10 items each, Intensity and Novelty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [582] "The MPS includes 45 total items, with three subscales of 15 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [583] "The most recent version of the instrument contains 50 questions divided into three sections. The Drug Use Section contains 12 questions, while the Sexual Practices Section contains 27 questions. The last section of the ARI-I is currently under revision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [584] "The 36-item Religious Problem-Solving Scale consists of three styles (Collaborative, Self-directing, and Deferring), which are measured by 12 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [585] "The Pictorial Scale of Perceived Competence and Social Acceptance for Young Children contains 24 items for both versions, preschool-kindergarten and first and second grades. The teacher version contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [586] "The Mysticism Scale--Research Form D consists of 32 items, divided into 2 factors: a general mystical experience factor (20 items) and a religious interpretation factor (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [587] "The total scale includes 40 items and 8 subscales: Global positive (5 items); Social & physical pleasure (5 items); Social expressiveness (5 items); Sexual enhancement (5 items); Power & aggression (6 items); Tension reduction & relaxation (5 items); Cognitive & physical impairment (5 items); and Careless unconcern (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [588] "The total scale consists of 40 items, with 8 items each representing the M+, F+, M-F+, and M- scales and 4 items representing each of the two F- scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [589] "16 items for TESI-C; 10 items for TESI-C Brief Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [590] "The Death Perspectives Scales consist of the following: Death as Pain and Loneliness (6 items), Death as an Afterlife-of-Reward (6 items), Indifference toward Death (5 items), Death as Unknown (6 items), Death as Forsaking Dependants plus Guilt (5 items), Death as Courage (6 items), Death as Failure (5 items), and Death as a Natural End (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [591] "The test consists of a total of 83 items and 11 factors: Revenge (10 items); Freedom from obsession (4 items); Affirmation (9 items); Victimization (5 items); Positive vs. Negative feelings (26 items); Avoidance (8 items); Toward God (5 items); Conciliation (12 items); and Holding a grudge (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [592] "19 Items distributed across following factors: Psychosocial Determinism (7 items), Religious-Philosophical Determinism (6 items), and Libertarianism (4 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [593] "The 24-item Multidimensional Locus of Control Scales consists of 3 scales (Internal, Powerful Others, and Chance--I, P, and C) measured by 8 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [594] "The Right-Wing Authoritarianism Scale, Short Version consists of 14 items, divided into 2 subscales: Submission and Authoritarian Aggression (7 items) and Conservatism (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [595] "48- and 36-Item versions. In 48-item version there were 12 items each for Elective Selection, Loss-Based Selection, Optimization, and Compensation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [596] "This is a 37-item measure. The Stimulation/ Perceived Dominance scale has 13 items; the Pleasurable Disinhibition scale, 14 items; and the Behavioral Impairment scale, 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [597] "The International Positive and Negative Affect Schedule—Short Form consists of 10 items, with 5-item Positive Affect and Negative Affect subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [598] "This 19-item measure contains the following 5 Factors: Illusion of Control (7 items), Need Money (4 items), Control Over Gambling (3 items), Belief in Systems (2 items), and Cynicism About Winning (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [599] "This measure consists of 30 items, with 10 items comprising each of the measure's three subscales: sexual-esteem, sexual-depression, and sexual-preoccupation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [600] "The measure has a total of 12 items, 3 items for each of the four dimensions of the assessment: prosocial, aggressive, shy/withdrawn, and disruptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [601] "The 39-item Adolescent Assertion Expression Scale is divided into 3 factors: assertiveness (11 items), aggressiveness (11 items), and submissiveness (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [602] "The Loneliness and Social Dissatisfaction Questionnaire consists of 16 items measuring feelings of loneliness/social dissatisfaction and 8 \"filler\" items (24 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [603] "The Body Identification Questionnaire consists of 40 items (14 body items and 26 items which represent other aspects of the self and extended self)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [604] "85 neuropsychological assessment tasks; 104-item Behavioral Interview and Checklist; 25 item demographic and history interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [605] "The Adverse Consequences Measure is composed of 43 items, with 20 items measuring interpersonal and social consequences and 23 items measuring personal and symptomatic drinking consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [606] "The Utrecht-Management of Identity Commitments Scale—Dutch Version is comprised of three subscales: Commitment (5 items), In-depth Exploration (5 items), and Reconsideration of Commitment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [607] "The Utrecht-Management of Identity Commitments Scale--French Version contains three subscales: Commitment (5 items), In-depth Exploration (5 items), and Reconsideration of Commitment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [608] "The Outcomes Expectancies Scale contains 34 items across 2 subscales: Benefits (21 items) and Costs (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [609] "The Cocaine Negative Consequences Checklist contains 75 items (Physical Health subscale = 19 items; Emotional/Psychological subscale = 26 items; Social/Relationship subscale = 20 items; Legal/Financial subscale = 10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [610] "The CTSQ consists of 10 items: 5 items to assess reexperiencing and 5 items to assess hyperarousal symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [611] "The FMI consists of 30 items. A short version also exists, consisting of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [612] "The long form of the EEQ includes 57 items while the short form includes 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [613] "The final 30-item scale contains 10 items for each of the three subscales: the Personal efficacy scale, the Interpersonal control scale, and the Sociopolitical control scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [614] "The SSSP consists of two sections: interactions with work supervisors and interactions with co-workers. Each of these sections consists of three subsections. The work supervisor subsection consists of 20 items; the co-worker subsection contains 19 items. The third subsection addresses 15 maladaptive social behaviors the individual might exhibit in relation to work supervisors and 16 inappropriate behaviors that might be exhibited relative to co-workers."                                                                                                                                                                                                                                                                                                                                                                                               
##  [615] "The ECCOS contains 102 items: Extraversion (12 items), Tough−mindedness (12 items), Anxiety (12 items), Impulsiveness (19 items), Venturesome (16 items), Empathy (19 items), and Social Desirability (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [616] "The Multidimensional Measure of Leader-Member Exchange consists of 11 items, divided into 4 subscales: Contribution (2 items); Loyalty (3 items); Affect (3 items); and Professional respect (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [617] "25 Items: (7 items), confidence in Sport Psychology Consultation (8 items), personal openness (6 items), and cultural preference (4 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [618] "The ADI consists of 39 items, divided into 3 scales: Depression (Dep, 19 items), Feigning (Fg, 8 items), and Random (Rd, 4 items). Eight additional items are included as potential distracters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [619] "The Dating and Assertion Questionnaire is an 18-item measure, with a 9-item dating subscale and a 9-item assertion subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [620] "The Full Form of the BTPI consists of 210 items and the Symptom Monitoring Form consists of 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [621] "The Carroll Depression Scale–Revised consists of 61 items and the Brief Carroll Depression Scale consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [622] "The CDI 2: Self-Report consists of 28 items, while the CDI 2: Self-Report (Short) version contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [623] "The CAARS:SV includes the same 12-item ADHD Index of the long and short CAARS forms and contains the DSM-IV™ ADHD Symptom Subscales (18 items that relate to DSM-IV™ criteria for ADHD)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [624] "The Conners CBRS includes the following versions: Parent (203 items), Teacher (204 items), and Self-Report (179 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [625] "The Conners Early Childhood forms are available for use by both parents (Conners EC–P, 190 items) and teachers/childcare providers (Conners EC–T, 186 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [626] "The EQ-I contains 133 items. A 125-item EQ-i, with Negative Impression items omitted, is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [627] "The 80-item clinician-completed QuikScore™ form is a self-scoring form used to administer the JBC. The JBC self-appraisal is an 80-item self-report that asks individuals to evaluate their behavioral characteristics. It consists of 14 factor scales that assess the individual's tendency towards different polarities. The JBC checklist obtains a comprehensive snapshot of an individual's behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [628] "Long version: 96 items covering 11 scales. Short version: 24 items covering 11 scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [629] "The long version is a diagnostic tool for older adults suspected of having a memory deficit. It consists of a 15-item word list with five learning trials, and a 13-component complex geometric figure. The Short version consists of a 10-item word list with three learning trials and a simple 9-component geometric figure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [630] "The POMS 2-A comprises 65 items, and the POMS 2-Y comprises 60. The POMS 2 short versions contain a subset of 35 items from the full-length versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [631] "The FRI consists of 50 items printed on small cards, which may be used to describe self or various family members. 25 items have positive valences (+) and 25 items have negative valences (-)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [632] "This is a 14-item measure, with 9 items measuring shyness and 5 items measuring sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [633] "Situations on the PSI were derived from the narrative descriptions of the following therapeutic community clients: 54 in the reentry phase recounting 2-5 days worth of experiences and 43 in the posttreatment phase. Five scales represent skill areas important for the prevention of continued drug use: (a) skills to avoid drug use (5 items); (b) skills to avoid alcohol use (7 items); (c) consequential thinking skills (2 items); (d) relapse coping skills (4 items); and (e) conventional social, problem-solving, and stress-coping skills (29 items). Four items were dropped from analysis because they did not contribute to subscale reliability."                                                                                                                                                                                                     
##  [634] "The Inventory of Interpersonal Problems—Personality Disorders-25 consists of 5 subscales measured by 5 items each totaling 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [635] "The DAFS taps 7 distinct dimensions: Time orientation (8 items); Communication abilities (17 items); Transportation (13 items); Financial skills (21 items); Shopping skills (8 items); Eating skills (5 items); and Dressing/grooming skills (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [636] "The Self-Harm Behavior Questionnaire is divided into 4 sections. Part A (6 items)asks about intentional self-harm that the individual did not identify as suicidal in nature; Part B (5 items) asks about suicide attempts; Part C (6 items) asks about suicide threats; and Part D (5 items) about suicide ideation. Within each section follow-up questions were designed to determine the specific type of behavior, thought, or verbalization being reported."                                                                                                                                                                                                                                                                                                                                                                                                       
##  [637] "The DOSE has two sections. The first section consists of 25 items, while the second section contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [638] "The standard CBQ includes 195 items and 15 scales. The very short CBQ includes 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [639] "The PANAS-C-P includes a total of 27 items and two subscales: Positive Affect (12 items) and Negative Affect (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [640] "The survey includes a total of 12 items, with 4 items each representing Job Control, Psychological Demands, and Physical Demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [641] "The measure includes the following number of items for each of the six support scales: 45 items for the Mother scale, 45 items for the Father scale, 46 items for the Sibling scale, 51 items for the Peer scale, 42 items for the School Personnel scale, and 15 items for the Community scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [642] "The Kauai Recovery Index consists of 24 items measuring three primary clusters of PTSD symptoms: reexperiencing (6 items), avoidance (7 items), and arousal (6 items). Additional items represented age-specific (2 items) and associated features (3 items) that did not pertain to PTSD symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [643] "The modified PNI consists of 25 items in total, though the authors note that factor analyses were performed on only 18 of the 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [644] "The Filial Responsibility Scale contains 8 items (with global and specific filial responsibility being measured by 4 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [645] "This is a 59-item measure. The 29-item Subjective Experience of Distress Scale is the aggregation of one 8-item and three 7-item WAI subscales. The 30-item Self-Restraint Scale is a composite of two 7-item and two 8-item WAI subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [646] "The Grammatical Awareness Tasks consist of three oral tasks: Sentence Analogy Task (8 items), Word Analogy Task (8 items), and Productive Morphology Task (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [647] "The measure consists of 42 items distributed across 5 scales: Conflict with Parent (12 items), Involvement with Parent (12 items), Son's Regard for Parent (8 items), Parent's Regard for Son (5 items), and Structure (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [648] "The Attention Problems, Negative Behavior, and Social Withdrawal scales consist of 9, 9, and 5 items, respectively (for a total of 23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [649] "The Conflicting Mental Representation Stories consist of a story and then two interviews, a week apart. The first interview has 29 items. The second interview also has 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [650] "The Self-Liking/Self-Competence Scale is composed of 20 items, 10 items comprising the self-liking subscales and 10 items for the self-competence subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [651] "The Student Readiness Inventory is composed of 95 items. The inventory taps ten distinct constructs: General Determination (5 items), Academic Discipline (10 items), Goal Striving (10 items), Commitment to College (10 items), Study Skills (12 items), Communication Skills (10 items), Social Activity (10 items), Social Connection (11 items), Academic Self Confidence (9 items), and Emotional Control (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [652] "The Attitudes Toward Statistics Scale contains two subscales: Attitude Toward Field of Statistics (FIELD subscale; 20 items) and Attitude Toward Course (COURSE subscale; 9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [653] "30 items—Online format: 24 items with four most-to-least trait options, 6 items with 2 adjective options."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [654] "The 63-item Job Descriptive Index-Mandarin Chinese Version consists of 5 facet scales: work (18 items), pay (9 items), promotions (9 items), supervision (9 items), and coworkers (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [655] "The Children and Adolescent Social and Adaptive Functioning Scale consists of 24 items. It contains 4 subscales, with 6 items in each. The subscales are School Performance, Peer Relationships, Family Relationships, and Home Duties/Self-Care."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [656] "The IRMA includes 40 rape myth items and 5 \"filler\" items. The subscales of the IRMA are as follows: SA, \"She asked for it\" (8 items); NR, \"It wasn't really rape\" (5 items); MT, \"He didn't mean to\" (5 items); WI, \"She wanted it\" (5 items); LI, \"She lied\" (5 items); TE, \"Rape is a trivial event\" (5 items); DE, \"Rape is a deviant event\" (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [657] "The measure consists of 20 items and four subscales: Fabrication/Exaggeration (8 items), .83 for Ulterior Motives (5 items), .81 for Natural Heterosexuality (4 items), and .71 for Woman’s Responsibility (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [658] "Section A contains 5 items; Section B contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [659] "The final version of the 30-item Physical Self-Perception Profile consisted of five 6-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [660] "This is 18-item measure consists of 3 factors: Vocational Mentoring (8 items), Role Modeling (7 items), and Social Support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [661] "The Big Five Questionnaire consists of 60 items, with 12 items measuring each of the Big Five personality traits (Neuroticism, Extraversion, Openness, Agreeableness, and Conscientiousness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [662] "The EPQ-R long form contains 100 items, the short form 57 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [663] "The Junior Eysenck Personality Questionnaire contains 81 items. A 97-item JEPQ was also used to acquire data in many countries (Eysenck, Barrett, & Saklofske, 2021)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [664] "Forms E & S contain 70 items; Form H contains 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [665] "The Edwards Social Desirability Scale contains a 79-item and 39-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [666] "The 108-item HEXACO Personality Inventory--French Version utilizes 18 items to measure each of its 6 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [667] "The measure includes 108 total items with 18 items measuring each of the 6 subscales: Honesty-Humility (H), Emotionality (E), extraversion (X), Agreeableness (A), Conscientiousness (C), and Openness to Experience (O)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [668] "This 12-item measure consists of the 4-item EW subscale and the 8-item EC subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [669] "The Short Internalized Homonegativity Scale is a 12-item measure with three 4-item subscales (Public Identification as Gay, Sexual Comfort With Gay Men, and Social Comfort With Gay Men)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [670] "'Fatalism' consists of 6 items assessing fatigue with safer sex and fatalistic beliefs about maintaining HIV-negative serostatus. 'Optimism' includes 6 items assessing optimistic attitudes toward medical seriousness of HIV infection and reduced concern about HIV risk due to highly active anti-retroviral therapies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [671] "The measure consists of five 10 item questionnaires, the same 10 items are responded to in reference to five different target groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [672] "Items on this adapted scale fall within one of two subscales: Controlled Motivation (8 items) and Self-Determined Motivation (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [673] "The final questionnaire consists of 18 items with three factors: Know and Care (7 items), Care and Act (6 items), and Act and Know (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [674] "The 17-item Rank Style with Peers Questionnaire (RSPQ) comprises three nearly independent scales: Dominant Leadership (DL; 5 items), Coalition-Building (CB; 7 items), and Ruthless Self-Advancement (RSA; 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [675] "The 37-item GRCS-I consists of the following factors: Factor 1 (success, power, competition; 13 items); Factor 2 (restrictive emotionality;(10 items); Factor 3 (restrictive affectionate behavior between men; 8 items); and Factor 4 (conflicts between work and family relations; 6 items). The 16-item GRCS-II consists of the following factors: Factor 1 (success, power, and competition; 6 items); Factor 2 (homophobia; 4 items), Factor 3 (lack of emotional response; 3 items); and Factor 4 (public embarrassment from gender-role deviance; 3 items)."                                                                                                                                                                                                                                                                                                      
##  [676] "The measure consists of 120 items and 10, 12-item subscales: Recognition of Emotion in the Self, Nonverbal Emotional Expression, Recognition of Emotion in Others, Empathy, Regulation of Emotion in the Self, Regulation of Emotion in Others, Intuition versus Reason, Creative Thinking, and Mood Redirected Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [677] "The 12-item BAFL-R consists of the 7-item Communicative Function and 5-item Epistemic Function subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [678] "The MWEP is a 65-item self-report measure tapping seven conceptually distinct dimensions. Each of the seven dimensions is assessed with 10 items, with the exception of delay of gratification (7 items) and wasted time (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [679] "The 60-item PSI contains 6 subscales of 10 items each: Communication, Use of Time, Teaching, Frustration, Satisfaction, and Information Needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [680] "This version of the PARQ contains 24 items: The warmth/affection scale contains 8 items; the hostility/aggression and indifference/neglect scales each contain 6 items, and the undifferentiated rejection scale contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [681] "This version of the PARQ contains 24 items: The warmth/affection scale contains 8 items; the hostility/aggression and indifference/neglect scales each contain 6 items, and the undifferentiated rejection scale contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [682] "The Adult PARQ: Mother Version contains 60 items. The warmth/affection scale contains 20 items; the hostility/aggression and indifference/neglect scales each contain 15 items, and the undifferentiated rejection scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [683] "The Adult PARQ: Father Version contains 60 items. The warmth/affection scale contains 20 items; the hostility/aggression and indifference/neglect scales each contain 15 items, and the undifferentiated rejection scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [684] "The Homework Management Scale--Revised Version consists of 22 items and 5 subscales: (a) Arranging the Environment (5 items), (b) Managing Time (4 items), (c) Handling Distraction (5 items), (d) Monitoring Motivation (4 items), and (e) Controlling Emotion (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [685] "The ADSWS contains 25 items, with 5 dimensions measured by 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [686] "The measure consists of 30 items measuring 5 factors (a 20-item short form is also available)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [687] "The revised scale is comprised of 19 items divided into 3 subscales: personal self-esteem (9 items), parentally derived self-esteem (5 items), and peer-derived self-esteem (5 items). The parent version consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [688] "The CES consists of 30 items and 4 subscales: Advocacy Self-Efficacy (2 items); Community Self-Efficacy (5 items); Caregiving Self-Efficacy (7 items); and Personal Self-Efficacy (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [689] "The Achievement Risk-Preference Scale is composed of 40 items (male version) or 50 items (female version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [690] "The Achievement subscale consists of 12 items and the Independence subscale consists of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [691] "The Daydreaming Questionnaire contains 130 items in two sections: General Daydreaming (37 items) and Fantasy (93 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [692] "The scale consists of 28 items and two scales: AFNE (15 items) and TISC (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [693] "The Social Anxiety Scale for Children contains two subscales: Fear of Negative Evaluation (6 items) and Social Avoidance & Distress (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [694] "The inventory consists of 100 items and 13 subscales (each scale consisting of 7 or 8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [695] "The S-R Inventories of Hostility are composed of 14 items with 10 response modes for each item, resulting in a total of 140 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [696] "The measure consists of 76 items divided amongst the following domains: the Satisfaction domain (11 items), the Comfort domain (22 items), the Resilience domain (19 items), the Risk avoidance domain (14 items), and the Achievement domain (10 items). A 45-item Parent Report Form (PRF-45) is also available that has the same items as the CHIP-CE Child Report Form (CRF)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [697] "The fear subscale consists of 7 items while the hostility subscale consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [698] "The Numbers and Shapes Test includes 38 items; the Measurement Test includes 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [699] "The High School Chemistry Self-Efficacy Scale consists of 16 items and 2 subscales: Chemistry self-efficacy for cognitive skills (CSCS; 10 items) and Self-efficacy for chemistry laboratory (SCL; 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [700] "This measure consists of 35 items and four factors: Instrumental help seeking (9 items), Executive help seeking (10 items), Avoidance of help seeking (9 items), and Perceived benefits of help seeking (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [701] "The Mathematics Value Inventory consists of 28 items with four subscales (7 items in each subscale):"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [702] "The 23 items of this measure form 3 domains: activity limitation (5 items), symptoms (10 items), and emotional function (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [703] "The Computer Usage Check List has 37 items (14 anxiety-plus items, 12 anxiety-minus items, 7 items describing a sense of helplessness, and 4 hostility items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [704] "The Computer Anxiety Scale—Short Form is composed of 18 items. Two major factors were revealed: Fears Related to Computer Usage Skills (a negative factor consisting of 11 items) and Self Concept based on Computer Skills (a positive factor consisting of 7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [705] "The Functional Status II (Revised) has both a long (43-item) and a short (14-item) version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [706] "The Child PARQ: Father Version contains 60 items: The warmth/affection scale contains 20 items; the hostility/aggression and indifference/neglect scales each contain 15 items, and the undifferentiated rejection scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [707] "The Adult Parental Acceptance-Rejection/Control Questionnaire: Father Version contains 73 items: The Parental Acceptance-Rejection Questionnaire (PARQ) contains 60 items and the Parental Control Scale (PCS) contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [708] "The Adult Parental Acceptance-Rejection/Control Questionnaire: Mother Version contains 73 items: The Parental Acceptance-Rejection Questionnaire (PARQ) contains 60 items and the Parental Control Scale (PCS) contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [709] "This test contains 73 items: 60-items in the Parental Acceptance-Rejection Questionnaire and 13 in the Parental Control Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [710] "This test contains 73 items: 60-items in the Parental Acceptance-Rejection Questionnaire and 13 in the Parental Control Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [711] "This test contains 73 items: 60-items in the Parental Acceptance-Rejection Questionnaire and 13 in the Parental Control Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [712] "The measure consists of 16 items, with 8 items measuring both performance orientation and learning goal orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [713] "The SELSA consists of three subscale: Romantic loneliness (12 items), Family loneliness (11 items), and Social loneliness (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [714] "The 15 items of this measure are divided into three subscales of 5 items each: social, family, and romantic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [715] "The Feedback Environment Scale is composed of 63 items (32 items for the supervisor referent and 31 items for the coworker referent)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [716] "The Parent version of the Current Life Functioning Form consists of 127 items devised to obtain demographic data and information about past and current eating patterns, family interactions, and political attitudes. The Children's version of the Current Life Functioning Form consists of 88 items measuring the child's perception of parental attitudes and behavior, and the items measuring general mental health status."                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [717] "The Life Regard Index consists of 28 items, with 14 items measuring Fulfillment, and 14 items measuring Framework."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [718] "The EASI Temperament Survey consists of 20 items, 5 items for each of 4 temperaments: Emotionality, Activity, Sociability, and Impulsivity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [719] "The measure consists of 36 questions. Six questions were employed for the measure of nonintrusive information seeking, while 30 questions were used for the index of intrusive information seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [720] "The Exit, Voice, Loyalty, and Neglect Measures are assessed by 2 items each for a total of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [721] "The 360-item measure consisted of four forms of 90 items each, with each emotional category (there are 18 categories) and intensity represented by 5 items per form. Subjects were given one of the four forms of the emotional situations questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [722] "The scale consists of 7 items, with 2 items measuring decision-making opportunity and 5 items measuring parental strictness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [723] "This measure consists of 7 items, with 3 items measuring peer advice seeking and the other 4 items measuring extreme peer orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [724] "The Job Affect Scale is composed of 20 items, with 10 items measuring positive affect at work and 10 items measuring negative affect at work."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [725] "The Family Competence Scale contains 13 items, the Family Style Scale contains 8 items, and the Self-Report Family Inventory contains 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [726] "The CSBS includes a 24-item scale which assesses the trait of friendliness in specific situations, and a 23-item conscientiousness scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [727] "The Emotion Regulation of Others and Self is composed of 19 items and 2 subscales: Intrinsic (10 items) and Extrinsic (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [728] "The 31-item Coping Strategies Inventory contains two sub-elements, beliefs regarding which coping strategies will lead to lower levels of secondary trauma (CSB-14 items) and time spent engaging in coping strategies (CST-17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [729] "The measure consists of the following sections and item numbers: teacher preparation for computer use (8 items), confidence and comfort using computers (9 items), and general school support (7 items). types of software used to complete school-related activities (14 items), integration of computers into the classroom (12 items), personal use of computers (5 items), technical support (8 items), and attitudes toward computer use (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                               
##  [730] "The initial 4-factor, 25-item measure has since been revised to consist of 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [731] "The Merrill-Palmer-Revised Scales of Development contains 466 items across the following subscales: Cognitive (111 items), Gross Motor (75 items), Fine Motor (59 items), Expressive Language (72 items), Receptive Language (68 items), Self-Help/Adaptability (44 items), and Social/Emotional (37 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [732] "Sixteen items were selected to form the Cancer Locus of Control scale (6 items for the Control Over the Cause of Cancer subscale, 7 items for the Control Over the Course of Cancer subscale, and 3 items for the Religious Control subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [733] "There is both 25-item and a 35-item versions of the Revised Generalized Expectancy for Success Scale. ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [734] "The total scale includes 18 items, with 9 items each measuring positive and negative affect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [735] "The Bell Adjustment contains 140 items. There are 35, 31, 34 and 35 items in the home, health, social and emotional dimensions of adjustment, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [736] "The 60-item measure includes 5 items for each of its 12 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [737] "The Classroom Environment Scale--Modified is composed of 24 items and five factors. The five factors are: Order and Organization (7 items), Involvement (5 items), Teacher Control (6 items), Rule Clarity (2 items), and Task Orientation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [738] "The scale consists of 30 total items, with 6 items measuring each of the measure's five subscales (challenge, curiosity, mastery, judgment, and criteria)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [739] "There are two versions of the Friend Observation Checklist; one contains 262 items and the other 190 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [740] "This is an 18-item measure. Three items assess self-character blame, 5 items assess self-behavior blame, 4 items assess situational blame, 3 items assess blame to others, and 3 items assess chance blame."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [741] "This 28-item measure consists of four 7-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [742] "The 33-item measure consists of the following scales: retrospected cognitive (Cog. R - 9 items), current cognitive (Cog. C - 9 items), anticipated cognitive (Cognitive A - 9 items), retrospected motivational (Mot. R - 2 items), current motivational (Mot. C - 2 items), and anticipated motivational (Mot. A - 2 items) perceived fit."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [743] "This measure contains 24 items dispersed among 5 factors: Order and Organization (6 items), Officer Emotional Support (5 items), Emotional Involvement (5 items), Officer Instrumental Support (4 items), and Instrumental Involvement (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [744] "The measure is a 128-item scale with 32 items in each of the following categories: attribution of positive traits, attribution of negative traits, denial of positive traits, and denial of negative traits."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [745] "The measure includes 15 items and 3 factors: Poor Judgment (5 items), Societal Factors (6 items), and Victim Type (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [746] "The 20-item Coping with Rape Scale consists of 7 factors: Precaution (5 items), Remain Home (3 items), Withdrawal (4 items), Activity (2 items), Minimization (2 items), Stress Reduction (2 items), and Suppression (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [747] "The Erikson Scales is composed of 76 items and seven subscales: Trust (10 items), Autonomy (8 items), Initiative (10 items), Industry (11 items), Identity (19 items), Intimacy (8 items), and Generativity (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [748] "This 12-item questionnaire consists of three factors of 4 items each (Physical Activity, Aggression/Misbehavior, and Clumsiness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [749] "This 12-item measure consists of four factors (controllability, sympathy, anger, and helping) of 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [750] "The 20-item PES-Brief consists of the top 10 items endorsed as pregnancy hassles and 10 pregnancy uplifts from the original scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [751] "The PCWRS assesses 10 items for the child and 10 items for the parent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [752] "The CRI consists of an 8-item face sheet and a 35-item inventory of responses in specific \"refusal\" situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [753] "The measure includes 28 total items, with 7 items each tapping tendencies to engage in exit, voice, loyalty, and neglect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [754] "The Fear and Greed Questionnaire is composed of 21 items. It consists of 7 items for fear and 7 items for greed, along with 7 filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [755] "Four of the indexes consisted of single items; a fifth index consisted of 2 items and the final index consisted of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [756] "The Global scale consists of 22 items, and the Intimacy, Supervisor Support, and Co-worker Support scales consist of 4 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [757] "The 64-item Constructive Thinking Inventory contains 6 subscales and one validity scale. A 53-item short form version of the CTI was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [758] "This is a 60-item measure, with 12 items for each context (work, social institutions, family, other persons, and self) and 15 items for each type of alienation (powerlessness, adventurousness, nihilism, and vegetativeness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [759] "The measure consists of 31 items, while another version used by the authors in the current study contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [760] "This measure contains 19 items measuring Radicalism-conservatism, 20 items measuring Locus of control, and 16 items measuring Dogmatism. Also, demographic information was collected about age, sex, level of education, mother's and father's level of education, marital status, race, academic major, and victimization scales for personal and property crimes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [761] "The Coping Dimension Scales is composed of a total of 48 items and 3 factors: Cognitive Self-Control (21 items), Ineffective Escapism (17 items), and Solace Seeking (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [762] "The Self-Acceptancy Scale contains four subscales: Self-Esteem (13 items), Perceived Parental Pressure (7 items), Perceived Value of School (6 items), and Lie (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [763] "The Functional and Dysfunctional Impulsivity Scales are composed of 23 items in total, with the individual scales consisting of 11 and 12 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [764] "The Aesthetic Experiences Scale includes 10 items and 3 factors: Chills (3 items), Touched (2 items), and Absorption (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [765] "The ISDI contains the following specific scales: a 12-item measure of Nightmares; an 11-item measure of Initial Insomnia; a 10-item measure of Fatigue; a 9-item measure of Fragmented Sleep; an 8-item measure of Non-restorative Sleep; a 7-item measure of Anxiety at Night; 6-item measures of Light Sleep, Movement at Night, Sensations at Night, and Excessive Sleep; and a 5-item measure of Irregular Schedule."                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [766] "The Heterosocial Assessment Inventory for Women contains five subscales Attractiveness Impact (12 items), Casual Conversation with Friends (17 items), Potentially Intimate Initiations with Strangers (15 items), Physical Contact (8 items), and Physical Intimacy (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [767] "The scale consists of six subscales: Verbal expression of affection (20 items); Self-disclosure (20 items); Toleration of loved ones' bothersome aspect (21 items); Moral support, encouragement, and interest (24 items); Feelings not expressed (19 items); and Material evidence of affection (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [768] "The Risk-Perception Scale contains 40 items and the Risk-Behavior Scale contains 50 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [769] "The 17-item ASCRS is composed of items regarding signaling sexual boundaries (10 items) and displaying risk behaviors (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [770] "The questionnaire contains 10 items, with 5 items measuring each of the two factors (Verbal Perseveration and Imaginal Prefiguration)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [771] "The Junior Temperament and Character Inventory contains 8 subscales: Novelty Seeking (18 items), Harm Avoidance (22 items), Reward Dependence (9 items), Persistence (6 items), Self-Directedness (20 items), Cooperativeness (20 items), Fantasy (5 items) and Spirituality (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [772] "The Screening Test for the Early Prediction of School Success contains 28 items and 3 subscales: Verbal Ability (11 items), Attention (7 items), and Memory (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [773] "This test consists of 32 items organized around 3 dimensions: Play Interaction (11 items), Play Disruption (9 items), and Play Disconnection (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [774] "The Areas of Worklife Survey contains 28 items. A short form of the AWS contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [775] "The Short Form comprises the first 36 items on Form R, including 4 items from each of the nine subscales. Form I has 90 items, each of which is parallel to one item in Form R."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [776] "The School Form consists of 58 items; the Adult Form consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [777] "The Emotion Regulation Questionnaire consists of 10 items divided into 2 factors: Reappraisal (6 items) and Suppression (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [778] "There are three sets of dispositional and state flow scales. The long flow scales contain 36 items each, the short flow scales contain 9 items each, and the core flow scales contain 20 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [779] "The HSUP is comprised of three scales: The Hassles scale has 117 items, The Uplifts scale includes 135 items; and the Combined scale (Hassles and Uplifts) includes 53 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [780] "There are four forms of the MEI: the Real Form (Form R) contains 84 items; the Short Form (Form S) contains 28 items; the Ideal Form (Form I) contains 84 items; and the Expectations Form (Form E) also contains 84 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [781] "Form M (Manager) and Form C (Co-worker) contain 27 items each; Form S (Subordinate) contains 33 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [782] "The Sources of Stress scales--Teacher Interactions, Academic Stress, Peer Interactions, and Academic Self-Concept--comprise 6, 3, 6, and 4 items, respectively. The Manifestations of Stress scales--Emotional, Behavioral, and Physiological--contain 6, 6, and 3 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [783] "The revised State-Trait Personality Inventory (STPI Form Y) is an 80-item self-report questionnaire, with eight 10-item scales for measuring state and trait anxiety (Ax), anger (Ag), depression (Dp) and curiosity (Cy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [784] "The Imaginary Audience Scale is composed of 12 items, with two 6-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [785] "The Parental Bonding Instrument contains two scales: Care (12 items) and Overprotection (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [786] "The SLS contains 13 items, 9 of which deal with the respondent’s ethnic preference (e.g., What is the ethnic background of the majority of your good friends?) and 4 items that assess language preference (e.g., In what language do you speak to your closest friend?)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [787] "11 items distributed initially across 4 factors: Interpersonal Self-control (4 items), Personal Self-control (3 items), Self-evaluation (2 items), and Consequential Thinking (2 items). The children's Consequential Thinking factor had such poor reliability that it was dropped from all further analyses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [788] "The item composition of the Zuckerman-Kuhlman Personality Questionnaire is as follows: Neuroticism-Anxiety (19 items), Activity (17 items), Sociability (17 items), Impulsive Sensation Seeking (19 items) and Aggression-Hostility (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [789] "The Sexual Opinion Survey is composed of 21 items, or 7 items for the revised version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [790] "The Personal Resources Questionnaire contains two parts: Part 1 consists of 8 items; part 2 contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [791] "The Competitiveness Questionnaire consists of 15 total items divided into two subscales, Goal Competitiveness (7 items) and Interpersonal Competitiveness (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [792] "In each of the 5 factor subscales of the DOSC (Aspiration, Anxiety, Academic interest, Leadership, and Identification), there are 14 items (70 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [793] "This 15-item measure consists of two subscales. The Avoidance subscale contains 8 items, and the Intrusion subscale contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [794] "The TSCC consists of 54 items categorized into six clinical subscales. There are also two validity scales (underresponse and hyperresponse) and eight critical items. The clinical subscales are anger (9 items), anxiety (9 items), depression (9 items), dissociation (with overt and fantasy subscales; 10 items), posttraumatic stress (10 items), and sexual concerns (with sexual distress and sexual preoccupation subscales; 10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [795] "The Collective Teacher Efficacy Scale contains 21 items falling into four subscales: group competence/positive (GC+; 7 items), group competence/negative (GC-; 6 items), task analysis/positive (TA+; 4 items), and task analysis/negative (TA-; 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [796] "The final Amharic translation contained 46 items (including alternative translations for 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [797] "The Attitudes Toward Using Birth Control Pills Scale consists of 14 items divided among three dimensions: Effectiveness (4 items), Safety (6 items), and Anxiety (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [798] "The Contraceptive Embarrassment Scale consists of 8 items divided among two subscales: Close Embarrassment (3 items) & Distant Embarrassment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [799] "The Pressure subscale contains 7 items and the Threat subscale contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [800] "The scale includes 3 items embedded in the 47-item Taylor Manifest Anxiety Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [801] "The Revised Depressive Experiences Questionnaire is composed of 44 items. On the basis of a decision rule, 21 items were assigned to the dependency (anaclitic of DEQ-A) subscale, 15 to the self-criticism (introjective or DEQ-I) subscale, and 8 to the efficacy (DEQ-E) subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [802] "The Personal Style Inventory II contains six subscales and 48 items: six subscales: Concern About What Others Think (7 items), Dependency (7 items), Pleasing Others (10 items), Perfectionism/Self-Criticism (4 items), Need for Control (8 items), and Defensive Separation (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [803] "The Acculturative Hassles of Disapora Immigrants Measure consists of a total of 15 items (Language Hassles, 6 items; Discrimination Hassles, 6 items; and Family Hassles, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [804] "The measure consists of 40 items--two equivalent forms of 20 items each. Form-A contains 12 pro-abortion items and 8 anti-abortion items; Form-B contains 11 pro-abortion items and 9 anti-abortion items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [805] "This measure consists of five scales with 8 items each, totaling 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [806] "The measure consists of 57 items. The item breakdown of the measure's subscales is as follows: Enlisting Social Resources (4 items), Academic Achievement (9 items), Self-Regulated Learning (11 items), Leisure-Time Skill and Extracurricular Activities (8 items), Self-Regulatory Efficacy to Resist Peer Pressure (9 items), Meet Others’ Expectations (4 items), Social Self-Efficacy (4 items), Self-Assertive Efficacy (4 items) and Enlisting Parental and Community Support (4 items)."                                                                                                                                                                                                                                                                                                                                                                        
##  [807] "The Attitudes to Technology in Mathematics Learning Questionnaire contains 34 items divided into three subscales: Mathematics Confidence (11 items), Computer Confidence (11 items) and Maths-Tech (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [808] "7 to 9 items for linear scales and 12 items for bipolar scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [809] "The measure consists of three 12-item scales (36 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [810] "Subtests and items are as follows: Information (25 items); Comprehension (10 items); Similarities (12 items); Arithmetic (10 items); Digit Span Forward (14 items); Digit Span Backward (12 items); Vocabulary (42 items); Picture Completion (15 items); Picture Arrangement (15 items); Object Assembly (18 items); Block Design-Accuracy (21 items); Block Design-Time (21 items); and Digit Symbol (67 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [811] "12 item pairs, 4 items directed at each of the three kinds of teacher understanding: cognitive, social, and personal problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [812] "For the 1976 scales, the Parent's Report consists of 10 items, while the teacher and child reports consist of 9 and 11 items, respectively. For the 1981 scales, the parent report consists of 14 items, while the teacher and child reports consist of 7 and 14 items respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [813] "This is a 16-item measure. The four main categories of the measure are: Orienting (2 items), Passive tone/Reflexes (7 items), Head Control (3 items), and Extremity movements (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [814] "The CAS consists of 128 items distributed across 2 parts. In the first part, the child is asked a series of approximately 75 questions about several topics including: school, friends, activities and hobbies, family, fears, worries, self image, mood (especially sadness), somatic concerns, expression of anger, and thought disorder symptomatology. The second part (approximately 53 items) of the CAS provides a format for the interviewer to record observations and judgments after the completion of the interview."                                                                                                                                                                                                                                                                                                                                        
##  [815] "The measure consists of three subscales and 9 total items: Dieting (3 items), Binging (3 items), and Oral Control (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [816] "The Intellectual Disability Literacy Scale consists of 102 items and 2 vignettes (51 items for each vignette)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [817] "The BDQ has 31 items and six subscales: Out to Family and Friends (F/F) (9 items); Out at Work and in the General Public (W/P) (7 items); Out through Suggestive Conversation/Books/Art (S/A) (6 items); Out in the Gay Community (GC) (4 items); Out through Gay Symbols (GS) (3 items); and Out Financially (OF) (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [818] "The Obsessive Beliefs Questionnaire consists of 87 items representing dysfunctional assumptions covering six domains: overestimation of threat (14 items), tolerance of uncertainty (13 items), importance of thoughts (14 items), control of thoughts (14 items), responsibility (16 items), and perfectionism (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [819] "The HIAS consists of 50 items and five subscales with 10 items each. The subscales measure the stages of identity development and are labeled: Contact, Disintegration, Reintegration, Pseudo-Independence, and Autonomy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [820] "This is a 10-item measure with five 2-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [821] "The Exercise Objectives Locus of Control Scales consist of three 6-item subscales (Internality, Powerful Others Externality, and Chance Externality) presented as a unified scale (18 total items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [822] "The number of items in physical functioning, role functioning, pain, general health perceptions, social functioning, energy, and emotional well-being subscales were .9, 2, 2, 3, 2, 2, and 7, respectively. The number of items in the emotional well-being subscale are: positive affect (2 items), negative affect (5 items), anxiety (2 items), and depression (3 items). Disability days, overall health, and overall quality of life are single items."                                                                                                                                                                                                                                                                                                                                                                                                            
##  [823] "The long survey 116 items; shorter forms of the survey contain 12, 20, and 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [824] "The General Adherence survey contains 5 items; the Specific Adherence survey contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [825] "One version of the measure (standardization questionnaire, Form S) consists of 249 items, while the other has 185 items (16PF Fifth Edition questionnaire)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [826] "This survey contains four subscales: Emotional/informational Support (8 items), Tangible Support (4 items), Affectionate Support (3 items), and Positive Social Interaction (3 items). An additional item is also included."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [827] "This is a 24-item measure with two 12-item subscales: Rumination and Reflection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [828] "The original version of the CRISYS consists of 50 items and a newer version consists of 63 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [829] "The measure consists of 27 items included in the following subscales: Identity Confusion (4 items), Superiority (2 items), Need for Privacy (6 items), Need for Acceptance (5 items), Internalized Homonegativity (5 items), and Difficult Process (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [830] "The Modern Homonegativity Scale consists of two parallel versions: A 12-item Gay scale and a 12-item Lesbian scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [831] "The measure consists of a total of 119 items with Part 1 (Demographic) containing 6 items, Part 2 (Religiosity) having 69 items, and Part 3 (Humanitarianism) having 44 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [832] "The measure consists of 12 items total, which are distributed across two subscales with 6 items each (Friendship Opportunity and Friendship Prevalence)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [833] "The Community Questionnaire is comprised of three parts: Part I contains 16 items, Part II contains 129 items, and Part III contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [834] "The Three-Dimensional Wisdom Scale is composed of 39 items, consisting of 14 items for the cognitive, 12 for the reflective, and 13 for the affective component of wisdom."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [835] "70 items total: 14 items in each of 5 factor subscales (3 subscales for each factor subscale): Levels of Aspiration (LOI), Anxiety (ANX), Academic Interest and Satisfaction (AIAS), Leadership and Initiative (LAI), and Identification vs Alienation (IA)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [836] "The measure consists of 35 total items--16 measuring internal identity and 19 items measuring external identity. In a later study (Kwan, 2000), the measure was reduced to 24 items representing a four-factor structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [837] "This is a 9-item measure with 2 subscales (differential affection-5 items and control-4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [838] "Section I consists of ten questions, Section II, consists of 13 items, and Section III contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [839] "This is a 30-item measure with 5 questions for each of 6 features: (a) play/association, (b) prosocial behavior, (c) intimacy, (d) loyalty, (e) attachment and self-esteem enhancement, and (f) conflicts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [840] "This is a 21-item measure with 2 factors: peer-related loneliness (16 items) and parent-related loneliness (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [841] "This measure consists of 52 items: A three dimensional parent scale (22 items); a three-dimensional infant scale (20 items); and a two-dimensional dyadic scale (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [842] "The 87-item Infant Behavior Questionnaire consists of 6 subscales: Activity level (17 items), Smiling and laughter (15 items), Fear (16 items), Distress to limitations (20 items), Soothability (11 items), and Duration of orienting (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [843] "Horizontal Individualism (5 items), Vertical Individualism (8 items), Horizontal Collectivism (8 items), and Vertical Collectivism (6 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [844] "The Le Questionnaire du Burnout Sportif is composed of 12 items, with 4 items measuring each component of burnout (emotional and physical exhaustion, reduced accomplishment, and sport devaluation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [845] "The Epistemological Beliefs in Teaching and Learning Questionnaire contains 2 subscales: beliefs about the nature of knowledge (9 items) and beliefs about the nature of learning (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [846] "This is a 19-item measure (Impelling scale-9 items and Inhibitory scale-10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [847] "The Interpersonal Sexual Objectification Scale is composed of 15 items, with Factor 1 (labeled body evaluation) containing 11 items and Factor 2 (labeled physical invasion) containing four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [848] "The Pain Beliefs and Practices Questionnaire includes the 26-item total beliefs score and the 16-item opioid kinetics score. The PBPQ also provides 16 items about simulated pain management practice, pain assessment (8 items) and opioid administration (8 items), in case study vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [849] "The Perceived General Primary and Secondary Control Questionnaire for Children consists of 15 items, grouped into two scales. The general primary control scale consists of 5 items and the general secondary control scale consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [850] "This 43-item measure consists of the following four factors: ego-related stressors (19 items), inability to fulfil traditional gender roles (10 items), problems in interpersonal relationships (6 items) and physical barriers and deviant body image (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [851] "This is a 50-item measure. For every item, there are 4 questions that assess the extent to which the statement is true for the school and perceived importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [852] "The measure consists of 15 Items distributed across 3 factors: Appearance (7 items), Gender Roles (4 items), and Emotional Expression (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [853] "The Work Home Culture Scale is an 18-item instrument. The support dimension contains with three subscales: Organizational Support (4 items), Supervisor Support (3 items), and Collegial Support (3 items). The hinderance dimension contains two subscales: Career Consequences (4 items) and Organizational Time Expectations (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [854] "The Barkley Current Symptoms Scale—Self-Report Form consists of 36 items and 3 subscales. The subscales measure symptoms of ADHD (18 items), which life activities are most affected by the symptoms (10 items), and symptoms of oppositional defiant disorder (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [855] "This test contains 24 items total (6 items for each of the four stages of ego identity stages: Diffusion, Foreclosure, Moratorium, and Identity Achievement)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [856] "This is an 11-item measure (1 item was dropped as a result of a factor analysis)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [857] "This 30-item measure consist of three 10-item scales of feelings/attitudes about justice, with one scale each from the perspective of the victim, observer, and perpetrator."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [858] "The IRRS-B is composed of 22 items divided into three subscales: Cultural Racism (10 Items), Institutional Racism (6 Items), and lndividual Racism (6 Items). A Global Racism score is derived by weighting each of the subscale scores and then summing them."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [859] "This is a 15-item measure with two subscales: Prevention (7 items) and Promotion (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [860] "This 20-item measure is comprised of two 10-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [861] "The 21 items of the measure are distributed across 2 subscales: Group collective efficacy (11 items) and Organizational collective efficacy (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [862] "The SAHEB consists of 22 items and 5 subscales: Social Influence (7 items), Experiential Opportunity (4 items), Academic Preparation (3 items), Physical Self-Efficacy (3 items), and Self-Management (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [863] "This measure consisted of the Well-being (10 items), Parent Ego (7 items), and Love Loss factors (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [864] "The Academic Hardiness Scale contains 18 items with three constructs: Commitment (11 items), Challenge (5 items), and Control (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [865] "The Addiction Research Center Inventory consists of 550 items and the General Drug Control-Estimation Scale consists of 52 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [866] "The Swedish version of the ZPTI has 64 items total - 56 items from 4 of the original ZTPI subscales (Past Negative , Past Positive, Present Hedonistic, Present Fatalistic) and 8 items in a new Future Negative Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [867] "This 44-item measure consists of six subscales with 6 to 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [868] "This 14-item measure consists of the Negative Affectivity scale (7 items) and the Social Inhibition scale (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [869] "There are 12 items in the scale measuring three subscales: Verbalizing temporal structures (5 items), Temporal self-regulation (4 items), and Conceptualizing and sequencing time (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [870] "This 16-item measure consists of four subscales (4 items in each subscale): Self-emotion appraisal (SEA), Others’ emotion appraisal (OEA), Use of emotion (UOE), and Regulation of emotion (ROE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [871] "The Collectivistic Coping Styles Inventory contains 30 items. The Acceptance, Reframing, and Striving, Family Support, Religion–Spirituality, Avoidance and Detachment, and Private Emotional Outlets subscales contain 11, 6, 4, 5, and 4 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [872] "106 items distributed across 5 scales: Indifference (15 items), Inappropriateness (14 items), Depression (16 items), Pragnosia (19 items), Mania (27 items), and Neutral (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [873] "The first factor is composed of 8 items written to represent the affinity-seeking competence (ASC) scale while the second factor is composed of 5 items for the strategic performance (SP) measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [874] "This measure consists of a total of 70 items. The Lifetime Discrimination scale consists of 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [875] "The Asian American Stereotypes Scale contains 23 items across four subscales: Difficulties with English Language Communication (8 items), Pursuit of Prestigious Careers (5 items), Emotional Reservation (5 items), and Expected Academic Success (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [876] "The RAM-SSC contains 90 items with eight, 10-item subscales: Conflict Resolution, Affection, Cohesion, Sexuality, Identity, Compatibility, Autonomy, Expressiveness, and social desirability response bias."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [877] "The Cross-Gender Questionnaire consists of 55 items, which fall along four scales: Cross-gender Identity (14 items); Cross-gender Feminization (13 items); Cross-gender Sexual Arousal (16 items); and Cross-gender Social/Sexual Role (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [878] "It contains seven content areas: memory for treatment-related experiences (4 items); re-experiencing, reminders, avoidance, and life threat (14 items); A2 criteria for DSM-IV-PTSD diagnosis (9 items); Attributions for causality (3 items); Medical problems (six items); Perceptions of changes in self due to cancer and treatment (3 items); and Communication (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [879] "The scale consists of 40 items and 2 subscales: positive feelings (12 items) and negative feelings (23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [880] "The measure consists of 36 items distributed across six subscales (6 items per subscale): structure dependence, creative expression, reading for pleasure, academic efficacy, academic apathy, and mistrust of instructors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [881] "This 40-item measure consists of the following four 10-item subscales: Verbal, Math, Academic, and General Self-Concept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [882] "The New York PTSD Risk Score is a multifactor prediction tool that includes the Primary Care PTSD Screen (4 items), depression symptoms (2 items), access to care (1 item), sleep disturbance (1 item), trauma history (2 items) and demographic variables (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [883] "The Profile of Mood States-Brief Scales consist of 14 total items and two subscales (Negative Affect and Positive Affect) with 7 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [884] "The Charles F. Kettering School Climate Profile-University Version contains 40 items, composing eight subscales of 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [885] "The Japanese version of the Dimensions of Self-Concept Form S consists of five factor subscales with 14 items per subscale (70 total items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [886] "The Cognitive Coping Strategy Inventory contains seven subscales: Imaginative Inattention (12 items); Imaginative Transformation/Context (10 items); Imaginative Transformation/ Sensation (11 items); Attention Diversion/External (11 items); Attention Diversion/Internal ( 11 items); Somatization (10 items); and Catastrophizing (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [887] "The CR scale consists of 6 items, while the ES scale consists of 4 items (for a total of 10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [888] "The Barnes Language Assessment contains six subscales that include: Expression (31 items), Comprehension (29 items), Reading and Writing (59 items), Memory (1 item plus forward digit span) and Executive Functions (2 trails)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [889] "Spreitzer’s Psychological Empowerment Scale consists of 12 items along 4 subscales: Meaning (3 items); Competence (3 items); Self-Determination (3 items); and Impact (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [890] "The questionnaire consists of 25 items and 3 subscales: loyalty (9 items), similarity (11 items), and membership (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [891] "This is a 38-item measure. The six dimensions of empowerment are as follows: Decision Making (10 items), Professional Growth (6 items), Status (6 items), Self-Efficacy (6 items), Autonomy (4 items), and Impact (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [892] "The Childbirth Perceptions Questionnaire is composed of 27 items with three subscales as follows: Satisfaction with Sexuality (5 items); Satisfaction with Delivery (13 items); and Satisfaction with Spouse Interaction (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [893] "The Utah Test for the Childbearing Year: Beliefs and Perceptions about Childbearing has 138 items. The Fear of the Childbirth Process domain scale has 21 items. The Childbearing Health Locus of Control domain scale has 20 items. The Personal Values About Childbearing and Childrearing domain scale has 15 items. The Father's Role and Response in Childbearing domain scale has 24 items. The Social Compliance and Active vs. Passive Involvement domain scale has 20 items. There are 8 demographic items, 11 pregnancy related items, 15 health behavior items, and 4 miscellaneous items."                                                                                                                                                                                                                                                                   
##  [894] "The Last Six Months of Drinking Questionnaire is composed of 20 items. Scales derived by factor analysis were labeled: Dependence symptoms (10 items), Alcoholic psychosis (4 items), and Pathological intoxication (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [895] "This 36-item measure consists of three 12-item scales: Absorption, Intellectance, and Liberalism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [896] "The Brief Inventory of Values contains four three-item subscales: Self-Transcendence, Self-Enhancement, Openness to Change, and Conservation or Traditional. The Self-Transcendence is also a 6-item scale with separate 3-item scales of biospheric and altruistic values."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [897] "The version for 4-8 yr olds contains 6 items while the version for 6-16 yr olds contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [898] "The 30-item EIS is comprised of 6 items in each of the measure's 5 subscales: Trust vs mistrust, Autonomy vs shame and doubt, Initiative vs inferiority, Industry vs inferiority, Identity vs Identity confusion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [899] "The Dependency and Insecurity in Romantic Relationships Scales contains two scales: the Dependency Scale (16 items) and the Insecurity Scale (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [900] "The Adolescent Conversation Questionnaire is composed of 7 items answered for each of three sections (participants answer the same 7 items in reference to their father, their mother, and their friend)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [901] "The scale consists of 39 items and 5 subscales: Susceptibility (6 items), Seriousness (12), Benefits (5), Barriers (8), and Motivation (8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [902] "This 71-item measure consists of the 39-item Figural-Symbolic (FS) scale and the 32-item Inductive-Deductive (ID) scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [903] "The Interpersonal Guilt Measure--67 items has 67 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [904] "The Shipley Institute of Living Scale consists of a 20-item abstraction test and a 40-item vocabulary test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [905] "The Rating Scale for Premenstrual Tension Syndrome contains 10 items; the Self-Rating Scale for Premenstrual Tension Syndrome contains 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [906] "The doctor version of the MCCS contains 37 items (24 self-competence items and 13 other-competence items), while the patient version contains 40 items (16 self-competence and 24 other-competence items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [907] "There are 11 items in the IPDS. Each IPDS item is evaluated with one or two questions (in total: 19 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [908] "The Revised Health Belief Model Instrument contains three subscales: Susceptibility (3 items), Benefit (5 items), and Barriers (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [909] "The measure consists of 10 items, with 5 items measuring creative self-efficacy in science and 5 items measuring creative self-efficacy in math."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [910] "This 28-item measure consists of 5 subscales: Attitude Toward Anger (5 items), Attitude Toward Joy (5 items), Attitude Toward Sadness (6 items), Attitude Toward Disgust (6 items), and Attitude Toward Fear (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [911] "The measure consists of 23 items distributed across Social Derogation (8 items), Cognitive Obstruction (9 items), and Tenseness (6 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [912] "The 107-item A-DMC battery measures seven component tasks: Resistance to Framing (14 items), Recognizing Social Norms (16 items), Under/Overconfidence (34 items), Applying Decision Rules (1 item), Consistency in Risk Perception (20 items), Resistance to Sunk Costs (10 items), and Path Independence (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [913] "The Marital Satisfaction Inventory--Broadband Scales consists of 19 items and 2 scales: the Disaffection scale (10 items) and the Disharmony scale (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [914] "This 15-item measure contains the following subscales: Fear of Contagion (5 items), Negative Emotions (4 items) and Professional Resistance (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [915] "This 31-item measure consists of the following subscales: Need for Control and Self-Reliance (10 items), Minimizing Problem and Resignation (6 items), Concrete Barriers and Distrust of Caregivers (6 items), Privacy (5 items), and Emotional Control (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [916] "This 25-item measure consists of four factors: Goal-Driven Behaviors (7 items), Persistence (5 items), Study Skills (7 items) and Self-Monitoring (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [917] "This 9-item measure contains two factors: 1) Interpersonal Adjustment (5 items) and 2) Training Adjustment (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [918] "The Jackson Career Explorer has 170 items and 34 scales with 5 items on each scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [919] "This 31-item measure consists of three subscales: (Relevance, 13 items), (Affective, 10 items) and (Course, 8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [920] "The PWE contains 60 items. A shorter 38-item version was also tested."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [921] "The Recovery Attitudes Questionnaire--7 Item Version (RAQ-7) has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [922] "This measure consists of 27 items spread across four subscales: Souvenir Purchases (8 items), Souvenirs as Gifts (7 items), Souvenirs as Memories (6 items), and Souvenirs as Evidence (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [923] "This 24-item measure consisted of the following scales: the Perceived tourism benefits scale (5 items), the Opportunity scale (4 items), the Awareness scale (4 items), the Knowledge scale (5 items) and the Participation levels scale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [924] "This is an 18-item measure, with two 9-item subscales (depression and mania)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [925] "The Monogamy Attitudes Scale consists of 16 items and 2 subscales: Enhancing, with 8 items, and Sacrificing, with 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [926] "The VMIQ consists of 24 items and 6, 4-item subscales: basic body movements, basic movement with more precision, movement with control but some unplanned risk, movement controlling an object, movements which cause imbalance and recovery, and movements demanding control in aerial situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [927] "The Smith nAch Scale contains 10 items; it also includes a 7-item Carelessness Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [928] "The AAT consists of 19 items and two scales: a facilitating scale of nine items and a debilitating scale of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [929] "The CPAQ, which has long (51 items) and short forms (21 items), assesses masculinity (instrumentality) and femininity (socioemotional orientation) on separate unipolar dimensions and also contains a bipolar Femininity-Masculinity scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [930] "This is a 40-item measure, with both the Self-Deception Questionnaire and the Other-Deception Questionnaire being comprised of 20 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [931] "There are 46 items in the Body-Cathexis Scale and 55 items in the Self-Cathexis Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [932] "This measure has 2 forms, one with 48 items (true/false format) and one with 47 items (yes/no format)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [933] "A 31-item version of the measure was specifically targeted to those who worked a freeway collapse. The version for the counterpart sample included 30 items with identical content and wording except that references to I-880 were replaced by the phrase \"the critical incident.\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [934] "The Sexual Satisfaction Questionnaire consists of 69 items and 3 sections, with 23 items in each section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [935] "The DAPP-BQ consists of 282 self-report items and 8 items measuring social desirability. Most dimensions are measured with 16 items; Self-Harm has 12 items, and Suspiciousness has 14."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [936] "This is a 34-item inventory consisting of five subscales: Eating Helps Manage Negative Affect (18 items), Eating Is Pleasurable and Useful as a Reward (6 items), Eating Leads to Feeling out of Control (4 items), Eating Enhances Cognitive Competence (2 items), and Eating Alleviates Boredom (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [937] "This is a 45-item measure assessing trait guilt (20 items), state guilt (10 items), and moral standards (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [938] "This is a 33-item questionnaire measuring affective and hypochondriachal disturbance (AHD-18 items), life disruption (LD-10 items), and social inhibition (SI-5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [939] "The Coercive Sexuality Scale consists of 19 items: the first part of the scale presents 11 coercive sexual behaviors; the next 8 items measure the method by which sexual behavior was coerced."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [940] "The PSQ-III consists of 50 items tapping six aspects of satisfaction with care: interpersonal manner (7 items), communication (5 items), technical competence (10 items), time spent with doctor (2 items), financial aspects (8 items), and access to care (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [941] "The Adolescent Drinking Inventory consists of 24 items and four domains drinking-related loss of control (4 items), social indicators (11 items), psychological indicators (7 items), and physical indicators (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [942] "The Sense of Humor Questionnaire (SHQ) contains 21 items. A revision of the SHQ (SHQ-6) contains 6 items. An ultra-short version of the SHQ (SHQ-3) contains 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [943] "The scale consists of 45 items measuring Premeditation (11 items), Urgency (12 items), Sensation Seeking (12 items), and Preseverance (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [944] "This is an 18-item measure. Six-item and 3-item versions of the measure were also developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [945] "There are 24 items in the Iowa Sleep Experiences Survey, with 15 items forming the General Sleep Experiences subscale and 3 items forming the Lucid Dreaming subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [946] "The Job Descriptive Index contains 72 items with five subscales (work itself, supervision, pay, promotions, and co-workers). Each facet contains either 9 or 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [947] "The variables include: reverence (3 items), trust (3 items), satisfaction with leader (3 items), and collective identity (5 items), perceived group performance (5 items), and empowerment (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [948] "The Multidimensional Perfectionism Cognitions Inventory-English consists of 15 items: 5 items each for Personal Standards, Pursuit of Perfection, and Concern Over Mistakes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [949] "The Help-Seeking Logics Measure is a 13-item scale, with two subscales: the autonomous help-seeking logics (6 items) and dependent help-seeking logics scales (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [950] "This measure is composed of two parts and contains 48 items that represent anger disposition on Cognitive, Arousal, and Behavioral subscales, which sum to a NAS total score. The PI is composed of 25 items that focus on situations that lead to anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [951] "The ASPI contains 40 items and 4 subscales, with 10 items on each subscale. The subscales are: Music, Art, Dance, and Drama."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [952] "The ASPI--Adult Form consists of 48-items and 4 subscales: music, visual art, dramatic art, and dance. Each scale contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [953] "The PEDI contains 3 subscales: self-care (73 items), mobility (59 items), and social function (65 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [954] "The measure contains 8 items and 3 scales. The scales were labeled the Radical Creative Performance Index (3 items), the Incremental Creative Performance Scale (3 items), and the Routine, Noncreative Performance Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [955] "The Perceived Modes of Processing Inventory consists of 32 items in three scales: rational processing (12 items), emotional processing (10 items), and automatic processing (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [956] "The measure in its entirety consists of 26 items. The four factors of the measure consist of the 14 items which loaded at or above criterion level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [957] "The measure consists of five subscales of 16 items each (80 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [958] "The Academic Self-Efficacy Scale consists of 19 items and 7 subscales. The subscales are: Class Concentration (3 items), Memorization (3), Exam Concentration (2), Understanding (3), Explaining Concepts (3), Discriminating Concepts (3), Note Taking (2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [959] "This 16-item measure consists of four factors (precontemplation, preparation, action, and termination) with 4 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [960] "The Parenting Practices Questionnaire contains 62 items across three subscales: Authoritative (27 items), Authoritarian (20 items), and Permissive (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [961] "The Mathematics Teaching Efficacy Belief Instrument consists of two subscales: Personal Mathematics Teaching Efficacy (13 items) and (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [962] "The General Decision-Making Scale consists of 25 items and 5 scales with 5 items each: Rational, Intuitive, Dependent, Spontaneous, and Avoidant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [963] "This 11-item measure consists of three factors (Relationship with school [4 items], Relationship with teachers [4 items], and Relationship with peers [3 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [964] "The measure consists of 36 items, 6 items per coping dimension: seeking social support, problem solving, avoidant coping, palliative emotion regulation, anger-related emotion regulation, and media use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [965] "The RPQ consists of 23 items and two scales: Reactive Aggression (11 items) and Proactive Aggression (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [966] "The Perceived Adequacy of Resources Scale consists of 28 items over 7 categories. A shortened version consists of 21 items over 6 categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [967] "This is a 17-item measure with the following scales: Synthesis-Analysis (2 items), Study Methods (8 items), Fact Retention (1 item), and Elaborative Processing (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [968] "The measure consists of 19 items. However, the authors note that only 9 items are combined to yield the total score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [969] "The Eating Habits Questionnaire contains four subscales: Predisposition to Obesity (30 items), Binge Eating (17 items), Physical Activity (6 items), and Predisposition to Anorexia (28 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [970] "The Masculine and Feminine Self-Disclosure Scale contains four subscales and 40 items; each subscale contains 7 items each, plus 12 filler items not assigned to any scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [971] "Part A of the measure consists of 20 items, Part B consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [972] "The Disability Factor Scales consists of 286 items: a 105-item Blindness sub scale; a 101-Amputation subscale; and a 80-item Cosmetic Condition subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [973] "This 20-item measure consists of two 10-item subscales (Blatant and Subtle Prejudice)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [974] "The Goal-Focused Leadership and Performance Scales are composed of 12 items, five items for Goal-Focused Leadership and 7 items for Performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [975] "The scale consists of nine items: (energy, 3 items), (dedication, 3 items), and (absorption, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [976] "The Developmental Challenge Profile consists of 96 items that form 15 scales: Lack of Top Management Support (7 items), Inherited Problems (9 items), Developing New Directions (11 items), Unfamiliar Responsibilities (7 items), High Stakes (9 items), Problems With Employees (7 items), Job Overload (6 items), Influencing Without Authority (7 items), Difficult Boss (6 items), Reduction Decisions (4 items), Handling External Pressure (7 items), Adverse Business Conditions (4 items), Proving Yourself (5 items), Managing Business Diversity (3 items), and Lack of Personal Support (4 items)."                                                                                                                                                                                                                                                          
##  [977] "The Boundary Activities and Team Performance Measure consists of 12 items and 3 subscales (Boundary Reinforcement, Boundary Buffering, and Boundary Spanning) with 4 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [978] "This is a 4-item measure. Positive and negative word-of-mouth are measured by 2 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [979] "The Procedural Justice Scale used in Study 1 contained 5 items, the one in Study 2 contained 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [980] "The measure consists of 11 items tapping Perservation of Parental Worry (8 items) and Psychological Losses (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [981] "The Perceived Facilitators to Career Advancement Scales contains 21 items. Items were divided into the following scales: Developing Relationships (4 items), Managing Own Career (4 items), Mentoring (8 items), and Developmental Assignments (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [982] "The Social Identity Scales consist of 15 items, which are organized around 3 subscales: Identification (5 items), Pride (4 items), and Respect (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [983] "The Measure of Attachment Qualities consists of 14 items. The Avoidance Subscale contains 5 items, Ambivalence-Worry Subscale contains 3 items, Ambivalence-Merger Subscale contains 3 items, and the Security Subscale contains 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [984] "The measure consists of 26 items and three subscales: fit (9 items), sacrifice (8 items), and links (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [985] "This 7-item instrument utilizes 3 items for the measurement of Procedural Fairness and 4 items to measure Interactional Fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [986] "The Collective Efficacy Beliefs Scale is a 31-item scale and consists of a 10-item Personal Efficacy scale, an 8-item Personal Outcome Expectancy scale, a 7-item Collective Efficacy scale, and a 6-item Collective Outcome Expectancy scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [987] "The scale consists of 13 items and two subscales: social exchange (7 items) and economic exchange (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [988] "The Interpersonal and Informational Justice Toward Self/Coworker Scales--Modified Version contains a total of 9 items, distributed along 2 scales: the Interpersonal Justice Scale (4 items), the Informational Justice Scale Toward Self (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [989] "This is a 30-item measure. Four subscales are included in the questionnaire: severe combined abuse (8 items), emotional abuse (11 items), physical abuse (7 items), and harassment (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [990] "The scale consists of 50 items and 5 subscales: normative, technical, referent, performance, and social. Each subscale has 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [991] "This 13-item measure consists of 7 items in factor 1 and 6 items in factor 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [992] "The 28-item Stressor Scales include: Job Insecurity (4 items), Time Pressure (5 items), Organizational Constraints (8 items), Social Stressors (6 items), and Uncertainty (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [993] "The SATAQ has 14 items and two subscales: Awareness (6 items) and Internalization (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [994] "This is a 25 item measure with 12 items measuring learning, 5 items measuring performance, and 8 items being included as filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [995] "The measures consist of 32 items assessing Vulnerability and 31 items assessing Resilience."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [996] "The measure consists of 20 items, although the focus of the current study centers on the Perceived Barriers (5 items) and the Perceived Behavioral Control subscales (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [997] "The Organizational Withdrawal Measure contains the following items: job behaviors (6 items), lateness (2 items), absenteeism (3 items), turnover intentions (3 items), desire to retire (6 items), and intended retirement age (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [998] "The final scale consists of 84 items with the following subscales: Strength of Excitation (SE; 24 items), Strength of Inhibition (SI; 24 items), Mobility (MO; 24 items), and Social Desirability (SD; 12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [999] "The Valuing of Education Scale consists of 51 items, including the following subscales: Intrinsic Value (8 items); Attainment Value (10 items); Utility Value (9 items); Cost (24 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1000] "The Psychological Strain Scale consists of 6 items, with 2 subscales: Job-related Anxiety (3 items) and Job-related Depression (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1001] "The 31 items of the measure comprise the following subscales: the 10-item Personal Efficacy scale, the 8-item Personal Outcome Expectancy scale, the 7-item Collective Efficacy scale, and the 6-item Collective Outcome Expectancy scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1002] "The Belongingness at Work Scale consists of 10 items, divided into two subscales: Charisma (7 items) and Belongingness (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1003] "The scale consists of 20 items and two subscales: Organizational (11 items) and Interpersonal (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1004] "This is a 13-item measure with two factors: Formal Procedures (7 items) and Interactional Justice (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1005] "The measure consists of 28 items and five subscales: Gender Harassment (7 items), Seduction (9 items), Bribery (3 items), Threat (4 items), and Sexual Imposition (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1006] "The Masculine Role Inventory consists of 30 items and three subscales: Restrictive Emotionality (13 items), Inhibited Affection (7 items), and success preoccupation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1007] "The Occupational Commitment Scales contain 18 items and three, 6-item scale: affective commitment, continuance commitment, and normative commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1008] "This is a 13-item scale with two subscales: procedural justice (6 items) and distributive justice (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1009] "The measure consists of two dimensions: behavior supporting the union as an organization (OCBO, 5 items) and behavior supporting union brothers and sisters (OCBI, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1010] "The AMAS consists of 9 items and has two subscales: Learning Math Anxiety (5 items) and Math Evaluation Anxiety (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1011] "This 120-item scale consists of 20 items measuring each of six subscales (approach, active avoidance, passive avoidance, extinction, fight and flight)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1012] "The Children's Androgyny Scale is a 20-item test consisting of a 10-item feminine scale and a 10-item masculine-scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1013] "This 24-item measure consists of four scales with 6 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1014] "The Employer Knowledge Measures consist of 16 items, divided into 3 scales: Employer Familiarity (4 items), Employer Reputation (4 items), and Job Information (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1015] "This 16-item measure consists of 8 items tapping behaviors that are clearly beneficial to individuals (OCBI) and 8 items assessing behaviors that are beneficial to the organization (OCBO)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1016] "The measure consists of the three forms (elementary form: 33 items, middle form: 36 items, secondary form: 37 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1017] "The Academic Motivation Profile consists of 4 sections that measure students' perceptions of attention (7 items), relevance (10 items), confidence (8 items), and satisfaction with a course (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1018] "The factors and items are as follows: Helping (7 items), Civic Virtue (3 items), and Sportsmanship (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1019] "The Organizational Image Scale consists of 16 items organized around 8 factors: Powerful (2 items), Achievement Oriented (2 items), Stimulating (2 items), Self-Directed (2 items), Universal (2 items), Benevolent (2 items), Traditional (2 items), and Conforming (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1020] "The Psychological Collectivism Measure is composed of 15 items, organized around 5 facets: Preference (3 items), Reliance (3 items), Concern (3 items), Norm Acceptance (3 items), and Goal Priority (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1021] "The Energy Expenditure Scale for Study 1 has 3 items. The Energy Expenditure Scale for Study 2 also has 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1022] "The Support Protection Measures consist of 16 items along two subscales: Parental Closeness (6 items) and Neighborhood Attachment (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1023] "The Model Risk Measures consist of 6 items along two subscales: Peer Deviance (5 items) and Alcohol Purchase By Family Members (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1024] "The Vulnerability Risk Measures consist of 8 items along two subscales: Depression (7 items) and Low Expectations for the Future (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1025] "The measure consists of 11 items with 4 items measuring forgiveness, 3 items measuring reconciliation, and 4 items measuring revenge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1026] "General bulling is measured by 24 items, while racial/ethnic bullying is measured by 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1027] "The Task Interdependence Scale consists of 11 items and contains 2 subscales: Reciprocal Independence (5 items) and Independence (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1028] "This measure consists of 24 items comprising three subscales (internal, powerful others, and chance) of 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1029] "The Job Performance Measure consists of 16 items and includes 3 subscales: Core Task Performance (5 items), Job Dedication (5 items), and Interpersonal Facilitation (5 items). The remaining item assesses overall job performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1030] "The The Gender Behavior Inventory for Boys contains 4 subscales: Feminine Behavior (18 items), Extraversion (14 items), Behavior Disturbance (17 items), and Mother's Boy (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1031] "The Academic Amotivation Inventory consists of 16 items, divided into 4 subscales: Ability Beliefs (4 items), Effort Beliefs (4 items), Characteristics of the Academic Task (4 items), and Value Placed on the Task (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1032] "The Late-Onset Stress Symptomatology (LOSS) Scale consists of 44 items: the 33 LOSS items plus an additional 11 items assessing positive appraisal of prior military experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1033] "The final Information Privacy Scale consists of 13 items. A 5-item Perceived legitimacy subscale, a 4-item Information gathering control subscale, and a 4-item Information handling control subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1034] "The survey consists of 62 items and 10 subscales: Self-disclosure (7 items), Group psychological safety (7 items), Group learning orientation (5 items), Relationship conflict (3 items), Task conflict (3 items), Feedback seeking (4 items), Feedback giving (4 items), Facilitator’s role (25 items), Creativity of outcomes (3 items), and Group performance (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1035] "This is a 41-item measure with the following subscales: social inclusion (17 items), equal work opportunities (7 items), equal access to benefits (7 items), equal respect for nonwork life (3 items), and equal work expectations (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1036] "The scale consists of 12 items, with 3 items measuring each type of support (four types)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1037] "The Work Values scale contains 9 items and 3 subscales: economic security (3 items), interpersonal (2 items), and mastery (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1038] "The MQ measures 18 dimensions (144 items: 8 items per dimension)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1039] "This measure consists of 12 items total (6 items in Study 1 and another 6 in Study 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1040] "The Organizational Citizenship Behavior Measures consist of 11 items and two scales. One has 5 items, the other has 6."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1041] "This measure consists of 18 items comprising six subscales (exploration, denial, anger, bargaining, depression, and acceptance) of 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1042] "The Police Officer Diary Questionnaire consists of the following four scales: Emotional Dissonance (4 items), Emotional Job Demands (7 items), Psychological Strain (at the start of the work shift; 5 items), and Psychological Stain (at the end of the work shift; 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1043] "The measure consists of 33 items, 11 items for each of three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1044] "This is a 30-item measure assessing five facets of customer experiences: (a) Efficiency (5 items), (b) Security (4 items), (c) Competency (5 items), (d) Relationships (13 items), and (e) Overall Perceptions (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1045] "This is a 14-item measure with two factors, person-focused and task-focused, consisting of 8 and 6 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1046] "The Safety-Related Scales consist of 26 items and three subscales: safety consciousness (7 items), safety-related events (11 items), and occupational injuries (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1047] "This measure consists of 16 items comprising the Interference (12 items) and Separation (4 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1048] "This questionnaire is made up of 11 items (a 4-item training scale, a 3-item autonomy scale, and a 4-item technology scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1049] "The scale contains 6 items and two, 3-item subscales measuring empathy and excellent job performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1050] "There are 17 items in the scale. The overall performance factor includes 8 items, the authentic understanding factor includes 6 items, and the extras factor includes 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1051] "This is a 10-item measure. Only 6 of the 10 items on the revised LOT are used to derive an optimism score. Four of the items are filler items and are not used in scoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1052] "This measure consists of the 17-item Error Management Scale and the 11-item Error Aversion Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1053] "This measure includes 24 items in the first part and 32 items in the second part."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1054] "This measure consists of 40 items with 4 items in each of 10 scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1055] "The Achievement Motivation Measures consisted of 18 items: a 9-item social-oriented achievement motivation subscale and a 9-item individual-oriented achievement motivation subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1056] "The Brief Locus of Control Scale consists of 9 items, divided into 3 subscales: Internal Control (3 items), Chance (3 items), and Powerful Others (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1057] "The scale consists of 30 items, measuring 5 factors: Buddhist and Taoist Belief (10 items), Just World Belief (5 items), Naturalistic Belief (7 items), Immortal Soul Belief (3 items), and Protestant Belief (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1058] "This measure consists of 39 items comprising four subscales: Need for Rower (10 items), Need to influence (9 items), Ability (12 items), and Resistance to subordination (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1059] "This measure consists of 63 items comprising the following six subscales: Spouse (8 items), Parent (16 items), Kin (8 items), Neighbor (10 items), Friend (10 items), and Co-worker (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1060] "The Perceived Fit with Organization Measure consists of 9 items along three subscales: Person-Organization Fit (3 items), Needs-Supplies Fit (3 items), and Demands-Abilities Fit (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1061] "This 16-item measure consists of the following subscales: Member engagement (9 items), Communication quality (3 items), and Cohesion (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1062] "The measure consists of 47 items and five subscales: disclosure behavior at work (12 items), job attitudes (4 items), organizational support (10 items), individual differences (11 items), and coworkers' reactions (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1063] "The Lecture Reactions Scale consists of 7 items and 3 scales: technology satisfaction (3 items), enjoyment (2 items), and relevance (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1064] "The MPQ is a 78-item measure that assesses five constructs: Emotional Stability (20 items), Social Initiative (17 items), Openmindedness (14 items), Cultural Empathy (14 items), and Flexibility (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1065] "The Revised COPE Scale consists of 40 items and five, 8-item subscales: self-help, approach, accommodation, avoidance, and self-punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1066] "The Adult Criterion Q-Sort consists of 50 cards, which are divided into 5 subscales: Neuroticism (10 items), Extraversion (10 items), Openness (10 items), Agreeableness (10 items), and Conscientiousness (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1067] "This measure consists of 22 items, with both attention to positive and attention to negative information being measured by 11 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1068] "This 18-item measure consists of the 10-item anticipatory pleasure scale and the 8-item consummatory pleasure scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1069] "This is a 36-item measure (18 item pairs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1070] "The Goal Interdependence Scale consists of 14 items. A 4-item Cooperative Goal subscale, a 5-item Competitive Goal subscale, and a 5-item Independent Goal subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1071] "This 11-item measure assesses task conflict (6 items) and person conflict (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1072] "This measure consists of 16 items across 4 subscales: Standards for Service Delivery (4 items) ,Coworker Support (3 items), Supervisor Support (4 items), and Customer Orientation 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1073] "The measure consists of 8 items and 3 scales: training received (2 items), task variety (1 item), and employee autonomy (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1074] "The measure consists of 11 items and 3 scales: Ground (4 items), Approach (3 items), and Departure (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1075] "This measure consists of 5 items, though only 2 items were used to create the Benefit Scale when testing the current study's hypotheses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1076] "This measure consists of 8 items, 4 items measuring the perceived utility of organizational feedback and 4 items measuring the perceived utility of task feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1077] "This is a 13-item measure with the following factors: temporal flexibility (5 items), operational flexibility (5 items), and supportive supervision (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1078] "The measure consists of 8 items and two subscales: Change fairness (3 items) and Management support (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1079] "The ICI consists of 24 items and 3 subscales: Family Expectations (FE, 11 items), Education and Career (EC, 10 items), and Dating and Marriage (DM, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1080] "The scale consists of 32 items with a subscales: Ability to imitate (4 items), Fantasy involvement (7 items), Memory and attention (6 items), Ability to fake (3 items), Ability to play unusual roles (6 items), and Storytelling ability (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1081] "The CVMT consists of 120 items measuring six areas: Fields of Work (20 items), Job Selection (15 items), Work Conditions (20 items), Education Required (20 items), Attributes Required (20 items), and Duties (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1082] "The Union Commitment Scale contains 20 items across three subscales: Loyalty (12 items), Willingness to Work for the Union (4 items), and Responsibility to the Union (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1083] "The Life Space Scale--Short Form includes 5 scales: Cared-For Environment (20 items), Drug Culture Environment (20 items), Socially Active Environment (20 items), Athletic Environment (20 items), and Isolated Environment (20 items). Some items are scored on multiple scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1084] "The PCTS consists of 15 items and 3 subscales: behavioral activation (BA, 3 items), automatic thought work (AT, 10 items), and schema or core belief work (SC, 2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1085] "The 3PMS is an 8-item measure that contains a 4-item Pleasure based Prosocial Motivation subscale and a 4-item Pressure based Prosocial Motivation subscale with two reverse-scored items per subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1086] "The SRS contains 30 items and 4 subscales: Impulse Control (8 items), Suppression of Aggression (7 items), Consideration or Others (7 items), and Responsibility (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1087] "The scales contain 30 items and 5, 6-item scales: r-BAS, r-Fight, r-BIS, r-Freezing, and r-Flight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1088] "The Modified Daily Events Survey contains 26 items; Positive Achievement Events subscale contains 7 items, the Negative Achievement Events subscale contains 6 items, the Positive Social Events subscale contains 7 items, and the Negative Social Events subscale contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1089] "This measure consists of 50 items with each factor being assessed by 10 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1090] "The Disclosure of Trauma Questionnaire contains 34 items and three subscales: Reluctance to Talk (13 items), Urge to Talk (11 items), and Emotional Reactions During Disclosure (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1091] "The staff scientist scale consists of 24 items, while the research director scale consists of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1092] "The BIC consists of 185 items, with 11 subscales: Avoid Work (6 items), Organization (18 items), Impulsivity (9 items), Antisocial (23 items), Cleanliness (12 items), Industriousness (9 items), Laziness (12 items), Appearance (13 items), Punctuality (15 items), Formality (6 items), and Responsibility (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1093] "This is a 44-item measure consisting of demographic information, questions regarding sexual behaviors, attitudinal scales regarding condom use, questions about formal STD education, and a 12-item AIDS knowledge scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1094] "The HIV Knowledge, Attitudes, and Preventive Behaviors Questionnaire is composed of a total of 63 items (7 demographic items, 20 knowledge questions, 26 attitude statements, and 10 questions concerning past behavior)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1095] "The scale is comprised of four, 15-item subscales - Magical Ideation, Perceptual Aberration, Social Anhedonia, and Physical Anhedonia - for a total of 60 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1096] "The ALS-SF consists of 18 items. These can be divided into 3 subscales ( Anxiety/Depression, 5 items; Depression/Elation, 8 items; and Anger, 5 items) or into 6 subscales (Anxiety, 3 items; Anxiety/Depression, 2 items; Depression, 4 items; Depression/Elation, 2 items; Elation, 2 items; Anger, 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1097] "This is a 23-item measure with 11 and 12 items comprising the Functional and Dysfunctional Impulsivity scales, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1098] "The Problem Behavior Syndrome Measures consists of 43 items and five subscales: alcohol use (5 items), drug use (10), problems because of alcohol use (11), problems because of drug use (11), and deviance (6)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1099] "The measure consisted of 9 items for the 15-year-olds and 23 items for the 18- and 19-year-olds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1100] "This measure consists of 12 items comprising the following subscales: perceptions of benefits of having sex (5 items), perceptions of shame and guilt with pregnancy (4 items), and perceptions of shame and guilt with having sex (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1101] "The Sexual Self-Concept Scale is comprised 2 scales: a 17-item Sexual Arousability Scale and an 8-item Sexual Agency Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1102] "There are 12-item and an 18-item versions of the Aggressive and Withdrawn Behavior Questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1103] "The following subscales of the Adolescent Health and Behaviors Survey were used in this study: Youth’s perceived support by parents and other adults (8 items), Youth’s accountability to parents and other adults (6 items), Youth’s empowerment (5 items); Youth’s perceived school support (4 items), Self and peer values regarding risk behaviors (5 items), Quantity of other adult support (3 items), and Youth’s empathetic relationships (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                            
## [1104] "The measure consists of 3 factors: an Outcome Expectancies factor (8 items), a Stimulus–Response Prevention factor (6 items), and a Social Support-Seeking factor (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1105] "This 20-item measure consists of 4 subscales: Perceived Social Support (6 items), Negative Social Support (6 items), Instrumental Social Support (5 items), and Cultural Social Support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1106] "This measure consists of 40 items: 13 frustration, 14 modeling, and 13 normative questions. Each inquiry is addressed to four primary socialization agents: mother, father, teacher, and peer. Thus a total of 160 questions are asked of each child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1107] "The Initial STIC contains a 21-item demographic questionnaire and five \"system\" scales: Individual Problems and Strengths (44 items), Family of Origin (22 items), Relationship with Partner (25 items), Family/Household (32 items), and Child Problems and Strengths (29 items). The briefer Intersession STIC does not include the Demographic or the Family of Origin questionnaires. It contains shorter versions of each of the other questionnaires as well as 3 brief questionnaires that respectively tap the alliance between the therapist and the clients in individual, couple and family therapy."                                                                                                                                                                                                                                                       
## [1108] "The scale consists of 36 items and five subscales. The two subscales measuring sensational interests are Militarism (10 items) and Violent Occultism (7 items). The three subscales consisting of filler items are Intellectual Activities (7 items), Credulousness (7 items), and Wholesome Interests (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1109] "The scale consists of 54 items with nine, 6-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1110] "The BPI-S uses the same rating system and the same three sub-scales as the BPI-01, but has 30 items: Self-injurious Behavior (8 items), Stereotyped Behavior (12 items), and Aggressive/Destructive Behavior (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1111] "This is a 10-item instrument (one 10-item version for ages 7-13, another 10-item version for ages 14-18)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1112] "This measure consists of 9 items operationalized in terms of three dimensions (3 items per dimension): Job Performance, Job Motivation, and Patient Care Skill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1113] "The measure consists in 48-item and 80-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1114] "The measure consists of 26 items and 3 subscales: Career Insight (8 items), Career Identity (5 items), and Career Resilience (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1115] "This measure consists of 5 parts. The first section is a 19-item scale. The second section consists of 2 items. The third section consists of 4 items. The fourth section asks about the total number of journal publications, poster presentations, and conference talks produced. A demographic section also comprises the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1116] "This measure consists of 60 items with six subscales of 10 items each (Realistic, Investigative, Artistic, Social, Enterprising, and Conventional)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1117] "This 12-item measure consists of four factors (Physical Aggression, Verbal Aggression, Anger, and Hostility) of 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1118] "The BPI consists of 52 items and 3 scales: Self-injurious Behavior (SIB; 14 items), Stereotypic Behavior (24 items), and Aggressive/Destructive Behavior (11 items). Each category had a residual item for behaviors that were not explicitly listed among the items, yet met one of the generic behavior problem definitions (e.g., “other SIB”)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1119] "This is a 40-item measure with four subscales (past performance, vicarious learning, emotional arousal, and social persuasion) of 10 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1120] "The final Form is composed of 18 items, randomly ordered: Transpersonal Scale (12 items), Personal Scale (4 items), and Middle Scale (2 items operationalize each of the two directions of the spatial and temporal dimensions of self-expansiveness)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1121] "The scale consists of 22 items with 2 items measuring each of 11 features of indecisiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1122] "The scale consists of 10 items and two subscales: Normative Values (6 items) and Instrumental Values (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1123] "This measure consists of 18 items (3 items per six subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1124] "The measure consists of the following factors: Desired job task involvement (3 items), Desired job social involvement (3 items), Desired family task involvement (3 items), Desired family social involvement (3 items), Father's job involvement (2 items), Mother's job involvement (2 items), Father's family involvement (2 items), Mother's family involvement (2 items), Need for achievement (5 items), and Need for affiliation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1125] "The measure consists of 23 items comprising three subscales: compliance (8 items), identification (7 items), and internalization (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1126] "This measure contains scales measuring frequency of conflict (3 items), content of conflict (1 item), conflict avoidance (6 items), conflict behavior (3 items), conflict behavior (20 items) and resolution of conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1127] "This is a 25-item measure. The SEI contains 2 subscales: the 9-item Internal Self-Empowerment Index (ISEI) and the 16-item External Self-Empowerment Index (ESEI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1128] "The Middle School Physical Education Perception of Competence Scale consists of 15 items (3-factor model) or 7 items (2-factor model)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1129] "The measure consists of 16 items, with 5 items in the Attention subscale (Factor 1), 2 items each in the Language/Memory subscale (Factor 2), the Higher-Order Cognition subscale (Factor 3) and the Motor subscale (Factor 4), and 5 items in the Social Cognition subscale (Factor 5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1130] "The measure consists of 100 items (10 items in each of 10 scales/20 items corresponding to the Big Five)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1131] "The scale contains 15 items and two subscales: AIDS Knowledge (7 items) and Attitudes Towards Condoms (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1132] "This 10-item measure consists of two 5-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1133] "The scale consists of 6 items addressing negative (4 items) and positive (2 items) academic outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1134] "Racism Experiences scales were divided into three subscales: (a) Vicarious Racism (5 items), racism directed at other individuals, (b) Direct Racism (6 items), (c) Collective Racism (4 items), racism directed at one’s racial group. The Daily Life Experiences scale consists of 20 items. The Socialization scale comprises 19 items divided into the following two subscales: (a) Social Influences (9 items) and (b) Racial Composition (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                              
## [1135] "This 35-item scale consists of 14 items pertinent to curiosity and thirteen to the general area of achievement motivation; eight are filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1136] "The scale consists of 21 items and three, 7-item subscales: Sensitivity to pathogen, sexual disgust, and moral disgust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1137] "This measure contains 14 items related to health improvement and 13 items related to reasons for quitting smoking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1138] "The Employee Schedule Change Control Scale consists of 4 items, including 2 scales: Control Over Work Hours (1 item) and Control Over Ability to Make As-Needed Changes (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1139] "The Modes of Problem Solving Scale contains 19 items: the Associative subscale contains 10 items and the Bisociative subscale contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1140] "The scale consists of 19 items and two subscales: Desired Aspirations (13 items) and Enacted Aspirations (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1141] "The measure consists of 3 total items of which only 2 items are answered in the case of participants who did not report having casual sex partners."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1142] "This scale consists of 10 items, with career commitment and career centeredness being measured by 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1143] "This is a 29-item measure (only 21 items define the measure's two factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1144] "The measure consists of 33 items comprising four categories: Facebook as Romantic Tool (8 items), Facebook-only Relationships (8 items), Facebook as Interactive Tool (11 items), and Facebook as Real-life Supplement (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1145] "This measure consists of six subscales: Sexual Talk as Disrespectful (4 items), Satisfaction of Sexual Needs as Important (4 items), Female Virginity as Important (3 items), Comfort with Sexual Communication (8 items), Sexual Comfort (10 items), and Sexual Self-Acceptance (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1146] "This is a 30-item questionnaire comprising six subscales (5 items per scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1147] "The measure consists of 26 items and two, 13-item subscales: Maternal Warmth and Acceptance and Paternal Warmth and Acceptance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1148] "This 16-item measure consists of four 4-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1149] "This is a 24-item measure consisting of the following subscales: kindness (4 items) vs indifference (4 items), common humanity (4 items) vs separation (4 items), and mindfulness (4 items) vs disengagement (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1150] "This youth-report measure contains 26 items: 4 items assess paternal affection; 5 items assess paternal-child centeredness; 3 items assess time spent with father; 10 items assess identification with father; and 4 items assess father-child conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1151] "The Student Goals Exploration Inventory is a 35-item scale. The measure consists of five subscales assessing a) general college goals (3 items), (b) general academic orientations toward courses (15 items), (c) subject-specific goals in courses (10 items), (d) specific goal attributes (5 items), and (e) levels of student confidence in course success (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1152] "The measure consists of 5 items assessing Striving for Perfection, 5 items assessing Negative Reactions to Imperfection, and 8 items assessing Perceived Parental Pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1153] "The questionnaire consists of 10 items and two subscales: Emotional-Anxiety (5 items) and Anxious-Mood (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1154] "The scale consists of 23 items and 3 subscales: Biological Basis (8 items), Discreteness (8 items), and Informativeness (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1155] "Social skills items: Parent form (39 items); Teacher form (30 items); Student elementary form (34 items); Student secondary form (34 items). Problem behavior items: Parent form (10 items); Teacher form (10 items). Academic competence items: Teacher form (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1156] "This form of inventory consist of 7 items; an 11-item version was also"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1157] "The final version of the American-International Relations Scale consisted of 34 items: 20-item Perceived Prejudice Subscale, 11-item Acculturation Subscale, and a 3-item Language Usage Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1158] "The measure consists of 14 Personal and Social Values scales. The Personal Values scales are: Work (16 items), Orderliness (22), Aesthetic (21), Health (20), Obedience (16), Independence (20), and Altruism (20). The Social Values scales are Work (16 items), Orderliness (19), Aesthetic (21), Health (20), Obedience (16), Independence (19), and Altruism (18)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1159] "The scale consists of 36 items and 2 scales: face-to-face interactions (23 items) and online interactions (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1160] "The scale consists of 30 items and five scales: Self-Efficacy (8 items), Outcome Expectations (8 items), Interests (6 items), Goals (6 items), Mastery Experiences (2 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1161] "The measure contains 20 items and two subscales: possible depression interventions (13 items) and overreaction to depressive symptoms (7 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1162] "This 6-item measure consists of 2 items measuring instrumental support and 4 items measuring emotional support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1163] "The questionnaire contains 13 items and four subscales: Worries (3 items), Powerlessness (4), Personal Adjustment (4), and Social Isolation (2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1164] "This 9-item inventory consists of two subscales: Emotional Support (6 items) and Practical Support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1165] "This 9-item measure consists of a 4-item reward factor and a 5-item cost factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1166] "Each of the scales contains 2 items (4 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1167] "This is a 14-item measure. The authors also created a 5-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1168] "The questionnaire has 7 items and two subscales: pain intensity (3 items) and pain-related disability (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1169] "This is a 25-item measure. Only 16 questions are to be asked every time the instrument is applied."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1170] "The NCQ-R consists of 67 items comprising two sets--one designed to directly reflect noncognitive dimensions (38 items) and a second set of experimental items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1171] "The scale contains 20 items and four subscales: depressed affect (DA; 7 items), positive affect (PA; 4 items), somatic complaints (SC; 7 items), and disturbed interpersonal relationships (IP; 2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1172] "This measure consists of 5 parts, with the 4th part being comprised of 45 items. However, based on a factor analysis in the current study, the final five factors in part 4 consists of 28 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1173] "The Task-Mastery Goal, Performance Goal, and Work-Avoidant Goal scales consists of 5 items each (15 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1174] "Each of the measure's 12 scales are comprised by 9 items, each in the form of statements about behavior and feelings, for a total of 108 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1175] "The measure consists of 65 items and 5, 13-item subscales: Energy/Extraversion, Agreeableness, Conscientiousness, Emotional Instability, and Intellect/Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1176] "The measure consists of 14 items and two scales: Perceived self-efficacy to manage positive affect (5 items) and Perceived self-efficacy to regulate negative affect (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1177] "This measure consists of 52 items comprising four factors: Emotional Warmth (19 items), Rejection (17 items), Overprotection (12 items) and Favouring Subject (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1178] "The full measure consists of 52 items (33 items tapping Cognitive Appraisal and 19 items tapping Coping)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1179] "This 285-item questionnaire consists of 15 scales. The scales are as follows: (1) Poor Health Mood (11 items). (2) Excess Time Demands (14 items). (3) Negative Attitude Toward Index Case (23 items). (4) Overprotection/Dependency (13 items). (5) Lack of Social Support (10 items). (6) Over-commitment (Martyrdom) (7 items). (7) Pessimism (13 items). (8) Lack of Family Integration (23 items). (9) Limits on Family Opportunity (9 items). (10) Financial Problems (17 items). (11) Physical Incapacitation (14 items). (12) Lack of Activities for Index Case (6 items). (13) Occupational Limitations for Index Case (7 items). (14) Social Obtrusiveness (7 items). (15) Difficult Personality Characteristics (32 items)."                                                                                                                                  
## [1180] "The Phenomenological subscale consists of 127 questions, the Inconsistency subscale contains 11 pairs of questions, and the Malingering subscale includes 30 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1181] "The scale contains 20 items and 5 subscales: Website-Service Innovativeness (3 items), Overall E-Service Quality (3 items), Trust (4 items), Website Loyalty (3 items), Word-Of-Mouth Behavior (2 items), and Perceived Internet Expertise (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1182] "The Behavioral Intention Battery contains 13 items: Loyalty (5 items), switch (2 items), pay more (2 items), external response (3 items), and internal response (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1183] "The questionnaire consists of 60 items and 6 subscales, containing 10 items each: Attitudes and opinions, tastes and interests, work (or studies), money, personality, and body."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1184] "The questionnaire consists of 30 items and 7 subscales: Significance (5 items), Worthiness (5), Appearance/Social Acceptibility (5), Resilience and Determination (5), Competence (4), Control Over Personal Destiny (4), and Value of Existence (2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1185] "The Psychotic Symptom Rating Scales contains 17 total items in two scales: Auditory hallucinations (11 items) and delusions (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1186] "Five scales were constructed, based on results of simultaneous components analysis and considerations of conceptual coherence and comparability across client and therapist perspectives: Bond (6 items), Partnership (4 items), Confidence (7 items), Openness (5 items), and Client initiative (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1187] "This is a 12-item measure of beliefs about racial groups in terms of their uniformity (4 items), informativeness (4 items), and inherence (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1188] "The Quality of Life Questionnaire—Spanish Version consists of 24 items assigned to three subscales: Competence (8 items), Satisfaction (10 items), and Self-determination (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1189] "The scale consists of 9 items and two subscales: Bullying (5 items) and Anger (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1190] "Family expectations for creativity, leader expectations for creativity, and customer expectations for creativity are measured with 4 items each (12 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1191] "The measure consists of 44 items assessing eight dimensions: extensive service training (6 items), information sharing (8), self-management service teams and participation (6), compensation contingent on service quality (8), job design for quality work (5), quality–based performance appraisal (4), internal service (2), and service discretion (5)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1192] "This 10-item measure consists of two 5-item scales (Susceptibility and Severity)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1193] "The measure consists of 12 items and two subscales: the Barrier subscale (7 items) and the Benefit subscale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1194] "The modified Barriers Scale consists of 9 items; the modified Benefits Scale consists of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1195] "The scale consists of 11 items and two subscales: Living Will (LW; 5 items) and Health Care Proxy (HCP; 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1196] "The SETRS consists of 19 items and four subscales: Perseverance (5 items), Procrastination (5), Self-Confidence (5), and Achievement (4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1197] "The measure consists of 60 items and 8 subscales: Shock (7 items), Anxiety (8 items), Denial (7 items), Depression (8 items), Internalized Anger (8 items), Externalized Hostility (7 items), Acknowledgement (7 items), and Adjustment (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1198] "This is a measure of seeking and obtaining health information about a medical concern (7 items) and mentioning the acquired health information to the physician (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1199] "This is a 60-item measure, and consists of six 10-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1200] "This is a 50-item measure. It consists of 5 scales with 10 items each: Surgency, Agreeableness, Conscientiousness, Emotional Stability, and Intellect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1201] "The Scale of Marriage Problems-Revised contains 43 items across 5 subscales: Problem-solving, decision-making, and the goals of marriage (10 items); Childrearing and home labor (8 items); Relatives and in-laws (7 items); Personal care and appearance (6 items); Money management (6 items); and Outside friendships and expression of affection (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1202] "The MDI contains 12 items, in principle, as items 8 and 10 each have two subitems. Functionally, though, it contains 10 items as it is only the highest score of either of the subitems that are counted."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1203] "This version of the PARQ contains 24 items: The warmth/affection scale contains 8 items; the hostility/aggression and indifference/neglect scales each contain 6 items, and the undifferentiated rejection scale contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1204] "This version of the PARQ contains 24 items: The warmth/affection scale contains 8 items; the hostility/aggression and indifference/neglect scales each contain 6 items, and the undifferentiated rejection scale contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1205] "The MRI consists of 33 items assessing 11 mentor roles: sponsorship, coaching, protection, challenging assignments, exposure, friendship, role modeling, counseling, acceptance, parent, and social. Each sub scale contained 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1206] "This 11-item measure consists of a 6-item work-to-family transitions factor and a 5-item family-to-work transitions factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1207] "The measure consists of 4 items: 3 questions and an overall visual analog rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1208] "The measure's scales include: Unskilled/Semiskilled Labor (31 items), Male-dominated (8 items), Engineering/ Technology (9 items), Science (17 items), Medical (13 items), Arts (11 items), Commerce (17 items), Government/Law (11 items), and Education (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1209] "The scale consists of 53 items and four subscales: Somatic Anxiety (14 items), Cognitive Anxiety (10), Fear (14), and Escape and Avoidance Responses (15)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1210] "This measure consists of two factors: Positive Valuation of Life (13 items) and Negative Valuation of Life (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1211] "The Positive and Negative Social Exchanges is composed of a total of 24 items: Three factors for positive social exchanges, and three factors for negative social exchanges. Each of the 6 factors is assessed with 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1212] "The measure consists of 65 items which represent eight broad goal categories: social relationships (15 items), financial concerns (10), affect control (9), academic/occupational (8), health (7), independence (7), moral or religious (5), and organization (4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1213] "The TAS-E consists of 30 items and four subscales: Physiological Hyperarousal (9 items), Social Concerns (6 items), Task Irrelevant Behavior (8 items), and Worry (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1214] "The test has 22 items. For the first 8 items only one segment is needed to complete the bar, for the next 8 two segments are needed, and for the last 6 three are required."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1215] "The APM consists of some exercises (Set I with 12 items) that can also be used for screening, and a second set (II) with 36 items to assess this area more thoroughly."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1216] "There is a long form with 39 items and a Rasch-homogenous short form with 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1217] "There is a standard form with 66 items (6 for each dimension) and the short form AVEM-44 with 44 items (4 for each dimension)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1218] "The long form EBF-72/3 consists of 72 items. The two parallel short forms EBF-24A/3 and EBF-24B/3 each contain 24 items. These test forms are standardised self-assessment tests that use 12 subscales to measure the frequency of stress and recovery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1219] "The long form S1 consists of 440 items (21 subscales); the short form S2 consists of 200 items (9 subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1220] "The measure consists of 21 items assessing attitudes toward the Apple eMac and 4 items assessing purchase intention toward the Apple eMac."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1221] "This 24-item measure consists of three 8-item scales: the Interpretation Anxiety, Examination Anxiety, and Fear for Asking for Help subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1222] "There are two long forms with 93 items (present and past) and a standard short form (present without scale 5) with 64 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1223] "This test covers the following four ability dimensions: Verbal Intelligence (35 items), Numerical Intelligence (40 items), Visualisation (17 items) and Memory (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1224] "This 24-item questionnaire consists of two demographic items and 22 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1225] "The Communicative Skillfulness of General Practitioners Measure consists of 9 items: 5 items for the Empathy subscale, and 4 items for the Support subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1226] "Both the Block and Block Rotation Tests contain 16 items each' the Cardboard Model Test contain 9 item. each is timed to 10 minutes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1227] "In Series I, Examination A contains 17 items; Examination B contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1228] "This is a 9-item measure. Three subscales compose the overall scale: Precontemplation (3 items), Contemplation (3 items), and Action (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1229] "Arithmetic (20 items), Shapes (54 items), Same-Word (30 items), Reasoning (25 items) and Mechanical (48 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1230] "The Spatial Relations Test consists of three parts; Part I (Identical Blocks) contains 20 items; Part II (Surface Development) consists of 25 items; and Part III (Hidden Blocks) contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1231] "This test contains 113 items: The Embedded Figures Test contains 12 items, the Card Rotations Test contains 14 items, the Paper Folding Test contains 10 items, the Surface Development Test contains 6 items, the Rotations Test contains 9 items, the Perspectives Test contains 12 items, the Copying Test contains 32 items, and the Vocabulary Test contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1232] "This 13-item measure consists of two subscales. The Positive Reaction scale includes 7 items, while the Negative Reaction scale includes 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1233] "The Costs instrument consists of 17 items; the Benefits instrument consists of 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1234] "The TLI consists of eight items and three subscales: Impoverishment (2 items), Disorganisation (4 items), and Other (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1235] "This measure contains separate scales that measure self-esteem (6 items), and feelings of stigmatization (6 items) with regard to mental illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1236] "This measure consists of 9 items (three different versions with 3 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1237] "The measures consists of an 8-item Communal Perceptions Scale and a 5-item Exchange Perceptions Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1238] "The measure consists of 49 items and 2 subscales: Heterosexual Relationships (32 items) and Homosexual Relationships (17 items). These subscales are further divided by social relationship as follows: Husband/wife (8), Wife/husband (7), Boyfriend/girlfriend (8), Girlfriend/boyfriend (7), Boyfriend/boyfriend (8), Girlfriend/girlfriend (7), Heterosexual mutual combat (2), and Homosexual mutual combat (2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1239] "The scale consists of 11 items and two subscales: affective reactions (5 items) and perceived utility (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1240] "the Spatial Thinking test contains 24 items and Visualization Test contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1241] "The finalized EPQ-R contained 100 items comprised of 32 items on the new P scale, and very slight changes to the E and N scales so that the former has 23 and the latter 24 items, leaving L with the original 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1242] "The scale consists of 23 items and five subscales: anhedonia (9 items), avolition (4 items), asociality (3 items), blunted affect (5 items) and alogia (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1243] "The Rotation-Inversion Test contains 30 items/. The Cube\" Test of Spatial Ability contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1244] "The scale consists of 13 items and 4 subscales: stage of change (4 items) pros (3), cons (3), and assertiveness (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1245] "This measure consists of 30 items (6 items measuring each of the Big Five factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1246] "This 18-item measure consists of three factors, measured by 6 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1247] "The Shyness Scale consists of 9 items and the Sociability Scale consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1248] "Team performance was measured by 3 items in study 1 and by 7 items in study 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1249] "This is a 6-item measure, with family support and belongingness support being measured by 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1250] "The ZKPQ-50-cc contains 50 items and 5, 10-item subscales: Impulsive Sensation Seeking, Neuroticism–Anxiety, Aggression–Hostility, Activity, and Sociability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1251] "The test consists of 6 tasks and 41 questions for a total of 47 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1252] "The 'morality and fairness' leadership dimension is assessed using 6 items; the 'role clarification' leadership dimension is assessed using 5 items; and the 'power sharing' leadership dimension is assessed using using 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1253] "The 13-item JSQ was operationalized by four a priori dimensions: Work overload (5 items), Role ambiguity (3 items), Under-utilization of skills (3 items), and Role conflict (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1254] "Three parenting behavior variables were extracted: Supervision (2 items), Punishment (5 items), and Rules at Home (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1255] "The Emotional Climate for Children Questionnaire is a 46-item measure across three subscales: an 18-item Pleasure scale, a 12-item Arousal scale, and a 16-item Dominance scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1256] "The WELS contains 33 items and five subscales: Awareness of Emotions in Self and Others (12 items), Tolerance of Difference or Conflict (8), Interpersonal Relationship Skills (6), Flexibility in Perspective-Taking and Behavior (4), and Self-Management Skills (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1257] "This measure consists of 23 items and has 4 personality-factor subscales: (a) AS (Anxiety Sensitivity, 5 items), which motivates individuals to use substances for their anxiety-relieving effects; (b) I/H (Introversion/Hopelessness, 7 items), which reflects depression-specific pathways to substance use; (c) SS (Sensation Seeking, 6 items), which reflects thrill and danger seeking, and increases psychological arousal; and (d) IMP (Impulsivity, 5 items), which is characterized by a rapid response to cues for potential reward and a minimal tolerance for negative emotions."                                                                                                                                                                                                                                                                          
## [1258] "The Ohio State Teacher Efficacy Scale has two forms: a long form with 24 items and a short form with 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1259] "The Haptic Intelligence Scale for Adult Blind consists 88 items in 6 subtests: Digit Symbol (40 items), Block Design (7 items), Object Assembly (4 items), Object Completion (14 items), Pattern Board (9 items), and Bead Arithmetic (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1260] "The questionnaire includes 41 items, 16 items dealing with emotional reactions and 25 with coping behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1261] "This measure consists of 10 items and the following dimensions: General leadership (4 items), Loyalty (2 items), and Risk-taker (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1262] "The Constructiveness and Competitiveness of the CEO-Top Management Team Relationship Measure consists of 8 items: a 5-item Constructiveness Subscale; and a 3-item Competitiveness Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1263] "The scales 8 items are intended to measure “Overall Performance” (5 items) and “Ability to Lead Change” (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1264] "The Cognitive and Affective Trust in Supervisor Scales contains 2 scales: the Cognitive Trust Scale (5 items) and the Affective Trust Scale (5 items). Only the Cognitive Trust Scale was used in the present study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1265] "The Stress Response Scale consists of 40 common descriptors of children's behavior. They form 5 clusters, as follows: Passive-Aggressive (13 items), Repressed (6 items), Dependent (6 items), Impulsive (Acting Out; 14 items) and Impulsive (Overactive; 9 items). Some items are replicated across item clusters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1266] "The questionnaire consists of 2 parts: the 50-item Parental Environment Questionnaire (PEQ; Elkins, McGue, & Iacono, 1997) and a 43-item structured telephone interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1267] "Leader group prototypicality, trust in leadership, and leadership effectiveness perceptions are measured by 2 items, 2 items, and 9 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1268] "This 6-item scale measures primary appraisals and secondary appraisals (each measured by 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1269] "The Affiliative Extra-Role Behavior Measure consists of 7 items: A 4-item Peer Subscale and a 3-item Supervisor Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1270] "This questionnaire contains 40 items across the following dimensions: Communication (6 items), Gross Motor (6 items), Fine Motor (6 items), Problem-solving (6 items), and Personal-Social (6 items), and Overall comments (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1271] "The TABS Screener contains 15 items. The TABS Assessment Tool contains 55 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1272] "Two sets of items were chosen to measure perceived math/science-specific choice barriers (21 items) and choice supports (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1273] "The ESI contains the following subscales: Attention and Speech Impairment (10 items), Ideas of Reference (7 items), Auditory Uncertainty (8 items), and Deviant Perception (9 items) and Frankness (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1274] "The Co-worker, Supervisory, and Peer Support Measure consists of 9 items: a 3-item Co-worker Subscale; 3-item Supervisory Subscale; and 3-item Peer Support Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1275] "Nine items measure Emotional exhaustion (3 items), Depersonalization (3 items), and Personal accomplishment (3 items) factors in Burnout."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1276] "The LSQ-R consists of 50 items and two subscales: satisfaction (20 items) and problems (30 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1277] "This measure consists of 30 items comprising 5 subscales (6 items in each subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1278] "The scale consists of 16 items and 5 subscales: Task-oriented leadership role (5 items), Relations-oriented leadership role (4), Change-oriented leadership role (2), Diversity-oriented leadership role (2), and Integrity-oriented leadership role (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1279] "The Neighbourhood Collective Efficacy Scale is an 8-item measure. It includes two subscales: Neighbourhood Young People Cohesion (4 items) and Neighbourhood Informal Social Control (of Young People; 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1280] "The Family Collective Efficacy Scale is an 8-item measure. It includes two subscales: Family Cohesion (4 items) and Family Informal Social Control (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1281] "The scale consists of 22 items and 2 subscales: Reasons for employing teens (10 items) and reasons against employing teens (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1282] "The measure consists of 81 items divided into 3, 27-item emotional categories: threat, positive, and neutral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1283] "The ELW consists of 38 items distributed across 7 subscales: People orientation (7 items), Fairness (6 items), Power sharing (6 items), Concern for sustainability (3 items), Ethical guidance (7 items), Role clarification (5 items), and Integrity (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1284] "The measure consists of a 6-item latent schizophrenia scale, 14 items assessing schizotypy, 19 items assessing prodromal symptoms, and the 4th edition of the DSM-IV schizophrenia specialist diagnostic assessment sheet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1285] "The measure consists of 6 items, with surface similarity and deep-level similarity being measured by 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1286] "The Personal Reaction Scale consists of 41 items and 6 subscales: Fate (10 items); Social-self (6 items); Personal-self (9 items); Self-determination (5 items); Luck (7 items); and Powerlessness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1287] "The English test contains 80 items; the Math test contains 75 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1288] "This is a 30-item measure with three subscales: Computer Anxiety Subscale (10 items), Computer Liking Subscale (10 items), and Computer Confidence Subscale (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1289] "The BACESS is a 13-item measure, with 3 items in Phase 1 and 10 items in Phase 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1290] "The scale consists of 41 items and 3 subscales: impact of experiences (29 items), impact of support (6 items), and dimensions of psychotic experiences (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1291] "The Expectancy for Success in Traditional and Nontraditional Occupations Scale is composed of 48 items, 4 items in each of 12 occupations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1292] "For women, a 2-factor solution (sex/aggression, 26 items; disease/dirt/contamination, 10 items) was optimal. For men, just 1 factor (sex/aggression, 33 items) emerged."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1293] "The measure comprises 24 items and three, 8-item subscales: Academic self-efficacy, Social self-efficacy, and Emotional self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1294] "The questionnaire consists of 23 items measuring components of the dominant social paradigm (DSP); 7 items measuring environmental attitudes; 6 items measuring perception of individual and social change; and 4 demographic items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1295] "This measure consists of six 6-item scales (a total of 36 items): Psychological Distress, Grandiose Beliefs, Persecutory Beliefs, Euphoric Mood, Intrusive Thoughts and Acts and Somatic Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1296] "The Checklist Pain Behavior--10-Item Version consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1297] "The Pain Stages of Change Questionnaire--Norwegian Version consists of 26 items and the following three subscales: Precontemplation (5 items), Contemplation (11 items), and Action/Maintenance (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1298] "The Scale consists of 10 items that measure nonverbal communicative pain behavior (3 items), verbal communicative pain behavior (3 items), and protective pain behavior (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1299] "Intrapersonal EMA is measured with 18 items; interpersonal EMA is measured with 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1300] "The measure consists of 24 items and 8 subscales: physical abuse (2 items), sexual abuse (2 items), neglect (5 items), parental death/divorce/loss (2 items), parental mental illness (5 items), parental substance disorder (4 items), parental criminal behavior (2 items), and family economic adversity (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1301] "The Aiken Attitude toward Mathematics Scales contains 38 items: E Scale (11 items), V Scale (10 items) and 17 demographic items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1302] "The Role-Specific Stress Scale contains 35 items: Marital role (6 items), Occupational role (18 items), and Household role (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1303] "The Role-Specific Strains Measure contains 35 items: Marital role (6 items), Occupational role (18 items), and Household role (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1304] "This measure consists of 21 items inquiring about three aspects of emotion reactivity: sensitivity subscale (8 items), arousal/intensity subscale (10 items), and persistence subscale (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1305] "The PODS consists of 16 items and two, 8-items subscales: Problems and Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1306] "Part I contains 30 items; Part II consists of 3 items; and Part III has 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1307] "Form II contains 150 items; the Young Adult/College/Adult Form contains 175 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1308] "This is a 30-item measure with four subscales: Precontemplation (7 items), Contemplation (10 items), Action (6 items), and Maintenance (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1309] "Confirmatory factor analysis resulted in 2 factors: Controlled (8 items), and Automatic (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1310] "The original measure consists of 95 items, though a shortened 45-item measure was suggested in the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1311] "The final inventory consists of 57 items, with 19 items on each of three scales assessing compliance, aggression, and detachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1312] "This is a 16-item measure. It consists of two subscales: Activity Engagement (9 items) and Pain Willingness (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1313] "The final measure consists of 13 items across three subscales: internalizing/catastrophizing (5 items), positive self-statements (4), and problem-solving (4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1314] "The measure consists of 28 items across 5 subscales: Maintaining Contacts (5 items), Socializing (7 items), Engaging in Professional Activities (8 items), Participating in Church and Community (4 items), and Increasing Internal Visibility (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1315] "This is a 19-item measure. Factor analysis yielded 2 factors: internal networking (11 items) and external networking (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1316] "The mother form consists of 34 items; the father form consists of 29 items. The combined form consists of 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1317] "The measure consists of 36 items comprising three 12-item subscales: Frenetic, Underchallenged, and Worn-out."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1318] "The ACS has 42 items and 4 subscales: anger (8 items), depression (8), anxiety (13), and positive affect (13)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1319] "The full CES consists of 20 items. A short 7-item version also exists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1320] "The scale consists of 12 items and two subscales: physical distress (4 items) and psychological distress (8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1321] "The questionnaire consists of 18 items and 5 subscales: If the first aider has interrupted someone who is in the process of injuring themselves (6 items), If the first aider suspects someone has been injuring themselves (5), Avoiding Self-Injury (2), Harm Minimisation (1), and Professional Help (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1322] "The scale consists of 30 items and two subscales: Anxiety/Depression (15 items) and Depression (15)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1323] "This 15-item measure consists of a 9-item self-reflectiveness subscale and a 6-item self-certainty subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1324] "The Four-Dimensional Symptom Questionnaire comprises 50 items distributed over the four scales: Distress scale (16 items), Depression scale (6 items), Anxiety scale (12 items), and Somatization scale (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1325] "Tobacco and alcohol use are tapped by 3 items each; Drug use is tapped by 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1326] "Parent care stress is assessed with 15 items; stress in the mother role is assessed using 12 items; wife role stress is assessed with 12 items; and employee role stress is assessed using 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1327] "The Gender Rejection Sensitivity Questionnaire is composed of 22 items: 11 scenarios with 2 questions each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1328] "The scale questionnaire consists of 19 items and 3 subscales: Militarism (10 items), Paranormal Interests (6 items), and Criminal Identity (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1329] "The core section of the measure consists of 31 items that assess caregiving consequence. Of those, 27 items fall into four subscales: tension (9 items), supervision (6 items), worrying (6 items), and urging (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1330] "The Verona Service Satisfaction Scale--European Version contains 54 items in seven dimensions: Overall satisfaction (3 items), Professional skills and behaviour (16 items), Information (3 items), Access (2 items), Efficacy (8 items), Types of intervention (17 items), and Relative's involvement (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1331] "The version of the SCAP-HQ in this field test is a 100-item measure, including 55 items that measure relevant outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1332] "The Lifetime Dimensions of Psychosis Scale is composed of 20 items (reduced from an initial version with 33 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1333] "The scales are: (i) sources of pressure in the job (61 items); (ii) coping skills (28 items); (iii) type A behaviour pattern (14 items); (iv) job satisfaction (22 items); (v) locus of control (12 items); and (vi) mental and physical health (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1334] "The inventory consists of 50 items and five, 10-item subscales: Physiological needs, Safety and security, Belonging, Esteem, Self-actualization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1335] "The scale comprises 10 items and two subscales: parental affection (5 items) and parental control (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1336] "The measure consists of 21 items and two subscales: Stigma (9 items) and Discrimination (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1337] "The measure consists of 44 items and two subscales: Hard Signs (25 items) and Soft Signs (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1338] "The BADBI consists of 20 items and three subscales: active coping (11 items), social coping (5 items), and passive distraction (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1339] "The measure consists of 12 items and three subscales: poverty of speech (4 items), flat affect (6 items), and psychomotor retardation/poverty (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1340] "The measure contains 50 items and 7 scales: Disorganization (9 items), Magical Ideation (7), Physical Anhedonia (5), Positive Symptoms (8), Social Anhedonia (6), Social Avoidance (6), and Uncommunicativeness (6)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1341] "The measure consists of 21 items and two sections: Stigma (9 items) and Discrimination (12 items). It also includes a demographics section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1342] "Several revisions were made to the scale, resulting in a 60-item measure with items loading on 4 factors. The first factor included 16 items and was labeled Rational Coping. Factor 2 included 15 items and was labeled Detached Coping. Factor 3, labeled Emotional Coping, comprised 16 items, and Factor 4, labeled Avoidance Coping, comprised 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1343] "This measure consists of the 37-item GCRS-I and the 16-item GCRS-II."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1344] "The measure consists of 29 items and four subscales: mental defeat (12 items), mental planning (9 items), mental confusion (5 items), and detachment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1345] "The Appraisal of Emotions Questionnaire consists of 7 items; the Appraisal of Actions Questionnaire consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1346] "The Fear Beliefs Questionnaire is composed of 23 items. There are 2 practice items followed by 21 items made up of seven different questions, each of which was repeated three times: once for each animal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1347] "This is a 10-item measure with each of the two subscales (Genetically Modified and Organic Foods) being measured by 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1348] "The scale consists of 47 items that can be allocated to six subscales: social phobia (nine items), panic disorder (nine items), major depressive disorder (10 items), separation anxiety disorder (seven items), generalized anxiety disorder (six items), and obsessive-compulsive disorder (six items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1349] "Item exclusion and revision processes resulted in the retention of 11 items comprising three subscales: Ecological Welfare (5 items), Political Values (4 items), and Religion (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1350] "Form A: 6 items, form B: 6 items, long form: 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1351] "The measure consists of 12 items tapping contamination, 8 items tapping cleanliness, and 3 items tapping animal attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1352] "The total measure consists of six vignettes, 7-item Social Distance Scale, a Characteristics Scale with 20 bipolar adjective pairs, an Affective Reaction Scale with 10 bipolar adjective scales, a Skill Assessment Scale with 8 items, and a Dangerousness Scale with 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1353] "The measure consists of 20 items and two subscales: Patient-Reported Compliance (7 items) and Patient-Reported Noncompliance (13)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1354] "The Drug Attitude Inventory—10-Item Version consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1355] "This 48-item measure consists of four 12-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1356] "There are two categories of variables that capture passive violations of prescriptive rules: \"household living skills\" (4 items) and \"social activities\" (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1357] "The Category Width Scale is composed of 20 items with 2 parts each, for a total of 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1358] "The Facebook Self-Disclosure Scale is composed of 17 items: Six items measured the amount of self-disclosure in Facebook, five items formed a composite measure for self-disclosure honesty, 3 items assess self-disclosure intent, and a final three items measure the positivity dimension of self-disclosure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1359] "The MCQ-SAM consists of seven subscales: Cognitive Self-Consciousness (5 items), Positive Beliefs (5 items), Cognitive Confidence (5 items), Uncontrol (5 items), Unwanted Thoughts (2 items), Consistency (4 items), and Normal (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1360] "The long version of the Game Addiction Scale contains 21 items; the short version contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1361] "The Motivations for Using Second Life Measure contains three subscales: Identity (13 items), Social/Entertainment (16 items), and Achievement (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1362] "The initial clinical interview includes the following items: Aggression (6 items), Frustration tolerance (7 items), Interpersonal relations (14 items), Relations with parents (6 items), Positive social affects (4 items), Anxiety (5 items), Suspiciousness (2 items), Feelings of rejection & loneliness (6 items), Self-esteem (4 items), Task-oriented behavior (5 items), Mood pathology (3 items), Activities and interests (12 items), Sexual identification (1 item), Daydreaming (1 item), Verbal communication skills (1 item), Shame (5 items), Eating & oral habits (4 items), and Orderliness (1 item)."                                                                                                                                                                                                                                                  
## [1363] "Green et al Paranoid Thought Scales contain 16 items reflecting ideas of social reference and 16 items reflecting ideas of persecution."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1364] "For sexual adjustment, 4 items are presented to married respondents (present or formerly); 4 items are presented to single respondents aged 30 years or older; and 5 items are presented to single respondents under the age of 30. Social-personal adjustment is assessed with one item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1365] "This measure consists of 58 items assessing Identity, 26 items assessing Cause, 6 items assessing Timeline Acute/Chronic, 4 items assessing Timeline Cyclical, 11 items assessing Consequences, 7 items assessing Personal Control, 5 items assessing Treatment Control, 5 items Illness Coherence, and 9 items assessing Emotional Representation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1366] "The measure contains 22 items and seven subscales: Usefulness (2 items), Ease of Use (4), Image (3), Enjoyment (4), Cost (3), Satisfaction (3), and Intention (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1367] "This 11-item scale measures the following constructs: Satisfaction (3 items), Ambivalence (3 items), Involvement (3 items), and Loyalty (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1368] "Measured constructs included: intention (3 items), behavioral beliefs (5 items), outcome evaluations (5 items), normative beliefs (6 items), motivation to comply (6 items), control beliefs (7 items), and perceived power (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1369] "This measure consists of 12 items and a 3-factor solution: Amount (6 items), Change (3 items), and Peer Pressure (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1370] "The measure consists of 13 items and four subscales: Career Planning (4 items), Proactive Skill Development (3), Career Consultation (3), and Network Building (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1371] "The CAD-SAS comprises a two part incident rating form. Part 1 consists of 6 questions; Part 2 depicts a decision tree which is a graphic representation of the 7 items, possible answers, and outcome categories contingent on the responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1372] "The measure consists of 39 items and four subscales: Receiving Social Support (14 items), Finding Positive Meaning (14), Receiving Useful Information (9), and Helping Others (2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1373] "The measure consists of 11 items and three subscales: Affective (3 items), Cognitive (5), and Behavioral (3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1374] "This is a 6-item measure, consisting of three 2-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1375] "The Interpersonal Behavior Inventory is a 60-item questionnaire. This scale specifically measures patient perceptions of: 1. staff who endorse the attitude of restrictive control (14 items), 2. staff who endorse the attitude of protective benevolence (11 items), and 3. staff who endorse the attitude of nontraditionalism (35 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1376] "The Hare Self-Esteem Scale consists of 30 items divided into three 10 item subscales corresponding to peer, home, and school self-esteem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1377] "The Junior and Senior High School Classification Test contains 100 items: The Information Test contains 40 items; the Opposites Test contains 40 items; and the Arithmetic Problems Test contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1378] "This measure consists of 70 questions, 5 questions for each of 14 word problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1379] "A total of 17 constructs are in the questionnaire: Quiescence/agitation-related affect (2 items) and cheerfulness/dejection-related affect (2 items); Actual behavior in using any of 8 types of behaviors/products/services; Perceived effectiveness of each of the preceding; Importance (2 items); Concern with visible signs of skin aging (2 items); and Behavioral volitions (an inventory of 9 behaviors/products/services commonly used to deal with skin aging)."                                                                                                                                                                                                                                                                                                                                                                                               
## [1380] "This measure contains 21 items comprising three constructs: Traditional Management (4 items), Constructivist Teaching (10 items), and Traditional Teaching (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1381] "The measure contains 33 items and two subscales:verbal intimacy (11 items) and affective intimacy (22 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1382] "The measure consists of 29 items and seven subscales: Perceived severity (5 items), Vulnerability (5 items), Locus of control (3 items), Self-efficacy (5 items), Response efficacy (5 items), and Response cost (3 items), and Subjective omission of security (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1383] "The measure consists of 18 items and five subscales: Familiarity (1 item), Reputation (4), Website Loyalty (3), Perceived Usability (6), and Satisfaction (4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1384] "The two versions of the measure contain 100 items and 88 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1385] "This is an 11-item measure with three factors: Expectation of Tit-for-Tat (3 items), Positive Reactions to Favors (4 items), and Negative Reactions to Favors (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1386] "The Goal Orientation Scales contains 18 items in three scales: Task Goal Orientation (6 items), Ability-Approach Goal Orientation (6 items), and Ability-Avoid Goal Orientation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1387] "The Combined Delinquency Questionnaire contains five subscales: Psychopathy (25 items), Neuroticism (27 items), Inadequacy (9 items), Dissension (11 items), and Scholastic Maladjustment (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1388] "The final survey consists of 9 items distributed across three factors: Use of the Internet for computer-based entertainment (5 items), Use of the Internet to facilitate offline entertainment (2 items), and Use of the Internet for information about the entertainment world (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1389] "The measure consists of 16 items and six subscales: Social Norm (3 items), Perceived Ease of Use (3 items), Perceived Cohesion (3 items), Perceived Enjoyment (3 items), Preference (2 items), and Loyalty (Intention to reuse; 2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1390] "The measure contains 14 items and four subscales: Negative spillover from work to family (4 items), Positive spillover from work to family (3 items), Negative spillover from family to work (4 items), and Positive spillover from family to work (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1391] "The measure consists of 37 items and 15 subscales: Behavior (4 items), Attitude (3 items), Subjective Norms (2 items), Perceived Behavioral Control (3 items), Risk (3 items), Perceived Ease of Use (2 items), Perceived Usefulness (2 items), Compatibility (2 items), Peer Influence (2 items), Superior Influence (2 items), Self-efficacy (2 items), Resources (2 items), Technical Support (2 items), Pressure (2 items), Experience (2 items), and Security (2 items)."                                                                                                                                                                                                                                                                                                                                                                                           
## [1392] "This is a 10-item measure assessing perceived usefulness (5 items) and perceived ease of use (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1393] "The measure consists of 216 items and 18 subscales (12 items each): History of Science; Politics; Sport; History; Classical Music; Art; Literature; General Science; Geography; Cookery; Medicine; Games; Discovery and Exploration; Biology; Film; Fashion; Finance; and Popular Music."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1394] "A final set of 30 items were classified into 3 domains: physical (8 items), psychological (11 items) and social (11 items). A total of 17 items were chosen to comprise the specific module."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1395] "This is a 6-item measure with the following constructs: global satisfaction (2 items), sexual satisfaction (2 items), and emotional satisfaction (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1396] "The Affirmative Counseling Behaviors Survey consists of 30 items: the Affirmative Behaviors with GLB Clients subscale contains 20 items and the Affirmative Behaviors with All Clients subscale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1397] "This measure consists of 23 items comprising 5 factors: intention to use search engines as a learning assisted tool (7 items), perceived self-efficacy of search engines (4 items), perceived satisfaction of search efficiency (4 items), perceived satisfaction of search quality (4 items), and perceived enjoyment of search engines (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1398] "The measure consists of 15 items and three, 3-item subscales: positive attitudes, negative attitudes, and acceptance attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1399] "The Satisfaction with Enterprise Resource Planning System Questionnaire is composed of 33 items (28 items not including a single satisfaction item and four preliminary demographic questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1400] "The measure consists of 20 items and six subscales: Quality of search engines (3 items), Internet response time (4), Perceived enjoyment of search engines (3), Perceived ease of use of search engines (4), Perceived usefulness of search engines (3), and Intention to use search engines (4). It also contains two demographics items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1401] "There are 36 items in the original long form, and 9 items in the shortened version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1402] "The Postlearning Tests consists of 70 items (8 tasks with a total of approximately 32 items and 13 learning sets, with a total of 38 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1403] "The measure consists of 166 items. A revised version consists of 100 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1404] "The CIPS contains five primary subscales and 139 items : Physical subscale (26 items), Psychosocial subscale (44 items), Medical Interaction subscale (11 items), Marital subscale (18 items), and Sexual subscale (8 items) as well as several miscellaneous subscales and items (32 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1405] "This measure consists of a total of 75 items divided into two tests: the character test has 50 items and the life-form test has 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1406] "The measure consists of 6 items and two, 3-item: Innovative Attempts and Decision Latitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1407] "This measure consists of 18 items tapping 4 dimensions: Harm (5 items), Social (5 items), Positive (4 items), and TAF (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1408] "The Drug Use Motives Questionnaire has two versions, one with 15 items and the other with 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1409] "The Children's Report of Parent Behavior Inventory--Revised consists of 18 scales: 6 scales have 8 items each, and 12 scales have 5 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1410] "For general computer attitude, 2 reliable subscales emerged: general attitude (4 items) and computer clarity (2 items). For self-appraisal, 3 subscales emerged: nervousness (6 items), knowledge (6 items), and general self-appraisal (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1411] "The measure consists of 40 items and four, 10-item subscales: stereotype awareness, stereotype agreement, self–concurrence, and self–esteem decrement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1412] "The measure consists of 7 items and two subscales: Positive Display Rule Perceptions (4 items) and Negative Display Rule Perceptions (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1413] "The PSI-PSSE consists of 7 items; the PSI-PSS consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1414] "This measure consists of 29 items (“Provisions” subscale-15 items, “Emotion” subscale-5 items, “Self-concept” subscale-8 items, and “Resources” subscale-1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1415] "The measure consists of 61 items and 12 subscales: Roles (4 items), Values (4 items), Family Ties (3 items), Partnership (9 items), Love (9 items), Attractiveness (4 items), Sexual Jealousy (3 items), Conciliation (2 items), Problems: Personal (5 items), Problems: Circumstances (4 items), Problems: Partner (7 items), and Problems: Relationship (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1416] "The measure consists of 11 items and four subscales: anger (3 items), fear (3 items), happiness (3 items), and aversion (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1417] "The Daily Report items include 10 items adapted from the Inventory of College Students’ Recent Life Experiences; 15 items from the Daily Stress Inventory; 20 items were taken from the Positive and Negative Affect Schedule; and 9 items addressing coping styles, with 3 items intended to assess emotion-focused coping, 3 items assessing task-focused coping, and 3 items assessing affiliative coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1418] "The scale consist of 42 items and three subscales: Scale A - Phenotypic Variables (22 items), Scale B - Genotypic Variables (9 items), and Scale C - Future Performance Predictions (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1419] "This measure consists of 3 parts (Part 1 - 10 items, Part 2 - 42 items, and Part 3 - 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1420] "The version for some 3rd- and all 4th-grade students consists of 16 items and the version for 5th- through 6th-grade students contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1421] "The questionnaire consists of 11 items measuring Toxic Achieving and 10 items measuring Non-Toxic Achieving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1422] "This is a 20-item measure. Factors were labeled as follows: self-enhancing behaviors (5 items), behavioral problem solving (5 items), redefining problem (4 items), distraction (3 items), and cognitive problem solving (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1423] "The Spatial section comprises 24 items; the Mathematical section comprises 39 items; the Verbal section consists of 2 parts, with the first comprising 50 items and the second 29."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1424] "Tests A and B consist of 30 items each, while Test C contains 100 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1425] "The questionnaire consists of 9 items measuring positive and negative endowment and 7 items measuring positive and negative contrast."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1426] "The scales consists of 45 items measuring materialism and status concern, and 93 items measuring money attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1427] "The Chinese version of Zuckerman's SSS Form V consists of 40 items: a 10-item Thrill and Adventure Seeking subscale, 10-item Experience Seeking subscale, 10-item Disinhibition subscale; and 10-item Boredom Susceptibility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1428] "The measure consists of 42 items and 8 subscales: Concentration (6 items), Goal Clarity (4 items), Feedback (5 items), Challenge (6 items), Autonomy (3 items), Immersion (7 items), Social Interaction (6 items), and Knowledge Improvement (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1429] "The measure consists of 33 items and three subscales: Somatic (20 items), Affective (7 items), and Cognitive (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1430] "This measure consists of Test D1 (36 items) and Test D2 (36 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1431] "This measure is comprised of test forms I-1 (36 items) and I-2 (36 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1432] "The Attitudes Toward Mathematics Scales consists of 82 items: 2 forms measures assistance (21 items each) and 2 forms assessing values (20 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1433] "Part I of the measure has 32 items, while Part II has 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1434] "The rating scales for relatives consist of 205 items and the self rating scales consist of 133 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1435] "The Elm Hollow Community Church Groups Ideologies and Attitudes Measures consists of the following: 1. Feeling of Universality (1 item), 2. Feeling of Universal Expectation (1 item), 3. Attitudes toward: the Bishop (2 items), 4. Preacher returned (1 item) 5. Card playing (1 item), 6. Baptism (2 items), 7. Lord's Supper (2 items), 8. Church discipline (1 item), 9. Church property (1 item), 10. Going to the theatre (1 item), 11. Freedom of expression in pulpit (1 item), 12. Choir salary (1 item), 13. Janitor salary (1 item), 14. the Sacrament (2 items), and 16. attitudes toward Mrs. Salt (1 item)."                                                                                                                                                                                                                                              
## [1436] "The measure consists of 80 items and six subscales: Computer Attitude (20 items), Computer Attributes (18 items), Cultural Perceptions (16 items), Computer Competence (15 items), Computer Access (3 items), and Demographic Variables (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1437] "Test A consists of 6 items. Test B consists of 36 items. Test C consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1438] "The measure consists of 16 items and three subscales: Affective Identification (7 items), Cognitive Identification (4 items), Commitment (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1439] "The Motivations Scale contains 29 items, the Constraints Scale contains 19 items, and the Constraints Mitigation Scale contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1440] "Prejudice toward gay men and lesbians was measured with 11 items. Prejudice toward foreigners was measured with 11 items. For prejudice toward people with disabilities 10 items mentioned “disabled people” in general, but two items referred specifically to “mentally disabled people.”"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1441] "The measure consists of 30 items and 3 subscales: Prejudice toward foreigners ( items), Prejudice toward gay men and lesbians (7 items), and Prejudice toward people with disabilities (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1442] "The final Social Rearing Practices questionnaire consists of 37 items: emphasizing opinion of others (18 items), social encouragement (11 items), and family sociability (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1443] "The measure consists of 16 items and three subscales: Life Transitions (2 items), Discrete Events (9 items), and Victimization (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1444] "The Visualization Test consists of 9 items (some with several parts; 16 questions total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1445] "The original version of the measure consists of two parts: a life event list (16 items and a symptom list (29 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1446] "The PCS contains 33 items distributed across 16 subscales (seven Foundational Competency subscales, eight Functional Competency subscales, and one Continuing Competency subscale). The PCS-R consists of 19 items distributed across 9 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1447] "This 14-item measure is comprised of the Investigator Response subscale (9 items) and the Interview Experience subscale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1448] "The measure consists of 20 items comprising two, 10-item subscales: Internal and External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1449] "This short version of the ZTPI consists of 13 items measuring future time perspective and 9 items measuring present time perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1450] "The ELOT consists of 15 items and two subscales: Optimism (6 items) and Pessimism (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1451] "The measure consists of 18 items and five subscales: Learning Success (5 items), Actors (4 items), Premises (3 items), Tutor (3 items), and Students (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1452] "This is a 12-item DSDS with a 2-factor solution: Driver Impression Management (DIM; Factor 1, 7 items) and Driver Self-Deception (DSD; Factor 2, 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1453] "The measure consisted of 5 items at T1, 8 items at T2 and 10 items at T3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1454] "There is an 8-item version and a 6-item version of the survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1455] "Item and factor analyses resulted in the following five scales and items: Work scale (18 items), Supervision scale (18 items), Pay scale (9 items), Promotion scale (9 items), and Coworkers scale (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1456] "This is a 27-item measure. Three domains were distinguished by factor analysis: \"satisfaction with the demented person as a recipient of care\" (7 items), \"satisfaction with one's own performance as a caregiver\" (12 items) and \"consequences of involvement in care for the personal life of the caregiver\" (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1457] "The measure consists of 28 items and two subscales: Abusive Behaviors (8 items) and Nonabusive Behaviors (20)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1458] "The questionnaire consists of self-report ratings of 15 items/situations with respect to oneself, as well as 15 items/situations that are rated with respect to others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1459] "The questionnaire consists of 10 items measuring job stress and 28 items measuring job strain."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1460] "This is a 24-item measure, with 3 items comprising each of three factors: Aggression, Anxiety, Surgency, Concentration, Fatigue, Social Affection, Sadness, and Egotism."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1461] "The Brief Pain Coping Inventory-2 consists of 19 items: Pain Management Strategies (8 items), and Psychological Flexibility (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1462] "The measure consists of 17 items and four subscales: bingeing (5 items), unsuccessful dieting (4 items), weight fluctuations (4 items), and self-esteem (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1463] "The measure consists of 22 items and six subscales: Encourage rehearsal (4 items), Encourage self-goal-setting (4 items), Encourage self-criticism (4 items), Encourage self-reinforcement (4 items), Encourage self-expectation (3 items), and Encourages self-observation/evaluation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1464] "The scale consists of 14 items measuring Depression and 9 items measuring Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1465] "This measure consists of 40 items (8 subscales of 5 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1466] "This measure consists of 1 item measuring dream recall frequency, 23 items measuring dream experiences, and 10 items measuring attitudes toward dreams."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1467] "The measure consists of 11 items and two subscales: Socio-Emotional Orientation (5 items) and Task-Goal Orientation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1468] "The measure consists of 34 items and three subscales: emotional aggression (9 items), physical aggression (15 items), and sexual aggression (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1469] "The BITSEA contains a 42-item Parent Form. The ITSEA contains a 166-item Parent Form and Child Care Provider Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1470] "Eight subtests assess: Fine Motor Precision (7 items), Fine Motor Integration (8 items), Manual Dexterity (5 items), Bilateral Coordination (7 items), Balance (9 items), Running Speed and Agility (5 items) Upper-Limb Coordination (7 items) and Strength (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1471] "The Individual Imagery Test contains 40 items; the empirical subscale contains 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1472] "The measures consist of 3 items each for a total of 9 items answered by three groups of people: intern, assignment manager, and on-site personnel officer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1473] "The VIP Verbal subtest contains 78 items; the Nonverbal subtest contains 100 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1474] "The Learning Accomplishment Profile--Third Edition contains a hierarchy of 383 developmental skills arranged in chronological sequence in seven domains of development including: Gross Motor (54 items), Fine Motor (40 items), Pre-Writing (38 items), Cognitive (87 items), Language (69 items), Self-Help (50 items), and Personal/Social (45 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1475] "The LAP-D Assessment contains 226 developmental skills arranged in chronological sequence in 8 subscales representing 4 domains of development: Fine Motor: Manipulation (28 items); Fine Motor: Writing (31 items); Cognitive: Counting (33 items); Cognitive: Matching (24 items: Language: Comprehension (23 items); Language: Naming (30 items); Gross Motor: Body Movement (34 items); and Gross Motor: Object Movement (23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1476] "The DECA Infant assessment has 33 items; the DECA Toddler assessment has 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1477] "The measure consists of 50 items and 5, 10-item subscales: Thrill and Adventure Seeking (TAS), Experience Seeking (ES), Disinhibition (Dis), Boredom Susceptibility (BS), and a Lie (L) scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1478] "The measure consists of 24 items and five subscales: Hostility (5 items), Impatience-Irritability (II; 5 items), Achievement Striving (AS; 6 items), Anger (4 items), and Competitiveness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1479] "The measure consists of External Attribution (11 items), Mental-Element Attribution (12 items), and Guilt-Feeling Attribution (11 items) factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1480] "The Attitudes Towards Parents Inventory consists of a 31-item Parental Attitude Scale and a 13-item Parental Relationships Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1481] "This 7-item measure is comprised of the 4-item Violence Index and the 3-item Victimization Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1482] "The measure consists of 102 items, randomly divided into two, 51-item short forms. Items are divided into five clusters: Threats to physical health (4 items), Control over physical freedoms (4 items), General destabilization (19 items), Dominating/controlling (56 items), and Ineptitude (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1483] "The Change Questionnaire consists of 12 items in a full-length version, and 3 items in a shortened version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1484] "The Teaching Assessment Blank has 35 items. The Instructor Presentation, Evaluation-Interaction, and Student Stimulation subscales comprise 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1485] "Factor analysis resulted in a two-factor model (16 items) that clearly reflects ability (8 items) and motivational aspects (8 items) of self-monitoring."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1486] "Apart from the 60 items, another 6 items were added to measure the tendency of respondents to overrate themselves or so called as the ‘faking-good’ tendency, making a final tally of 66 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1487] "The measure consists of 21 items and three subscales: Primary Control Engagement Coping (5 items), Disengagement Coping (11 items), and Involuntary Engagement Coping (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1488] "The Experience Inventory is comprised of two measures: the Experience Checklist (39 items) and the Achievement Examination (40 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1489] "The Proxy Acculturation Scale has two forms: a 3-item scale (PAS-3) and a 4-item scale (PAS-4)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1490] "This measure consists of 67 items. There are seven demographic items and the remaining 60 items are divided into three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1491] "This measure consists of 37 items, as well as a demographic section including 19 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1492] "The full DRS Form 2 consists of 45 items, while the base measure consists of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1493] "The measure consists of 18 items and five subscales: Fairness (3 items), Usefulness (3 items), Acceptance (3 items), Willingness to Improve (3 items), and Affect (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1494] "The Client Assessment of Strengths Interests and Goals is composed of at least 417 items across two subscales: The Informant assessment (at least 183 items) and Client Self-Report (at least 234 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1495] "The measure consists of the following factors: Planning (3 items), Emotional impact (3 items), Motivation (3 items), Self-efficacy (3 items), Outcome expectancy (2 items), Outcome value (2 items), Intentions to initiate goal-directed...(1 question), and Action ID (5 descriptions to be rated and grade for which Ss strove)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1496] "The measure consists of 15 items and two subscales: general appearance (5 items) and general social performance skills (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1497] "The Irrational Beliefs Inventory consists of 50 items over 5 subscales: Worrying (12 items); Rigidity (14 items); Need for Approval (7 items); Problem Avoidance (10 items); and Emotional Irresponsibility (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1498] "The measure is available in a 12-item version, as well as in the original 7-item and modified 10-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1499] "Active coping is assessed using 10 items; Avoidant coping is assessed using 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1500] "The measure consists of 26 items and 5 subscales: Intentions (3 items), Self-Efficacy (3 items), Outcome Expectancies (12 items), Risk-Perception (3 items), and Social Support (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1501] "The measure consists of 26 items and 5 subscales: empathy with protagonist (6 items), the perceived reality (4 items), confusion about the movie (5 items), its entertainment value (6 items) and educational value (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1502] "The measure consists of 7 items and two dimensions: Educational Value (4 items) and Credibility (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1503] "There were 4 sections of the measure, utilizing various response formats: Attitudes toward studying (12 items), Specific intentions (6 items), Perceived behavioral control (6 items), and Subjective norms (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1504] "The Topic-Specific Epistemic Belief Questionnaire contains 24 items across four subscales: certainty of knowledge about climate change (6 items), simplicity of knowledge about climate change (6 items), source of knowledge about climate change (5 items), and justification for knowing about climate change (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1505] "The measure consists of 30 items and five subscales: Positive Appraisal (9 items), Resource Acquisition (6 items), Family Tension Management (6 items), Head Injury Demand Reduction (3 items), and Acquiring Social Support (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1506] "Psychological well-being was investigated through a set of items on loneliness (3 items), self-image, (7 items), anxiety and insecurity (7 items), with depressed mood and locus of control both being single-item questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1507] "This measure consists of four 8-item Likert-type scales (32 items) and another 32 item sentence completion instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1508] "The Workplace Relationships Measure contains 19 items in three scales: Relationship with Peers (5 items), Relationship with Superiors (10 items), and Relationship with Department (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1509] "The Institute for Juvenile Research Checklist consists of 36 items. 15 items distributed across three rotated factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1510] "This is a 19-item scale. The subscale of interpersonal quality of sharing consisted of 9 items, while the subscale of intrapersonal quality of sharing consisted of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1511] "The measure consists of 21 items and 3 scales: competence (6 items), relatedness (8 items), and autonomy (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1512] "This measure consists of 7 facet satisfactions. The job satisfaction facets are as follows: Achievement (8 items; alpha = .90), Autonomy (5 items; alpha = .87), Structure (5 items; alpha = .83), Participation (8 items; alpha = .84), Cooperation (9 items; alpha = .79), Rewards (5 items; alpha = .82), and Flexibility (5 items; alpha = .87)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1513] "Attitude is assessed with 1 item; Subjective norm is operationalized using 3 items; Perceived control is measured with 5 items; Behavioral intention is measured with 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1514] "Four items are used to measure self-evaluated self-esteem, peer-evaluated self-esteem is measured with 5 items, and defensive egotism consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1515] "The psychological needs of autonomy scale contains 7 items, the relatedness scale contains 6 items, and competence scale contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1516] "The Situational Anxiety Measure contains six anxiety scales. Three scales contain 14 items each, and three contain 10 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1517] "The Deaf Identity Development Scale consists of 54 items: a 14-item Hearing Scale, 12-item Marginal Scale, 14-item Immersion Scale, and a 14-Item Bicultural Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1518] "This measure consists of an 11-item dejection scale and a 6-item agitation scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1519] "This 6-item measure is comprised of two 3-item subscales (primary and secondary control)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1520] "The scales include 8 items measuring social dominance and 7 items measuring aggressive dominance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1521] "The Iconographical Falls Efficacy Scale contains 30 items. A 10-item version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1522] "The measure consists of 27 items and 4 subscales: treatment-value (7 items), treatment-concerns (7 items), decision-satisfaction (8 items) and cure (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1523] "The measure consists of 21 items comprising 3 factors: Healthy Weight Loss Methods (11 items), Unhealthy Weight Loss Methods (8 items), and Weight Loss Group (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1524] "The measure consists of 45 items and five subscales: Susceptibility (4 items), Benefits (4 items), Barriers (19 items), Self-efficacy (10 items), and Fear (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1525] "The measure consists of 14 items and two, 7-item subscales: positive beliefs and negative beliefs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1526] "The Life Event Questionnaire contains 64 items collapsed into six categories: (1) Marriage/Love, 14 items; (2) Family/Home, 18 items; (3) Work/Business, 10 items; (4) Health/Hospital, 13 items; (5) Law/Legal, 4 items; and (6) Friend/Relationship, 5 items.."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1527] "The scale consists of 80 items divided into two parts of 40 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1528] "The measure consists of 6 scales as follows: Rewards for Paid Worker Role (19 items), Concerns for Paid Worker Role (19 items), Rewards for Wife Role (15 items), Concerns for Wife Role, (15 items), Rewards for Mother Role (14 items), and Concerns for Mother Role (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1529] "The adapted measure consists of a total of 29 items distributed across six scales: Affirmation (5 items), Coping (5 items), Enhancement (5 items), Intimacy (5 items), Partner Approval (4 items), and Peer Approval (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1530] "The measure consists of 60 items and 7 subscales: Dysphoria (8 items), Irritability (9 items), Anhedonia (11 items), Social Withdrawal (9 items), Ruminations over Past Events (6 items), Cognitive Perspective in the Present (8 items), and Expectations for the Future (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1531] "The scale consists of 57 items and eight subscales: Interpersonal Impact (11 items), Effect on Sexual Experience (10 items), Self-Control (9 items), Global Attitude (9 items), Perceived Risk (6 items), Inhibition (4 items), Promiscuity (3 items), and Relationship Safety (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1532] "This measure consists of 20 items (two 10-item subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1533] "The measure consists of 16 items and Intentions (3 items), Instrumental Attitudes (2 items), Affective Attitudes (2 items), Injunctive Norms (2 items), Descriptive Norms (2 items), Perceived Difficulty (3 items), and Perceived Controllability (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1534] "The measure consists of 54 items and six subscales: Patient assignment (3 items), Lectures by institute staff (21 items), Lectures by guest speakers (7 items), Other institute experiences (11 items), Supervision (2 items), and Specific Reactions (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1535] "This measure consists of 6 items measuring Supportive Techniques and 7 items measuring Expressive Techniques."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1536] "The Diabetes Distress Scale has 17-items and four subscales: emotional burden (5 items), physician-related distress (4 items), regimen distress (5 items) and diabetes-related interpersonal distress (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1537] "The Cognitive Processing During Assault Questionnaire contains 29 items across four subscales: Mental Defeat (12 items), Mental Planning (9 items), Mental Confusion (5 items), and Detachment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1538] "The Appraisal of Sequelae of Assault Measure contains three subscales: Negative Appraisals of Initial Posttrauma Symptoms (24 items), Perception of Others’ Responses (13 items), and Perceived Permanent Change (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1539] "The Maladaptive Control Strategies Questionnaire consists of two subscales: Avoidance and Safety Seeking (26 items) and Active Attempts to Feel Safe (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1540] "This measure consists of 36 items: 6 scenarios with 6 questions per scenario."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1541] "The Relationship-Focused Coping Scales contains 28 items (Active Engagement has 12 items and Protective Buffering has 16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1542] "The Learning History Questionnaire—Third Version contains five scales; four scales contain 22 items each and the fifth scale contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1543] "Derogation is measured with 13 items; Blame is measured with 6 items; and Disassociation is measured with 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1544] "The Questionnaire on Attitudes Toward Suicide consists of a total of 34 items in ten factors: Suicide as a right (7 items), Incomprehensibility (5 items), Noncommunication (5 items), Preventability (3 items), Tabooing (3 items), Normal-Common (3 items), Suicidal Process (2 items), Relation-Caused (2 items), Preparedness to Prevent (2 items), and Resignation (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1545] "The measure consists of 15 items and four subscales: Autonomy (6 items), Relatedness (3 items), Competence (3 items), and Dependability (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1546] "This measure consists of 13 items, some with multiple questions, for a total of 43 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1547] "This is a 24-item measure consisting of three 8-item scales: Pre-contemplation, Contemplation, and Action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1548] "The Disability Social Relationship Scale consists of 62 items: the 6-item Work scale, the 6-item Dating scale, and the 6-item Marriage scale (each of the items in the three scales was asked four times in regard to a specific disability group)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1549] "The Lost-ID-Meal Card Report consists of 20 items. The Lost Key Report consists of 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1550] "This 147-item measure consists of eight subscales: Work Information (17 items), Preliminary Estimate of Learning (30 items), Psychomotor Skills (9 items), Reading (18 items), Work Importance (9 items), Personal Independence (29 items), Internality (15 items), and Emotional Functioning (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1551] "The Parental Perceptions of Pooping Problems Questionnaire contains two subscales: Blame and punish (15 items) and Worry and help (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1552] "The measure comprises 10 items and three subscales: Perceived Parental Approval (2 items), Parental Oversight (2 items), and topics discussed with parents (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1553] "The measure consists of 24 items and four subscales: Parental Demandingness (6 items), Parental Responsiveness (6 items), Parental Values (7 items), and Parent Involvement in School Functions (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1554] "This measure consists of three rating scales: a 48-item teacher scale, a 48-item parent scale, and a 30-item clinician scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1555] "The initial Self-Report Coping Scale contains five subscales: Seeking Social Support (8 items), Self-reliance/Problem solving (8 items), Distancing (7 items), Internalizing (7 items), and Externalizing (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1556] "The measure consists of 9 items and three subscales: Degree of Innovation (3 items), Uncertainty of the Process (4 items), and Conflict During the Process (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1557] "The measure consists of 6 items and two subscales: team performance (4 items) and project quality (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1558] "Perceived Love Scale for dating participants contains 5 items; the version for married participants contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1559] "The Love Scale for dating participants contained 4 items; the version for married participants contain 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1560] "The measure consists of 11 items and two subscales: Pain Severity (4 items) and Pain Interference (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1561] "The measure consists of 10 items and three subscales: concerns with individuation and identity (4 items), intimacy (2 items), and generativity (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1562] "The Social Goal Orientations Scale contains 25 items in three subscales: Social Learning Goal (10 items), Social Performance-Approach Goal (7 items), and Social Performance-Approach Goal (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1563] "The measure consists of 61 items and six subscales: Living With ADHD (10 items), General Well-Being (11 items), Performance and Daily Functioning (10 items), Relationships/Communication (8 items), Bothersomeness/Concern (9 items), and Daily Interference (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1564] "The Career Decision-Making Strategies Scale consists of three subscales: Rational Decision Making (9 items), Intuitive Decision Making (6 items, and Dependent Decision Making (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1565] "The Adolescent Perceptions of Autonomy Questionnaire contains 24 items that make up a privileges dimension, 9 items that make up a responsibilities dimension, and 12 items that make up a psychological autonomy dimension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1566] "The Psychological Examination For High-School Graduates and College Freshmen consists of 7 tests: Opposites (30 items), Proverbs (20 items), Arithmetic (20 items), Artificial Language (26 items), Number Completion (24 items), Sentence Completion (40 items), and Analogies (40 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1567] "The measure consists of 18 items and two, 9-item subscales: inattentive and hyperactive-impulsive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1568] "The original version consists of 61 items, though there are also 36-, 25-, and 21-item versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1569] "The measure consists of 28 items and six subscales: ADHD-Inattention (ADHD:I; 4 items), ADHD-Hyperactive-Impulsive (ADHD:HI; 5 items), Oppositional Defiant disorder (ODD; 6 items), Conduct Disorder (CD; 3 items), Generalized Anxiety Disorder (GAD; 4 items), and Depression (6 items). Discriminant validity: Students were given a diagnosis by the school nurse. The most common diagnoses were ADHD and ODD. Students with ADHD scored significantly higher than the non-ADHD students for three scales: ADHD:HI (t = 2.64, p < .01), ADHD:C (t = 2.08, p < .05), and Global Behavior (t =2.22, p < .05). Students with ODD scored significantly higher than the non-ODD students for one scale, ODD (t = 2.54, p < .01). Thus, the measure successfully discriminates between different diagnostic groups."                                                     
## [1570] "An 8-item, a 3-item and a 7-item version are available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1571] "The surveys consist of a 4-item measure, a 3-item measure and a 1-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1572] "This full version of this measure contains 33 items, divided into 6 subscales: Hostile Gestures (3 items), Illegal Driving (4 items), Police Presence (4 items), Slow Driving (6 items), Discourtesy (9 items), Traffic Obstructions (7 items). The short version contains 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1573] "The measure consists of 15 items and two subscales: perceived religious influence (7 items) and illness as punishment for sin (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1574] "The measure consists of 28 items divided among six types of messages as follows: Racial Pride (6 items), Racial Barrier (4 items), Egalitarian (4 items), Self-Worth (4 items), Negative (5 items), and Behavior (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1575] "The Problem Behavior Record contains 15 items and the Behavior Rating Scale contains 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1576] "This test contains 25 questions to be completed by the student and 22 items to be completed by the teacher."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1577] "The Role Conflict Scales are six scales containing 21 total items. The scales are Worker vs. Spouse (3 items), Worker vs. Parent (4 items), Worker vs. Self (4 items), Spouse vs. Self (4 items), Spouse vs. Parent (3 items), and Parent vs. Self (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1578] "The Bipolar Disorder Beliefs Questionnaire is a 25-item measure. Thirteen items address causes and 12 items address treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1579] "The Causes of Depression Scale Environmental contains 35 items across 5 subscales: Environmental Causes (9 items), Destiny and God (5 items), Stress and Pressure (11 items), Biological Causes (5 items), and Supernatural Causes (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1580] "The AIS-8 contains 8 items, while the AIS-5 consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1581] "The Sleepiness Scale consists of 6 items; the Fatigue Scale consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1582] "Using a sample of pairs of same-sex friends, a factor analysis revealed a three-factor solution that generally corresponded to the three prototypic coping patterns: Utilize Support (13 items), Distance (6 items), and Overwhelmed (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1583] "The Social Intelligence Test consists of 5 subtests: Judgment in Social Situations (30 items), Recognition of the Mental State of the Speaker (18 items), Observation of Human Behavior (50 items), Memory for Names and Faces (25 items), and Sense of Humor (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1584] "Part I contains 205 items; Part II contains 252 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1585] "The Phobic Beliefs Questionnaire contains three subscales: Disgust (7 items), Coping (11 items), and Harm (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1586] "The survey consists of 1 item measuring acceptance of authority directives; 11 items measuring the relational concerns of neutrality, status recognition, and benevolence; 5 items measuring instrumental evaluations of the experience; 3 items assessing identification with America; and 3 items measuring identification with the respondent’s ethnic group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1587] "The Revised (12-Item) Multigroup Ethnic Identity Measure consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1588] "The measure consists of 50 items and three subscales: Manifestations (15 items), Aetiology (18 items), and Treatments (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1589] "The Perceptions of Problems in Living Questionnaire contains 13 items across two subscales: Self-Stigma (9 items) and Normativeness (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1590] "The self and partner versions of the Withdrawn Marital Behavior Scale consist of 9 items. The self and partner versions of the Angry Marital Behavior Scale consist of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1591] "The Child Puppet Interview–Parent Scales contain three subscales and 17 items: Hostility (6 items), Warmth and Responsiveness (6 items), and Structure (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1592] "Form A of the Child Questionnaire Interaction Study contains 44 items; Form B contains 60 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1593] "The measure consists of 27 items and four subscales: Constant Effort (7 items), Emotional Restriction (7 items), Heterosexism (8 items), and Social Teasing (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1594] "Measures of the following reactions are included: protest reactions (25 items), preoccupation (9 items), interference with exploration (3 items), distress reactions (22 items), coping strategies (7 items), and resolution (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1595] "The measure consists of 37 items measuring Motivations for Caregiving and 35 items measuring Motivations for Not Caregiving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1596] "This measure consists of 28 items (5 physical abuse questions, 11 questions about sexual abuse, and 12 psychological abuse questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1597] "This 16-item measure consists of four separate scales (4 items are in each scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1598] "The End of Life Issues Survey is a 40-item measure; it contains a 24-item Hospice scale, a 7-item End of Life Care scale, and a 9-item Communication about Death and Dying scale.."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1599] "The measure consists of scales of meaning (6 items), self-acceptance (12 items), burden (9 items), and gain (6 items) as well as new scales of Importance of Caregiving Tasks and Caregiver Comfort (14 items, respectively), and Caregiver Closure Scale (12 items). Additionally, caregivers are asked which of 19 potential services (i.e., housekeeping, meal preparation) they have (or would have) used in order to have more quality time for themselves. Finally, two open-ended questions ask about volunteer help as well as how caregiving has changed the respondent's life."                                                                                                                                                                                                                                                                                
## [1600] "The measure consists of 105 items and six subscales: Caregiving (26 items), Disease Characteristics (15 items), Social Welfare (16 items), Psychosocial Issues (23 items), Palliative Care (15 items), and Spiritual and Religious Information (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1601] "This measure consists of a total of 8 items (abuse intensity scale - 3 items; dependency intensity scale - 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1602] "33 items comprised 6 scales, and an additional 5 items not belonging to any particular scale were kept."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1603] "The Drinking Motives Questionnaire Revised Short Form consists of 12 items including 3 items for each of the four subclass: Enhancement; Social; Conformity; and Coping."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1604] "This is a 24-item measure (three 8-item subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1605] "The ECI-4 consists of 108-items and 77-items for the parent- and teacher-reports, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1606] "The Chronic Pain Intrusion and Accommodation Scales contains two subscales: Pain Intrusion (8 items) and Pain Accommodation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1607] "This measure consists of 24 items, divided into four subscales (Social Facilitation-13 items; Peer acceptance-5 items; Emotional pain-3 items; Sex seeking-3 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1608] "This measure consists of 6 items in two subscales, \"individual conception of racism\" (3 items) and \"institutional conception of racism\" (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1609] "This 17-item instrument included a 2-item peer sociometric and four subscales designed to assess social behavior: relational aggression (4 items), overt aggression (3 items), prosocial behavior (5 items), and isolation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1610] "This measure consists of 28 items (three Risk Perception scales with 6 items, three Social Norm scales with 3 items and one Pluralistic Ignorance stand-alone question)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1611] "17 items assess likelihood of unprotected sex; 3 items assess perceived health consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1612] "The 12 Items Opiate Addiction Severity Inventory consisted of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1613] "The initial 6-item measure was reduced to 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1614] "The Muscle Appearance Satisfaction Scale is a 19-item self-report measure with five subscales: Bodybuilding Dependence (5 items), Muscle Checking (4 items), Substance Use (4 items), Injury (3 items), Muscle Satisfaction (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1615] "The Daily Well-Being Measure consists of 20 items across three domains: Global (2 items), Relationship (12 items), and Non-relationship (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1616] "The Cognitive Evaluation Questionnaire contains 46 items across the following subscales: Positive Coping (3 items), Desire to Withdrawal (7 items), Disappointment with Self (5 items), Casual Rumination (5 items), Helplessness (5 items), Concern re: Effects of Pain (8 items), and Emotional Reactivity (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1617] "The Headache Scale contains the following items: Sensory-Aching (5 items), Sensory-Sharp (7 items), Affective-Discomfort (3 items), Affective-Anxiety/Depression (8 items), Sensory-Tight (3 items), Sensory-Autonomic (3 items), and Sensory-Dull (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1618] "The measure consists of 25 items and two subscales: Competence (12 items) and Sociability (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1619] "Test contains 5 categories; each category contains 6 items for a total of 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1620] "Participants answer 3 questions for each of 60 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1621] "This measure consists of nine subscales were formed: Cooperation Index (4 items), Opportunities for Personalization Index (4 items), Equal Status Index (5 items), Stepparent-Stepchild Relationship (5 items), Cognitive Representations of the Stepfamily--One Group (2 items), Cognitive Representations of the Stepfamily--Two Groups (2 items), Cognitive Representations of the Stepfamily--Two Subgroups Within One Group (2 items), Cognitive Representations of the Stepfamily--Separate Individuals (2 items), and Stepfamily Harmony (4 items)."                                                                                                                                                                                                                                                                                                              
## [1622] "The Parental Locus of Control Scale contains five subscales: Principal Parental Efficacy (10 items); Parental Responsibility (10 items); Child Control of Parents’ Life (7 items); Parental Belief in Fate/ Chance (10 items); and Parental Control of Child’s Behavior(10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1623] "There are 23 total items on the Parent-Child Interactions Questionnaire. The Daily Parent-Child Aversiveness Scale has 9 items, and the Daily Parent Withdrawal Scale has 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1624] "The Dimensions of Tobacco Dependence Scale--Short Version consists of 36 items: a 7-item Social Dependence sub scale; a 5-item Emotional Dependence sub scale; a 19-item Nicotine Dependence sub scale; and a 5-item Sensory Dependence sub scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1625] "The Group Environment Questionnaire contains four subscales: Individual Attractions to Group-Task (7 items), Individual Attractions to Group-Social (5 items), Group Integration-Task (7 items), and Group Integration-Social (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1626] "The Intrinsic Need Satisfaction Questionnaire consists of 21 items: 6 items for competence, 8 items for relatedness, and 7 items for self-determination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1627] "The Therapeutic Factors Inventory--Short Form consists of 23 items in four factors: Instillation of hope (6 items), secure emotional expression (7 items), awareness of relational impact (6 items), and social learning (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1628] "The Family Stress factor includes 24 items, Peer Stress includes 14 items, and Community Stress include 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1629] "The Processes of Change Scale contains 40 test items divided amongst eight subscales: Environmental evaluation (6 items), Self-evaluation (3 items), Consciousness raising (6 items), and Dramatic relief (3 items). The behavioral processes of change are: Reinforcement management (5 items), Counterconditioning (5 items), Stimulus control (7 items), and Helping relationship (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1630] "This is a 30-item measure with three factors: external motivation (12 items), identified motivation (9 items), and introjected motivation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1631] "The Self-Efficacy to Resist Smoking Scale consists of 10 test items divided amongst two subscales: Social subscale (6 items) & Negative affect subscale (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1632] "This is a 13-item measure. Three factors were yielded: Drive for Size (5 items), Appearance Intolerance (4 items), and Functional Impairment (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1633] "The Smoking Determinants Questionnaire consists of 55 total items. It is comprised of proximal determinants (19 items) and distal determinants (36 items), and further divided into 12 individual measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1634] "This is a 16-item measure consisting of four 4-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1635] "The College Achievement Measure contains 35 items: Leadership (7 items), Science (8 items), Dramatics (4 items), Literary (7 items), Music (4 items), and Art (5 items). ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1636] "The Smoking Predictors Questionnaire contains the following subscales: Attitude (11 items), Social norm (8 items), Social pressure (8 items), and Self-efficacy (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1637] "The Parental Child-Rearing Scales measure the following: maternal identification (14 items), maternal encouragement of ideas (3 items), resistance to maternal control (6 items), maternal satisfaction with child (8 items), maternal expectation of child’s schooling (1 item), maternal aspiration for child’s schooling (1 item), paternal identification (16 items), and resistance to paternal control (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1638] "The measure consists of the following four factors: Problems and coping (26 items), Sensation seeking (13 items), Social environment (12 items), and Disposition (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1639] "The Nonsmokers Survey contains 22-item list of motivations to try smoking and a 24-item list of reasons for not continuing to smoke."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1640] "The final questionnaire consisted of 14 items (5 items assessing anticipatory beliefs, 5 items assessing permissive beliefs, and 4 items assessing relief-oriented beliefs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1641] "Digital Piracy Social Learning Measures contains three measures: Differential Association (6 items), Attitudes toward Digital Piracy (5 items), and Neutralizing Attitudes (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1642] "The Motor Imitation Scale consists of a total of 16 items in three subscales: Meaningful (4 items), Nonmeaningful (4 items), and Body Movements (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1643] "The Cognitions Checklist--Revised contains two subscales: CCL-Depression with 14 items and CCL-Anxiety with 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1644] "The Caregiver Reaction Assessment Scale--Modified Hebrew Version five subscales and 31 items: Disrupted Schedule (8 items) Lack of Social Support (6 items), Health Problems (6 items), Self-Esteem (6 items), and Financial Problems (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1645] "The Substance Abuse Prevention and Anger Control Questionnaire contains three subscales: Attitudinal scale (5 items), Behavioral scale (6 items), and Strategies scale (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1646] "The psychiatrist-rated version consists of 41 items and the patient-rated version contains 53 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1647] "The final 15 items within the PEQ-CAMHS Outpatients form three scales supported by the results of factor analysis: relationship with health personnel (8 items), information and participation (4 items), and outcome (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1648] "This measure consists of 4 questions and 10 total items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1649] "The Smoking Exposure and Beliefs Measure contains five subscales: Exposure to ETS (2 items), Perceived Susceptibility (3 items), Perceived Barriers (3 items), Cues to Action (3 items), and Perceived Social Pressure (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1650] "This measure consists of 4 questions and 10 total items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1651] "The first section of the DER asks participants to complete a 103-item event inventory. The second section asks participants to complete a 54-item feelings inventory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1652] "The initial version of the Pain Care Quality Survey consists of 44 items: Four constructs were retained: being treated right (13 items), safety net (9 items), efficacy of pain management (8 items), and partnership with the healthcare team (14 items). The Pain Care Quality Survey also consists of 33 item-version in two scales: Nursing scale (22 items) and the Interdisciplinary scale (11 items) (Beck et al., 2010)."                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1653] "The Children’s Communication Checklist--Research Version 1.1 contains 70 items in nine subscales: Speech (11 items), Syntax (4 items), Inappropriate Initiation (6 items), Coherence (8 items), Stereotyped Conversation (8 items), Use of Context (8 items), Rapport (8 items), Social Relationships (10 items), and Interests (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1654] "The Positive and Negative Outcomes of Drinking Scales consists of four scales: Expectations of Social Benefits (5 items), Expectations of Cognitive–Emotional Effects (5 items), Expectations of Negative Physical Effects of Drinking (4 items) and Expectations of Self-Evaluative Outcomes (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1655] "This is a 10-item measure (five 2-item subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1656] "The Relational Humility Scale contains three subscales: Global Humility (5 items), Superiority (7 items), and Accurate View of Self (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1657] "The Parents’ Postoperative Pain Measure--Short Form contains 10 items with two subscales: Functional Interference (5 items) and Pain Behavior (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1658] "This is a 22-item measure; a 12-item form also exists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1659] "The measure consists of Job Morale (5 items) and Job Importance (4 items) statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1660] "The Pros and Cons of Quitting Questionnaire consists of 12 total items: 6 items assessed the rewards of quitting and 6 items assessed the costs of not quitting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1661] "This measure consists of 16 items, with 8 items assessing each of two constructs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1662] "The Predictors of Alcohol Use Questionnaire consists of 121 items divided among 15 variables: Outcome expectations (5 items), Friends problem behavior (7 items), Peer pressure (8 items), Perceived prevalence (4 items), Deviance acceptance (8 items), Risk taking (6 items), Self-control (7 items), Social competence (9 items), Depressive symptoms (6 items), School adjustment (11 items), School climate (18 items), Parent-adolescent conflict (4 items), Knowledge about child (6 items), Expectations (6 items), and Authoritative parenting style (16 items)."                                                                                                                                                                                                                                                                                              
## [1663] "This measure consists of 32 total items (4 questions were asked for each of 8 foods)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1664] "This measure consists of 7 items, with 1 item measuring Gang membership and 6 items measuring level of exposure to gang activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1665] "This is a 38-item measure. This measure focuses on whether or not the defendant understands: the criminal charge (7 items), the range and nature of punishment (7 items), and the adversary nature of the legal proceedings (6 items). It also allows psychologists to assess the defendant’s capability: to assist the attorney in the defense (6 items), to manifest appropriate courtroom behavior (6 items), and to testify relevantly (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1666] "Based on the results, a total of 30 items were placed in Form A, along with 30 items in Form B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1667] "This measure consists of 6 events, and participants indicate whether or not they have experienced each one. The events are combined into three measures: 1. physical assault (1 item), 2. sexual trauma (2 items), and 3. vicarious violent trauma (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1668] "This measure consists of 57 items. Three delinquency scales are derived from the individual items, including a general crime scale (the 57-item total scale), a drug use subscale (7 items), and a felony crime subscale (item count is not reported)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1669] "This measure consists of 67 items spread across 5 subscales: Egocentricity subscale (7 items), Impulsivity subscale (6 items), Need subscale (11 items), Hypophoria subscale (27 items), and Sociopathy subscale (16 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1670] "The Social Identity Questionnaire is composed of a minimum of 12 items, or a maximum of 36 items, depending on the number of identity items that are endorsed by the participant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1671] "The Sexual Self-Esteem Inventory for Women consists of 81 items divided amongst five subscales: Skill/Experience (18 items), Attractiveness (17 items), Control (16 items), Moral Judgement (15 items), and Adaptiveness (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1672] "The measure consists of a total of 74 items: 27 items assess school achievement and various behaviors reflective of conduct disorder, hyperactivity, learning disability, attention deficit, impulsivity, and shyness and 47 items inquire about behaviors, criminality, and mental illness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1673] "This 26-item measure consists of a 14-item depression subscale and a 12-item anxiety subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1674] "The psychological dimension consists of 23 items, while the Social Dimension consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1675] "This 41-item measure consists of five subscales are Pain/Somatic (13 items), Generalized Anxiety (9 items), Separation Anxiety (8 items), Social Phobia (7 items), and School Phobia (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1676] "The Water Taste Scales consists of 36 items: 4 9-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1677] "This is a 30 item measure (three 10-item subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1678] "Participants rate how much they feel positive affect (7 items) and negative affect (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1679] "The Comprehensive Filial Responsibilities Inventory contains 6 subscales: Child Dominance (7 items), Cultural Brokering (6 items), to Language Brokering (6 items), Emotional Support (4 items), Self-Reliance (6 items), and Money Issues (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1680] "This is a 16-item measure, with four 4-item measures to assess satisfaction level, quality of alternatives, investment size, and commitment to the war."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1681] "This measure consists of 5 qualitative questions, 9 demographic questions, and 26 questions that constitute the three subscales: Cultural Skills (14 items), Cultural Knowledge (7 items), and Cultural Awareness (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1682] "The Parent Questionnaire measures parental educational level, parental involvement, parents' knowledge of their child's friends' and parent-child communication about school. Parental educational level consists of 1 items, parental involvement consists of 12-items, parent's knowledge of their child's friends consists of 9-items, and parent–child communication about school consists of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1683] "This measure consists of 11 items, divided into two topic areas (School Resources - 10 items, School Safety -1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1684] "This is a 34-item measure. It consists of the following five scales: Negative Attitudes (12 items), Realistic Threat (4 items), Symbolic Threat (6 items), Intergroup Anxiety (6 items), and Frequency of Negative Contact (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1685] "The Peer Group Pressures Scale has 18 items consisting of 2 subscales: Peer Culture (12 items) and Positive Behaviors (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1686] "The Driving Fast Self-Esteem Measure contains 24 items: 10 items directly assessing participants' perceptions of the implications of this behavior for their self-esteem and 14 items assessing the extent to which driving fast is endorsed by their cultural worldviews."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1687] "The Controlling Coach Behavior Scale is a 15-item multidimensional self-report measure with four subscales: The Controlling Use of Rewards (4 items), Negative Conditional Regard (4 items), Intimidation (4 items), and Excessive Personal Control (3 items). The scale demonstrated good content and factorial validity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1688] "This is a 27-item measure comprised of six subscales: cooperative behavior (5 items), pro-social behavior (five items), overt aggression (4 items), social participation (4 items) leadership (three items), and setting limits (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1689] "The Manager Questionnaire includes two subscales: The Extra-Role Scale contains 17 items; the In-Role Performance scale contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1690] "The Parent Goals Checklists for 3- and 7-year-old children consist of 8 items each; the checklist for 13-year-olds contain 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1691] "This 8-item measure consists of two 4-item subscales: Supplier credibility and Supplier benevolence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1692] "The final measure, with 74 items, consisted of the following scales: Perceptual aberration (13 items), Magical ideation (13 items), Cognitive disorganization (7 items), Paranoid ideation (6 items), Physical anhedonia (14 items), Social anhedonia (8 items), and Impulsive nonconformity (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1693] "The Group Membership Implications Measure consists of 10 items in four subscales: Prestige (3 items), Power (3 items), Social Sharing (2 items), and Distinctiveness to play (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1694] "The 8-item Negative Interaction Measure consists of two 4-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1695] "This is a 6-item measure, with pain and injury expectancy being measured by 3 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1696] "The Daily Religious and Spiritual Coping Scale--Short Form consists of 9 items divided among four subscales: (1) Positive religious/spiritual coping subscale (3 items), (2) Negative religious/spiritual coping subscale (3 items), (3) Overall coping (1 item) that assesses the perceived salience of religion in coping, and (4) Religious and spiritual coping efficacy subscale (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1697] "The Eating Attitudes Test-16 contains four subscales and 16 items: Body Image (3 items), Dieting Behaviors (5 items), Awareness of Food Contents (4 items), and Food Preoccupation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1698] "This 20-item measure consists of four 5-item subscales (belonging, self-esteem, meaningful existence, and control)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1699] "The 21-Item Health Risk Inventory consisted of 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1700] "This 12-item measure consists of three 4-item scales: task conflict, relationship conflict, and intragroup trust."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1701] "The Body Image and Sociocultural Influences Interview Schedule consists of 45 items divided among six sections: Satisfaction with body (3 items), Body change techniques (6 items), Family influences (4 items), Social comparisons (7 items), Media (4 items), and Importance of sociocultural influences (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1702] "This measure contained 40 items (Part 1 = 9 items, Part 2 = 31 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1703] "The People Living with HIV/AIDS Instrument contains 10 items. Kessler's Psychological Distress Scale-6 contains 6 items. The Rapid Alcohol Problem Screen contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1704] "The Centralization Scales contains two subscales: Participation in Decision Making (4 items) and Hierarchy of Authority (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1705] "The Career Satisfaction Scale consists of 12 items representing the four dimensions of career satisfaction: Power & status, Financial success, Knowledge & skill development, and Employability (3 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1706] "The Career Goals Scale consists of 9 items divided among two factors: Intrinsic career goals (5 items) and Extrinsic career goals (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1707] "The System Evaluation Questionnaire consists of 19 items: 8-item system use quality sub scale, 7-item information quality sub scale, 3-item interface quality sub scale, and 1 item overall sub scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1708] "The Schizotypy Personality Questionnaire is divided into two scales (STA scale--schizotypal personality and the STB scale--borderline personality). The STA scale has 37 items and the STB scale has 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1709] "The Tolerance for Diversity Measure consists of 8 items. An additional two items were added for a total of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1710] "The Beliefs about Medicines Questionnaire-Specific contains two 5-item scales; the Beliefs about Medicines Questionnaire-General contains two 4-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1711] "This is a 26-item measure consisting of the following subscales: sedentary lifestyle (4 items), poor nutritional consumption (6 items), alcohol and drug use (10 items), and risky sexual practices (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1712] "This 18 item scale consists of two subscales: CAS-Buy (12 items) and the CAS-Free (6 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1713] "This is a 21-item measure, consisting of 10 items concerning pregnancy and 11 concerning parenting a young baby."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1714] "One version of the Cigarette Dependence Scale has 12 items; another has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1715] "This is a 48-item measure, with all of four dimensions (dominance, submissiveness, agreeableness, and quarrelsomeness) being measured by 12 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1716] "General self-reported behaviors (6 items), intentions (5 items), attitudes toward the behavior (5 items), subjective norms (5 items), perceived behavioral control (5 items), habit strength (11 items), work routines (4 pairs of items), and social desirability (9 items) are measured in this instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1717] "The Type-D Scale-16 is comprised of an 8-item Negative Affectivity and an 8-item Social Inhibition scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1718] "This is a 16-item measure, comprised of two 8-item subscales: performance goal orientation scale and the learning goal orientation scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1719] "This is a 10-item measure. The 10 items are administered following each of 8 scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1720] "This measure consists of 8 items, with 2 items assessing Workload and 6 items assessing Perceived control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1721] "The first section of the measure consists of 39 items. The second section consists of 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1722] "Analyses resulted in seven final scales: Opt-out: Informational (5 items), Opt-out: Behavioral (5 items), Blunting (3 items), Suppression: Self-Exemption (4 items), Suppression: Deny Immediacy (4 items), Counterarguing (8 items), and Counterarguing: Normalize the Risk (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1723] "The Patient Requests Form contains 24 items across three subscales: Explanation & Reassureance (8 items), Emotional Support (7 items), and Investigation and Treatment (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1724] "Teacher performance was assessed on four dimensions: (1) Instructional methods, materials, and techniques (17 items), (2) Classroom management (9 items), (3) Interpersonal relationships with students (7 items), and (4) Personal and professional qualities (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1725] "The Attractiveness and Expectancy Scales are two 7-item measures (14 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1726] "The Self-Description Questionnaire–I--ECLS-K Version is comprised of the following items and scales: Reading (8 items), Mathematics (8 items), All School Subjects (6 items), Peer Relations (6 items), Externalizing Problems (6 items), and Internalizing Problems (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1727] "This 13-item measure consists of the following subscales: Norm-Solidarity (3 items), Norm-Flexibility (3 items), Norm-Reciprocity (4 items), and Norm-Information (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1728] "Business strategy attributes were measured across six dimensions: defensiveness (2 items), analysis (2 items), risk aversion (3 items), proactiveness (2 items), futurity (3 items) and aggressiveness (2 items). Four items measured personality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1729] "Family bonds were assessed through a measure of emotional bonds (6 items for mothers and 5 items for fathers) and a measure of instrumental bonds (9 items for both parents)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1730] "The Self-Efficacy for Protective Sexual Behaviors Scale contains 22 items across three subscales: Refusing Sexual Intercourse (9 items), Questioning Potential Partners, (5 items), and Condom Use (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1731] "The Self-Perceived Power Measure contains 35 items and the Perceived Climate Measures contains 28 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1732] "The Perceived Acceptance Scale contains 44 items: 12 items each for acceptance from friends and family and 10 items each for acceptance from mother and father."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1733] "The Attitudes Toward Violence Scale--Child Version contains 16 items in two factors: Culture of Violence (10 items) and Reactive Violence (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1734] "This measure consists of a total of 45 items (Social Support - 16 items; Companionship - 13 items; Social Distress - 16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1735] "Scales were created to tap three coping dimensions: action (19 items), cognitive reappraisal (11 items), and symptom management (24 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1736] "The Desire to Lead Index has 17 items. The Leadership Index has 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1737] "The Parent Feelings Questionnaire contains 31 items in two subscales: negativity (16 items) and positivity (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1738] "The names suggested for each scale and the number of items assigned to each were: (a) Emotional reliance on another person 17 items; (b) Lack of social self-confidence 15 items: and (c) Assertion of autonomy 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1739] "The full measure consists of 25 items distributed across three subscales: Ruminative Response (13 items), Distracting Response (7 items), and Problem-Solving (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1740] "This measure consists of 35 items (28 items from the Body-Image Aberration Scale and 7 new items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1741] "The Psychotic Reaction Profile contains four scales: Withdrawal (38 items), Thinking Disorganization (18 items), Paranoid Belligerence (24 items), and Agitated Depression (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1742] "This 18-item measure consists of a first section (8 items) and a second section (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1743] "The Adolescent Friendship Inventory contains 25 items across 6 subscales: Social Comfort and Satisfaction (6 items), Amount of Time with Friends (3 items), Emotional Support and Intimacy (5 items), Family Support for Peer Relationships (3 items), Loyalty and Trust (4 items), and Ambivalence and Conflict (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1744] "These measures included caregiver (CG) perceived susceptibility of teen (TN) to dating abuse (2 items); CG perceived severity of dating abuse (4 items), CG response efficacy for preventing dating abuse (3 items), CG self-efficacy for talking about dating abuse (5 items), CG knowledge of dating abuse (4 items), CG acceptance of dating abuse (1 item), CG belief in the importance of being involved in TN dating (4 items), and CG use of negative communication with the TN (2 items)."                                                                                                                                                                                                                                                                                                                                                                       
## [1745] "This 31-item measure assesses the following variables: Teen Acceptance of Dating Abuse, 11 items; Teen Perceived Negative Consequences of Dating Abuse, 8 items; Teen Conflict Resolution Skills, 5 items; and Caregiver Date Rule Setting, 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1746] "This is a 10-item scale, with two 5-item subscales: Consideration and Initiating Structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1747] "The first section of the questionnaire consists of 244 behavior items, including 39 items specifically for girls and 46 items specifically for boys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1748] "This is a 36-item measure. The scale includes three 12-item subscales: Parent Distress, Parent Punish, and Parent Minimize."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1749] "Part 1 of this measure consists of 12 items (some containing multiple parts), while Part 2 is comprised of 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1750] "The parent version of this measure consist of 20 items and the youth version consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1751] "This measure consists of 24 items comprising three 8-item subscales: weight loss, weight gain, and muscle tone."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1752] "This measure consists of 10 items (only the first 9 items contribute to the total score of the measure)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1753] "The Occupational Decision-Making Measure consists of 58 items within 10 factors: Idiocentrism-future (6 items), long-term orientation (6 items), allocentrism-family (6 items), occupational interest/enjoyment (6 items), occupational intention (5 items), recognition (5 items), occupational attitude (5 items), expectancy for occupational success (7 items), social influence-family (6 items), and occupational income (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1754] "The Tear Ballot for Industry, General Opinions Measure is composed of 11 items. An additional 4 items inquire about participant demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1755] "The Bake Shop Manager Rating Scale is composed of 24 items. There are 2 different forms of the test, each with 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1756] "The MSS for peers consists of 27 items and the MSS for supervisors consists of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1757] "The Experience with Criminal Justice System Measure is composed of 4 items (2 scales with 2 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1758] "The 12 items in this measure are organized among two 6-item subscales, Anger and Aggressiveness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1759] "This 15-item measure consists of two 6-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1760] "This measure consists of 15 items, but these same 15 items are administered 6 times for 6 different teacher work tasks (class preparation, teaching, evaluation of students, classroom management, administrative tasks, and complementary tasks). Therefore, a total of 90 items are administered to the subject."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1761] "This measure consists of 39 items measuring 6 factors of criteria for marriage readiness: role transitions (6 items), norm compliance (7 items), family capacities (8 items), interpersonal competence (8 items), intrapersonal competence (6 items), and sexual experience (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1762] "The Inventory of Depressive Symptomatology–-Self-Report--30-item Version contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1763] "The Undergraduate Stress Questionnaire (USQ) has 2 versions, one with 83 items and the other with 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1764] "The Strengths and Difficulties Questionnaire--Arabic Version consists of 25 items: 5 5-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1765] "The Prostate Cancer Screening Beliefs Measure contain 15 items within 4 subscales: subjective norms (2 items), behavioral beliefs-benefits (5 items), behavioral beliefs-barriers (4 items), and self-efficacy (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1766] "The Career Futures Inventory contains 25 items across three subscales: Career Adaptability (11 items), Career Optimism (11 items), and Perceived Knowledge of Job Market (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1767] "The Depression, Hopelessness and Suicide Screening Form is a 39-item instrument comprised of a Depression scale (17 items), a Hopelessness scale (10 items), both psychometric scales, and a Critical Item Checklist (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1768] "The Career Assessment Diagnostic Inventory consists of 98 items over 6 subscales: Family Conflict (14 items); Emotional Independence (18 items); Decision-Making Anxiety (14 items); Identity Development (17 items); Career Information (15 items); and Career Self-Efficacy (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1769] "This instrument consists of 26 questions regarding punctuality (10 items) , dependability (6 items), and persistence (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1770] "This is a 21-item measure (10 items for the mothers' version and 11 items for the daughters' version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1771] "This is an 11-item measure. Sexual abuse is measured by 3 items while physical abuse is measured by 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1772] "The survey for hospital neonatologists consists of 17 questions and that for the obstetricians consists of 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1773] "This measure consists of 25 vignettes (items) covering the following categories: sexual (5 items), physical (4 items), emotional (5 items), nonphysical (4 items), and neglect (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1774] "The instrument contains eight items on motivation for becoming a licensed foster parent and 12 items on conditions affecting their willingness to continue. Included also are 7 items on opinions about fostering itself, 19 items on experience with agency and agency social workers and 6 items on training effects. Seven items measure stress and support, while seven other items assess social support. Two questions assess foster parent satisfaction and intent to continue to foster."                                                                                                                                                                                                                                                                                                                                                                        
## [1775] "The OAQ is comprised of six parts: (I) Personal data and retention; (II) Expectancy measures (2 items); (III) Measures of the Instrumentality-Attainment (12 items); (IV) Measures of the Instrumentality--Importance (12 items); (V) Self-evaluation--Quality (3 items); and (VI) Self-evaluation--Satisfaction (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1776] "The Satisfaction Questionnaire consists of 30 items in 8 subscales: advancement opportunity (3 items), autonomy (3 items), intrinsic job satisfaction (3 items), job security (2 items), pay (5 items), recognition (4 items), social environment (5 items), and adequacy of authority (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1777] "This is a 6-item measure. Four items assess the extent to which individuals perceive their ethnic culture is important to them (Ethnic Cultural Importance, ECI) and 2 items assess problems that are perceived to be due to one's ethnic culture (Ethnic Cultural Problems, ECP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1778] "The Social Distance Scale consists of 7 items. The Depression Attitude Questionnaire-R is comprised of 16 items. Stereotypical beliefs about people with mental illness were assessed with 5 items. A total of 10 items were used to measure depression care attitudes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1779] "This is a 38-item measure. The 7 dimensions in this measure are: Team Attitude (5 items), Task Concentration (5 items), Independence/Self-Starter (5 items), Organizational Identification (5 items), Job Curiosity (5 items), Persistence (6 items), and Professional Identification (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1780] "The Physician Knowledge of Child Sexual Abuse Survey consists of 62 items: 6 items related to clinical assessment, 32 items related to essential documentation, and 24 items related to interpretation of suspicion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1781] "Physical abuse is measured by 9 items, while sexual abuse is measured by 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1782] "This is a 28-item measure with two subscales: the Direct Influence (18 items) and Modeling (10 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1783] "This is a 13 item measure consisting of the following subscales: positive behavior directed toward the friend (6 items) and negative behavior directed toward the friend (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1784] "The Friendliness Measure is composed of 4 items asked about each of 8 social crowds, or cliques, for a total of 32 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1785] "The measure consists of 5 scenarios, 3 questions and 16 items to be rated as part of 3rd question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1786] "This measure consists of the 4-item action planning scale and the 5-item coping planning scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1787] "This 21-item measure consists of 10 items referred to positive consequences and 11 items referred to negative consequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1788] "The Adolescent Perception of Being Known Scale contains 8 items in four subscales: Instrumental Support (2 items), Benefit of the Doubt Treatment (1 item), Knowledge Gained Through Observation (2 items), and Meeting of the Minds Experience (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1789] "The Social Physique Anxiety Scale--9 Item Situational Version has 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1790] "The Revised Male Body Attitudes Scale consists of 15 items with three subscales: 5-item Body Fat (BF) subscale, 7-item Muscularity (MUS) subscale, and the 3-item Height (HT) subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1791] "This measure consists of an 11-item and a 13-item section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1792] "The Theories of Cause Scales consists of 14 items divided among four subscales: Moral Weakness (6 items), Disease (3 items), Bad Environment (3 items), Normal Motives (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1793] "The Theories of Cure Scales consists of 12 items divided among three subscales: Professional Help (4 items), Punishment (2 items), and Self-Help Plus Support (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1794] "The Social Bonds Measure consists of 33 items: Family Bonds (14 items) and School Bonds (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1795] "The Tourism Shopping Satisfaction Scale contains 20 items with four factors: Service Product and Environment (9 items), Merchandise Value (4 items), Staff Service Quality (4 items), and Service Differentiation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1796] "The Mixed Methods Appraisal Tool—2011 Version contains five parts and a tutorial: Qualitative (6 items), Randomized controlled (3 items), Non-randomized (4 items), Observational descriptive (4 items), and Mixed methods (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1797] "The Sleep Associated Monitoring Index-Chinese consists of 30 items with eight subscales. Four subscales assessed pre-sleep monitoring, including: (1) body sensations consistent with falling asleep (4 items), (2) body sensations inconsistent with falling asleep (4 items), (3) the environment for signs indicative of wakefulness (2 items), and (4) the clock to see how long it is taking to fall asleep (2 items). One subscale (2 items) assesses the tendency to calculate how much sleep will be obtained during the pre-sleep period and to calculate how many hours of sleep were actually obtained on waking. One subscale assessed waking monitoring for body sensations for signs of poor sleep (5 items). Two subscales assessed daytime monitoring including: (1) body sensations for signs of fatigue (5 items) and (2) functioning (4 items)."      
## [1798] "This measure consists of 19 items, though younger adolescents only respond to 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1799] "This measure consists of 18 items distributed across two factors. A one-factor solution with 10 items represented the construct of upward physical appearance comparisons (UPACS). In addition, a one-factor solution with eight items represented the construct of downward physical appearance comparisons (DACS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1800] "The NPFS is a 46-item, forced-choice (true, false) measure that assesses feelings of Personal Uniqueness (13 items), Omnipotence (19 items), and Invulnerability (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1801] "This 3-item questionnaire contains vignettes with patients receiving 1 of 8 photos of a doctor who varied in terms of ethnic group (Asian versus White), age (older versus younger) and gender (male versus female). Participants responded to the 3 items in reference to the photo."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1802] "Achievement Emotions Questionnaire contains contains 24 scales organized in three sections assessing class-related (80 items), learning-related (75 items), and test-related (77 items) emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1803] "The questionnaire consists of the following three subscales: system usefulness (6 items), information quality (6 items), and interface quality (2 items). There is also one item measuring overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1804] "This scale consists of 21 items distributed across three subscales: Negative Weight and Shape (9 items), Positive Weight and Shape 5 items), and Positive General Appearance (7 items). Two-week test-retest reliability was found to be good"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1805] "The Questionnaire of Eating-Related Characteristics contains 12 dimensions: 12 homogeneous item dimensions: Dieting (26 items); Preoccupation With, and Fear of, Gaining Weight (18 items); Obesity (7 items); Eating Momentum Beyond Control (19 items); Food a Panacea and Constant Temptation (14 items); Secret Binging (9 items); Voracious Eating (6 items); Insufficient Eating Obvious to Others (8 items); Food Phobia (9 items); Inability to Eat (14 items); Vomiting After Meals (4 items); and Lack of Appetite (8 items)."                                                                                                                                                                                                                                                                                                                                 
## [1806] "The SMAQ consists of 19 items representing three latent constructs: Intention to become more muscular (8 items), positive attributes of muscularity (9 items), and engagement in muscle-building activities (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1807] "This measure consists of 24 items (4 items in Part 1 and 20 items in Part 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1808] "The Caring Dimensions Inventory—35 item Version consists of 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1809] "The Rail Ergonomics Questionnaire includes 9 sections: You and Your Job (40 items), Workplace and Work Environment (18 items), Usability of Control/Computer Systems (15 items), Communications (9 items), Workload (2 items), General and Safety Culture (15 items), Hours Worked and Health (13 items), Occupational Stress (20 items), and Final Comments (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1810] "The Service Sales Ambidexterity Measure consists of 10 items divided among 2 subscales: Service Orientation (4 items) and Sales Orientation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1811] "The revised Identity Style Inventory contains four scales: a 10-item information-style scale (coefficient alpha = .62); a 9-item normative-style scale (coefficient alpha = .66); and a 10-item diffuse-style scale (coefficient alpha = .73), and a 10-item commitment scale (retained from the original inventory)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1812] "The Parental Homework Involvement Measure has an 11-item and a 5-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1813] "The Cognitive and Metacognitive Strategy Use Questionnaire contains 17 items: 8 items related to cognitive strategies and 9 items related to megacognitive strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1814] "The 31-item spelling dictation task consisted of two- and three-syllable phonologically transparent (12 items) and opaque words (19 items). Phonologically opaque words included items that involve consonant tensification (six items) and resyllabificiation (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1815] "The Surround-Sound Measure consists of 19 items divided into two questionnaires (7 and 12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1816] "The Product Recall Measure consists of 31 items divided among two sections (16 and 15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1817] "This 7-item measure consists of the 4-item Condom Norm and 3-item Drug Norm Subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1818] "The Situational Self Awareness Scale--French Version consists of 9 items divided among three subscales: Public (3 items), Surroundings (3 items), and Private (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1819] "The Career Indecision Profile-65 comprises 65 items organized among four scales: the Neuroticism/Negative Affectivity scale (21 items), the Choice/Commitment Anxiety scale (24 items), the Lack of Readiness scale (15 items), and the Interpersonal Conflicts scale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1820] "The Spontaneous Emotional Responses Scale contains 7 items for 2 factors: positive (3 items) and negative emotional responses (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1821] "This English version of this scale consists of 11 questions regarding disease-specific risk and other forms of probability. The Italian version consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1822] "The Safety Motivation Measure consists of 9 items divided into three subscales: Intrinsic Motivation (4 items), Identified Regulation (2 items), and External Regulation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1823] "This measure consists of 19 items assessing informational quality of communication, 6 items assessing emotional quality of communication and 1 item assessing patient health behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1824] "This measure consists of 43 total items, including demographic items, a 14-item peer mentoring scale and a 10-item knowledge creation and sharing scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1825] "There are 21 items in the Knowledge subscale, 5 items in the Attitudes subscale, and 7 items in the Beliefs subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1826] "There are 4 questions asked with reference to each of 24 scenarios for a total of 96 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1827] "This is an 8-item measure. The rational verbal influence subscale is composed of 5 items, and the nonverbal behaviors subscale consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1828] "Four multiple-item scales were used to assess affect: activated positive (4 items), deactivated positive (3 items), activated negative (4 items), and deactivated negative (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1829] "With 15 total items, the five 3-item FGQ subscales are: career-focused future goal; fame-focused future goal; wealth-focused future goal; family-focused future goal; and society-focused future goal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1830] "The 21-item Basic Psychological Needs Scale--Modified was developed to assess perceptions of competence (6 items), relatedness (8 items), and autonomy need satisfaction (7 items) regarding physical education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1831] "The trait measure is assessed by 21 items, while the state measure is assessed by 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1832] "The 24 items comprising this measure are spread across four 6-item subscales: mastery experience, vicarious experience, social persuasions, and physiological state."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1833] "The African American Counselor Wellness Inventory contains 41 items in four scales: Physical Wellness (15 items), Emotional Wellness (10 items), Occupational Wellness (10 items), and Spiritual Wellness (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1834] "There are 3 subtests comprising this 13-item questionnaire: mastery goal and performance-approach goal measures (each measured by 5 items), and a performance-avoidance goal measure (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1835] "The modified Impulsive-Premeditated Aggression Scales contains two subscales: Reactive Aggression (10 items) and Progressive Aggression (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1836] "The final form of the GEBEP includes 25 items: 10 items on Structure of knowledge, 7 items on Construction and Stability of Knowledge, 4 items on Attainability of Absolute Truth, and 4 items on Source of Knowing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1837] "The Sources of Self-Efficacy Scale contains 24 items in four factors: Mastery experience (6 items), vicarious experience (6 items), social persuasions (5 items), and physiological/affective factors (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1838] "This is a 16-item measure, with 10 items measuring ambiguity and 6 items measuring complexity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1839] "The test consists of 200 items (50 rows of 4 items) and test items are divided among the following three item characteristic \"main effects\": Simplicity (S)--Complexity (C), Passivity (P)--Activity (A), and Femininity (F)--Masculinity (M)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1840] "This is a 21-item measure. The items in this scale express different opinions, feelings and knowledge related to the information received (10 items) and nurses' interaction with patients (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1841] "The Vasectomy Decision Conflict Scale consists of 16 items, grouped into 5 sub-scales: certainty (3 items), information (3 items), values clarification (3 items), support or pressure from others (3 items), and perception of the quality of the decision process (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1842] "The SSC contains 51 items. The Discriminant Form of the SCC contains 31 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1843] "This 28-item survey focuses on perceptions of classroom structures in the following three areas: Motivation Tasks (11 items), Autonomy Support (6 items), and Mastery Evaluation (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1844] "This 26-item instrument measures students' Mastery Goals (4 items), Performance-Approach Goals (4 items), Perceived Instrumentality (6 items), and Study Strategies (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1845] "This measure consists of 83 items. There are 12 subscales: Learning goal (4 items), performance goal (6 items), future consequence (5 items), please the teacher (5 items), please the family (3 items), perceived ability (8 items), self-regulation (9 items), deep processing (7 items), shallow processing (4 items), persistence (8 items), effort (1 item), and achievement (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1846] "There are five help-seeking scales: instrumental/adaptive help-seeking goal (2 items), formal versus informal help-seeking target (3 items), help-seeking threat (3 items), avoidance of help seeking (3 items), and executive help-seeking goal (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1847] "The full instrument consists of 113 items and 23 dimensions. The reduced instrument contains 56 items and 12 dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1848] "The Subjective Screening of Stuttering--Research Edition contains 8 items in three areas: stuttering severity (2 items) , locus of control (3 items), and avoidance (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1849] "This is a 15-item measure comprised of three subscales, Awe, Inspiration, and Empowerment (5 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1850] "The Childhood Career Decision-Making Questionnaire consists of 27 items, 8 for Concerns/fears regarding career future, 13 for Investment in decision making process, and Knowledge of the world of work, 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1851] "The measure consists of 24 items. Perceived knowledge of genetics was measured with 11 items and genetic attitudes were assessed by 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1852] "This is a 15-item measure assessing affect (QA-6 items), utilization (QU-4 items), and emulation (QE-5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1853] "Knowledge was measured by 38 items and attitude was measured by 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1854] "Health value was evaluated with 5 items. Attitudes toward functional foods were evaluated on the basis of a 3-item scale. Hedonic expectations about the presented product were evaluated on the basis of a multiple 7-point semantic differential scale. Perceptions of healthiness were also evaluated on a multiple 7-point semantic differential scale. Intention to purchase was evaluated with 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1855] "The Infant Feeding Style Questionnaire contains 39 questions on maternal beliefs, 24 questions on behaviors and an additional 20 behavioral items pertaining to solid feeding for infants over 6 months of age."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1856] "Demandingness is measured by 17 items and Responsiveness is measured by 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1857] "The Homework Process Inventory (HPI) elementary school version and the HPI parent version are composed of 25 items each. The secondary school version of the HPI consists of 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1858] "The questionnaire consists of five main subsets with a total of 48 questions regarding general medical knowledge about stroke (12 items), risk factor management (9 items), treatment (6 items related to medication, 5 items related to surgery, and 3 items related to traditional medicine), rehabilitation and post-stroke problems (6 items), and post-stroke diet management (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1859] "The22-item questionnaire has 11 items on Drug Information Sources, 11 items on Credibility of the Drug Information Sources, and 6 items on Roles and Responsibilities of Pharmacists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1860] "This measure consists of 20 items, divided into two 10-item lists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1861] "The Personality in Intellectual–Aging Contexts Inventory contains 72 items, with 6 interface scales containing 12 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1862] "This is a 32-item measure with 8 items comprising each of four subscales: Active Harm, Passive Harm, Active Facilitation, and Passive Facilitation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1863] "This measure consists of 17 items and four subscales. The subscales are as follows: \"Acknowledgement\" scale with 4 items, the \"Violation of Expectations\" scale with 5 items, the \"Awkwardness and Discomfort\" scale with 6 items, and the \"Professional Responsibility\" scale with 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1864] "The resulting ATPE is a 32-item summated rating scale of which 25 items are scored as an attitude measure, and 13 items are scored as a knowledge measure. (A total of six items are scored as both attitude and knowledge measures.)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1865] "Part I of the Bullying of Children Who Stutter Survey contains 6 vignettes and 2 questions. Part II contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1866] "The 18-item Multidimensional Psychological Need Satisfaction in Exercise Scale contains three subscales: Perceived Competence, Perceived Autonomy, and Perceived Relatedness, each with 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1867] "This is adapted from the original 36-item measure. The following subscales comprise the measure: Victimization in the Community (5 items), Witnessing Community Violence (9 items), Domestic Victimization (8 items), Witnessing Domestic Violence (5 items), Sexual Abuse (3 items), and School Violence (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1868] "The Sustainable Foods Psychosocial Survey contains 49 items in 4 sections: beliefs (11 items), attitudes (12 items), perceived behavioral control (10 items), intention (7 items), past behavior (7 items), and self-identity (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1869] "The Health Education Impact Questionnaire consists of 42 items across 8 subscales: Positive and Active Engagement in Life (5 items); Health Directed Behavior (4 items); Skill and Technique Acquisition (5 items); Constructive Attitudes and Approaches (5 items); Self-Monitoring and Insight (7 items); Health Service Navigation (5 items); Social Integration and Support (5 items); and Emotional Wellbeing (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1870] "The Social Marketing and Health Literacy Measure contains 16 items in four subscales: social marketing (4 items), brochure comfort (4 items), patient comfort (5 items), health literacy (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1871] "The Food Behavior Checklist contains 16 items and consists of 5 sections/subscales: The Fruit and Vegetable subscale = 7 items, Milk subscale = 2 items, Fat and Cholesterol subscale = 2 items, Diet Quality subscale = 4 items, and the Food Security subscale = 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1872] "In addition to questions about demographic background, the instrument includes 9 items on the importance of fruit choice motives based on previous research; 7 items on food involvement; 3 items on habits in fruit consumption; 6 items on domain-specific innovativeness; 5 items on fruit neophobia; 11 items on product evaluations of specific fruit innovations; and 1 item on buying intention of specific fruit innovations."                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1873] "The Kids’ Child Feeding Questionnaire--French contains 10 items. Confirmatory factor analysis revealed a 2-factor model (Pressure-to-eat, 4 items; Restriction, 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1874] "The End-Stage Renal Failure Beliefs Questionnaire has 63 items (16 items concerning causes of renal failure, 19 concerning diet and fluid restrictions and 27 concerning hemodialysis. An additional item describes an effect of fluid restrictions.)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1875] "This questionnaire consists of 11 items measuring barriers and 9 items measuring facilitators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1876] "The Pediatric Epilepsy Medication Self-Management Questionnaire contains 27 items in four subscales: Epilepsy and Treatment Knowledge and Expectations (8 items), Adherence to Medications and Clinic Appointments (8 items), Barriers to Medication Adherence (8 items), and Beliefs about Medication Efficacy (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1877] "The Adults' Attitudes to Children with Epilepsy Questionnaire consists of 47 items divided into seven sections: Problems with fits (8 items); Aetiology (6 items); Individual problems at present or in the future (10 items); Adverse effects of drugs (4 items); Concerns for parents ( 5 items); Social restrictions for child and family (6 items); and Adverse effects on family life (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1878] "The Epilepsy Knowledge and Attitudes Questionnaire has 21 items (5 items measuring familiarity, 5 items measuring knowledge, 6 items measuring general attitudes, and 5 items measuring school life-related attitudes)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1879] "Participants completed the following scales: vitamin and mineral use (1 item); chronic disease (1 item); perceived health status (1 item); health consciousness related to eating (4 items); attitudes related to perceived benefits (2 items); risks (2 items) of fortification; vegetable consumption (4 items); vegetable portion (1 item); fruit consumption (2 items); (4) convenience food consumption (9 items); snack consumption (4 items); sugar-sweetened beverage consumption (1 item); wine/beer consumption (2 items); and fortified juice/cereal consumption (3 items)."                                                                                                                                                                                                                                                                                  
## [1880] "The Type A -- Type B Questionnaire contains 34 items in four factors: Tenseness (14 items), Ambitious (7 items), Activity (7 items), and Unrepressed (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1881] "The questionnaire has 24 items distributed across 10 subscales: General Donation-Related Statistics (2 items), African American Donation-Related Statistics (4 items), Knowledge of the Donation Process (3 items), Knowledge of the Allocation System (1 item), Knowledge of What Signing a Donor Card Means (3 items), Knowledge of How Medical Suitability for Donation is Determined (2 items), Knowledge of Religious Institutions' Objections to Donation (1 item), Personal Knowledge of a Donor or Donor Family Member (3 items), Personal Knowledge of a Person on a Waiting List (2 items), and Personal Knowledge of an Organ/Tissue Recipient (3 items).."                                                                                                                                                                                                   
## [1882] "This measure consists of 17 items. Items constituting three separate subscales are dispersed throughout the questionnaire. The Work Quality Evaluation subscale contains 13 items, while the Workplace Rewards and the Workplace Penalties subscales are comprised of two items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1883] "The Attitudes Toward People with Epilepsy Scale consists of 7 items that assessed three perceptual factors: social discomfort in the presence of people with epilepsy (4 items), belief that people with epilepsy are less competent and less productive workers (2 items), and fear that employing people with epilepsy will constitute a financial burden on the company (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1884] "The 50 questions comprising this measure explore both declarative (39 questions) and procedural (11 questions) knowledge."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1885] "The final measure consists of the following sections: Relationship commitment (5 items), Relationship quality (6 items), Patient-centeredness of relationships (11 items), Physician's participative behavior (8 items), Patient's participative behavior (8 items), and Additional information (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1886] "The interview schedule consists of five sections. The sections of the schedule used for assessing knowledge of disease (12 items), treatment (7 items), interest in education, and demographic details (6 items) were developed by the researcher. The third section is used to assess informational needs (29 items). A second part of the informational needs section (17 items) measures how well each need had been addressed through the patient’s care."                                                                                                                                                                                                                                                                                                                                                                                                           
## [1887] "The Hypoglycaemia Fear Survey—Swedish Version contains 20 items in three subscales: Behaviour/Avoidance (10 items), Worry (6 items) and Aloneness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1888] "The CONNECT Instrument has 19 items. In both the Patient and Physician versions, the items are divided into the separate dimensions as follows: Biomedical Cause dimension = 3 items, Patient Fault dimension = 3 items, Patient Control dimension = 3 items, Effectiveness of Natural Treatments dimension = 4 items, Meaning dimension = 3 items, Preference for Partnership dimension = 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1889] "The questionnaires consists of two 10-item measures. One measure is reworded to create a third 10-item measure. The strength, imagery and intrusiveness subscales are a part of each of the measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1890] "The interview consists of 13 items. The seven areas explored in the interview are as follows: 1. Breast cancer discovery (3 items); 2. Diagnosis impact (1 item); 3. Cancer images and sources of these images (2 items); 4. Colors, shapes, textures, and position of cancer (2 items); 5. Treatment provided (2 items); 6. Visual representation of cancer (1 item); and 7. Choice of tools for image creation (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1891] "The survey contained 11 items, including 4 items related to the quality of family meals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1892] "The Youth Attitudes About the Food System Measure contains 20 items in three subscales: Land Use (5 items), Local Foods (9 items), and Hunger (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1893] "This is a 20-item measure, with two 10-item subscales measuring the level and content of ictal consciousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1894] "This questionnaire includes 110 items divided into four parts: 1. socio-economic data (40 items); 2. habits of beer and other alcoholic beverage consumption (18 items); 3. knowledge concerning alcohol (18 items); and 4. attitudes toward alcoholic beverage consumption and alcohol dependency (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1895] "The authors list 15 items, though some items have multiple parts resulting in a 19-question online survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1896] "This is a 10-item measure consisting of two 5-item subscales: Positive Friend Support and Positive Family Support subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1897] "This is a 26-item measure. Three scales were identified: Fruit Self-Efficacy (9 items), Vegetable Self-Efficacy (10 items), and FV Social Norms (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1898] "The Survey of the Theory of Planned Behavior contains 32 items: Behavioral intention (4 items), Attitude (5 items), Subjective Norms (4 items), Perceived Behavioral Control (5 items), Behavioral beliefs (4 items), Normative beliefs (4 items), and Control beliefs (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1899] "The measure consists of 5 items (domains) and 2 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1900] "This is a 10-item measure. Respondents use a 5-point scale to score to what extent they agree with 8 reasons for not using a condom when having sex with a new partner. Also, respondents use 5-point scales to answer 2 questions concerning internal and stable attributions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1901] "This 22-item measure consists of two subscales: Knowledge (12 items) and Attitude (10 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1902] "This 23-item measure consists of a 14-item subscale focusing on self-efficacy for medication adherence and a 9-item subscale focusing on self-efficacy for lifestyle behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1903] "The 11-item scale on medication adherence behaviors and the 8 items on outcome expectations comprise this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1904] "This measure consists of 13 scales divided into the following categories: Communication (7 scales, 21 items); Decision Making (2 scales, 6 items); and Interpersonal Style (4 scales, 14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1905] "This 20-item measure consists of the Sharing (12 items) and Caring (8 items) Subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1906] "The Therapist Characteristics Measure contains 33 therapist characteristics related to four factors: competence (11 items), multiculturalism (9 items), welcomeness (7 items), and direct style (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1907] "This measure consists of 5 items on stressors, 6 items on factors impeding personal psychotherapy, items about personal psychotherapy and demographic questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1908] "A total of 18 items were used to measure the constructs included in the authors' model. Interactivity with peers and the teacher were each measured using a subset of four items from Liu (2003) and McMillan and Hwang (2002). Measures (4 items) of active collaborative learning were adapted from So and Brush (2008). Engagement was measured using three items adapted from Gallini and Moely (2003) and Medlin and Green (2009). Finally, learning performance (3 items) was assessed following MacGeorge et al. (2008)."                                                                                                                                                                                                                                                                                                                                         
## [1909] "The 49-item IFMC Attitudes Questionnaire assesses students' perceptions of this method and consists of three dimensions: Perceived Ease of Use (13 items); Perceived Usefulness (24 items); and Perceived Playfulness (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1910] "The Youth Connections Scale consists of five subscales: Tools for Youth Connection (2 items, supportive connections with caring adults (12 items), strength of youth connections (6 items), support indicators (19 items), and level of youth connections (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1911] "The Overconfidence measure assessed 4 different forms overconfidence: miscalibration in interval estimates with probabilistic and frequency judgment (10 items), better than average effect (5 items) and illusion of control (5 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1912] "The Brief Medication Questionnaire contains a total of 7 items in which 5 items ask patients how they took each medication in the past week, 2 items ask about drug effects and bothersome features, and 2 items ask about potential difficulties remembering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1913] "The Theory of Planned Behavior 5-A-Day Questionnaire contains 12 items that measure 4 constructs: Attitude (4 items), Subjective norms (3 items), Perceived Behavioral Control (3 items), and Intention (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1914] "The Attitudes, Social Identity, and Debt Communication Steps Questionnaire consists of 32 items: 22 items measure attitudes and social identity and 10 measure communications about their debts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1915] "Life events data are gathered with 1 closed- and 3 open-ended questions. Health rating is obtained through two questions regarding satisfaction with health and diagnosis with serious illness. Health attitudes are assessed in the following areas: health maintenance, health worry, satisfaction with health habits (5 items), belief in regular medical checkups, and belief in preventive measures (9 items). Health behaviors are assessed in the following areas: health practices (16 items), self-care (8 items), dietary habits (13 items), obtaining health information (7 items), and health-care consumption during the past year (5 items)."                                                                                                                                                                                                              
## [1916] "The 6-item Adaptive Behavior Measure and 4-item Proactive Behavior Measure comprise this instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1917] "This 14-item measure consists of two 7-item subscales: likelihood to perform immediate behaviors and likelihood to perform sustained behaviors subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1918] "This 5-item measure is comprised of two scales: instructions (2 items) and pair (3 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1919] "The Self-Efficacy for Managing Chronic Disease 6-Item Scale--German Version contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1920] "This 20-item measure consists of two subscales: the Reward-Triggered Mania (12 items) and Reward Avoidance (8 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1921] "The Prescriptive Combined Ideologies Scale is composed of three scales: Prescriptive Beliefs Scale for Meritocracy contains 7 items, the Prescriptive Beliefs Scale for Democracy contains 10 items, and the Prescriptive Beliefs Scale for Equality contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1922] "The Descriptive Combined Ideologies Scale contains three scales: The Descriptive Beliefs Scale for Equality is a 9-item scale, the Descriptive Beliefs Scale for Meritocracy is 8-item scale, and the Descriptive Beliefs Scale for Democracy is a 9-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1923] "Final scoring keys were created consisting of 41 items for trait G, 50 items for trait A, 52 items for trait M, 64 items for trait I, and 68 items for trait N. Only 9 items are scored for more than one trait."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1924] "The Patients' Experiences with Navigation for Cancer Care Interview consists of 6 items: Intervention Group (3 items) and Control Group (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1925] "The Youth SeCZ TaLK Evaluation Questionnaire consists of 2 general items and a 7-item Appreciation scale. The Professional SeCZ TaLK Evaluation Questionnaire consists of 3 general items and a 4-item Feasibility scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1926] "The Children’s Environmental Perceptions Scale contains 16 items with two factors: Eco-Affinity (8 items) and Eco-Awareness (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1927] "Perceived relative advantage was measured by 7 items. Compatibility contained 6 items. Nine items were used in the complexity scale. Trialability was measured with five items. Six items tapped observability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1928] "The following consumption/saving dimensions are measured: Economic situation (3 items), Aspiration level (5 items), Social comparison (6 items), Economic planning (5 items), Regular saving (3 items), Consumption (2 items), and Satisfaction with consumption (3 items). Questions about sociodemographics and living conditions include marital status, number of persons in the household, and number and age of children in the household."                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1929] "The questionnaire measured the following variables: (1) exposure to TV or print advertisements for 7 different antidepressant medications; (2) attention to antidepressant advertisements (2 items; magazine and TV ads); (3) attitudes toward the advertisements (7 items); (4) perceptions of information quality of antidepressant advertisements (4 items); (5) past influence or potential actions to take in response to advertising (14 items); (6) belief in chemical imbalance causal model (5 items); and (7) health-related and demographic measures, measured with the Patient Health Questionnaire-2 (Kroenke, Spitzer & Williams, 2003) and 2 7-point scales."                                                                                                                                                                                             
## [1930] "This is a 3-part questionnaire examining situational (Part I, 46 items), personality (Part II, 61 items), and demographic (Part III) factors influencing the extent of in-store information search."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1931] "The Dietary Behaviors and Attitudes Survey Instrument contains 50 items: 1 question to assess stage of change, 21 for dietary behavior, 16 for knowledge, 5 for self-efficacy, and 7 for demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1932] "The Brazos Valley Health Assessment Questionnaire consists of 8 items: fruit and vegetable intake (2 items), subjective characteristics (3 items), and adequacy of household resources (3 items). Demographic items include 4 items: age, sex, household size, and annual income."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1933] "The Causes of Poverty Questionnaire has two sections. Section one has 14 items and section two has 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1934] "Of the 111 total items, 6 items dealt with general health, and 16 items asked about health problems. There were 27 items relating to sleep."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1935] "This measure contains 30 items, divided into 5 scales: obsession (12 items), retention (3 items), effort/ability (2 items), security (5 items), and inadequacy (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1936] "The Obsessional Intrusive Thoughts Inventory contains 48 items in Part I that measure the frequency of unwanted intrusive thoughts, images, and impulses. The second part asks participants to choose from the 48 items the most upsetting OIT they had experienced during the last three months. Lastly, there are 17 control strategies rated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1937] "This is a 10-item measure comprised of three subscales: the attitude (3 items), subjective norms (4 items), and perceived behavioral control (3 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1938] "The Behavior, Environment, and Changeability Survey contains 34 items in six subscales: (1) Nutrition changeability (8 items), (2) nutrition behavior (10 items), (3) environmental changeability (8 items), (4) program importance and changeability (3 items), (5) exercise behavior (3 items), and (6) sleep behavior and importance (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1939] "This 17-item measure consists of the following subscales: Perceived benefits (3 items), Perceived Barriers (3 items), Self-efficacy (5 items), and Food Stamp Program Fruit and Vegetable Checklist (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1940] "Version 1 is a 14-item version measure. Version 2 consists of 16 items and is divided into subscales: vegetables and fruits, low-fat dairy, soda, physical activity, energy-dense foods or sweets and fats, and parenting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1941] "This instrument is comprised of four subscales with a total of 130 items. The verbal commitment (VC) subscale contains 36 items. The actual commitment (AC) subscale is comprised of 36 items. The affect (A) subscale consists of 34 items. Finally, the knowledge (K) subscale contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1942] "This is a 15-item measure. Achievement is measured using 7 items and Dependency is measured using 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1943] "The short scale contains 6 questions pertaining to neuroticism and 6 questions pertaining to extraversion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1944] "This measure consists of three tasks: elision (36 items), blending (36 items), and initial sound matching (30 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1945] "The Pervasive Developmental Disorders-Autism Society Japan Rating Scale consists of 34 items in four subscales: communication scale (8 items), sensitivity/difficulty scale (10 items), stereotyped behavior scale (8 items), and Restricted Interests scale (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1946] "The Global Environmental Problems Coping Scales has two versions, one with 36 items and an extended version that consists of 41 items. Both versions contain eight scales: problem solving (8 items), expression of emotions (7 items), denial of guilt (6 items), relativization (3 items), wishful thinking (3 items), self-protection (3 items), pleasure (3 items), and resignation (3 items). The three-item scales used in the 36-item version were each supplemented with one more item resulting in 41 items."                                                                                                                                                                                                                                                                                                                                                   
## [1947] "This is a 33-item measure comprised of the following scales: the Concern on Incorrect Test Use (8 items), Regulations on Tests and Testing (8 items), Internet Testing (6 items), Appreciation of Tests (4 items), and Knowledge and Training (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1948] "The Test for the Diagnosis of Mathematical Competences contains 32 items: Procedural knowledge (13 items), conceptual knowledge (7 items), logical abilities (6 items), and estimation of size (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1949] "The original RBQ consists of 33 items. As a result of factor analysis, two verified factors of the measure consisted of 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1950] "The Depression Help-Seeking in Primary Care Interview Guide consists of 10 items related to 4 clinical stages: Appearance of depressive symptoms (1 item), Perceived need for action (1 item), Care-seeking (3 items), and Request-making (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1951] "This 145-item Boundary Questionnaire addresses 12 different content areas as follows: sleep dreams wakefulness (14 items); unusual experiences (19 items); thoughts, feelings, and moods (16 items); impressions of one’s own childhood, adolescence, and adulthood (6 items); interpersonal distance, openness, and closeness (15 items); sensitivity (5 items); preference for neatness and precision (11 items); preference for clear edges, lines, and clothing (20 items); opinions about differences between children and adults (8 items); opinions about organizational lines of authority (10 items); opinions about boundaries between groups, peoples, and nations (14 items); and opinions about the identities between beauty and truth and other abstract concepts (7 items). The measure was reduced to 138 items in the current study."                  
## [1952] "This measure consists of 6 items assessing Beliefs about Justification by authority, 3 items assessing beliefs about personal justification for knowing, and beliefs about justification by multiple sources are assessed by 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1953] "While the original measure consists of 12 items, the measure as used in the cross-cultural assessment consists of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1954] "The Self-Efficacy and Self-Reported Independent Behavior During Last Consultation Questionnaire consists of 18 items: self-efficacy in skills for independent hospital visits (11 items) and independent behaviors during their most recent consultation (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1955] "The children receive three 2-item sets, three 3-item sets, and three 4-item stimulus sets. Across the nine sets of items, the children respond to 27 true/false sentences and attempted to recall 27 words."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1956] "The questionnaire consists of 53 items related to fruit intake and 51 items related to vegetable intake."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1957] "The Baby and Infant Screen for Children with aUtIsm Traits is divided into three parts. Part 1 contains 62 items, Part 2 contains 65, and Part 3 contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1958] "The Trauma Symptoms Investigation Form in Autistic Spectrum Disorders is composed of 20 items within 5 categories: Social and Communication Skills (6 items), Behavioral Problems (7 items), Stereotypical and Ritualistic Behaviors (4 items), Self-Care Skills (1 item) and Vegetative Symptoms (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1959] "The Preschool Imitation and Praxis Scale contains 30 items within 4 factors: single bodily imitation items (18 items), goal directed procedural imitation (6 items), sequential bodily imitation (3 items), and non-goal directed procedural imitation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1960] "The Breast Cancer Screening Knowledge, Attitudes, and Behavioral Intention Questionnaire contains 24 items: Breast cancer knowledge (10 items) and attitudes toward breast cancer (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1961] "This measure consists of four levels or conditions with 10 items each, for a total of 40 items (plus 4 practice examples)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1962] "There are four levels or conditions with 10 items each, for a total of 40 items (plus 4 practice examples)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1963] "The Glaucoma Quality of Life-15 Questionnaire--Chinese Version contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1964] "The Behavior Intervention Plan Survey consists of 10 items in two factors: student outcomes (6 items) and treatment integrity (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1965] "The Questionnaire on Treatment Satisfaction and Knowledge of Patients with Acute Coronary Syndrome contains 21 items covering treatment satisfaction (10 items) and disease-specific knowledge (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1966] "The Filial Obligation Scale contains 11 items within three factors: financial support (3 items), physical aid (5 items), and emotional support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1967] "This is a 44-item measure comprised of the following sections: Local Education Agency (3 items), School Building (18 items), and Student (23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1968] "The Dieting Self-Efficacy Scales assess three separate constructs of dieting behavior: situation-based dieting self-efficacy (25 items), behavior-based dieting self-efficacy (15 items), and goal-based dieting self-efficacy (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1969] "This measure consists of 62 items distributed across the following scales: Social Justice, Equity, National Role, Professional Role, School Purpose, Effect of Disability, Classroom, Teacher's Focus, Teacher's Challenge, and Special Education scales. Items concerning personal and professional self-efficacy were taken from Gibson and Dembo (1984). This instrument consists of 16 items divided into two subscales: Personal Teaching Efficacy and Teaching Efficacy."                                                                                                                                                                                                                                                                                                                                                                                          
## [1970] "The Symbolic Meanings Measure contains 38 items: Symbolic meaning (8 items), evaluative beliefs (14 items), place attachment (9 items), place satisfaction (3 items), and behavioral intention (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1971] "This measure consists of 7 sections: Score on the Mini-Mental State Examination (Folstein et al., 1975) score; Impulsivity, which includes questions on physical function (3 items), impulsivity (1 item), and wandering behavior (1 item); Standing balance; Walking frame; Fall in the previous year; Use of antidepressant medication; and Use of hypnotic/anxiolytic medication. Each of the last 5 sections consisted on 1 item each."                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1972] "The Native American Collective Orientation and Pursuits in Education Scale contains 42 items in three factors: (a) separation or alienation from both the campus community as well as one’s family, tribe, and community (22 items); (b) motivation stemming from a desire to give back or contribute to one’s family, tribe, and community (16 items); and (c) a desire to be successful and advance oneself at an individual level (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1973] "This instrument consists of the following components: Demographic information (3 items), Knowledge (10 items), Deliberation process (9 items), Surgery intentions (2 items) , and Surgery choices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1974] "This is an 11-item measure. Three subscales were identified: Autonomy (3 items), Competence (4 items), and Relatedness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1975] "This is a 60-item measure with eight subscales. The scales are: Initial Responses (6 items), Affective Personal Characteristics (9 items), Behavioral Personal Characteristics (9 items), Cognitive Personal Characteristics (8 items), Opportunities, Supports, and Resources (5 items), Affective Self-Regulatory Processes (5 items), Behavioral Self-Regulatory Processes (9 items), and Cognitive Self-Regulatory Processes (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1976] "The Importance of Organizational Sustainability Measure consists of two separate measures. The first measure, the New Ecological Paradigm scale contains 15 items. The second measure, sustainability importance, has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1977] "A composite score was based on a 6-item subscale on angerability, a 5-item scale on affective lability, a 3-item scale on sadness rumination, and a 3-item scale on anger rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1978] "This measure has 5 main items, 8 items total."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1979] "This measure consists of the Social Behavior Survival Inventory of Teacher Social Behavior Standards and Expectations (107 items) and the Social Behavior Survival Checklist of Correlates of Child Handicapping Conditions (24 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1980] "The Evaluation covers the following topics: Assessment and Evaluation Skills (2 items and 16 sub-items); Professionalization (7 items); Classroom-Management Performance (6 items); Program Development, Planning, and Organization (7 items); and Teaching Skills (2 items and 10 sub-items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1981] "The Adolescent Epilepsy Medication Self-Management Questionnaire contains 27 items in four subscales: Epilepsy and Treatment Knowledge and Expectations (8 items), Adherence to Medications and Clinic Appointments (8 items), Barriers to Medication Adherence (8 items), and Beliefs about Medication Efficacy (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1982] "The Family Responsibility Questionnaire contains 8 items adapted from 8 questions on the Inflammatory Bowel Disease-Family Responsibility Questionnaire (Greenley et al., 2010)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1983] "This 17-item measure is comprised of the following scales: Teacher-Student Relations (6 items), Student-Student Relations (4 items), Liking of School (4 items), and Fairness of School Rules (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1984] "The measure consists of the following scales: encouraging reflective practice (5 items), supporting team activities (4 items), promoting role modeling (4 items), clarifying the mission of the unit (4 items), and clarifying individual goals (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1985] "This 16-item measure is comprised of four 4-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1986] "Three hundred personality items were written, divided into two sets of 150 items each for convenience of administration. Each set is organized into three subforms--a, b, and c--each of which consists of 5 pages, 30 items to the page."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1987] "The 22-item scale assesses components of the investment model. The components are Commitment Level (7 items), Quality of Alternatives (5 items), Investment Size (5 items), and Satisfaction Level (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1988] "Job Characteristics Measure contains a 3-item scale of job autonomy; a 3-item scale of job pressure; a 4-item scale of learning opportunities; a 2-item scale of coworker relations; and a 4-item scale of quality supervision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1989] "The questionnaire contains 18 scales: Physical Resources (3 items), Financial Resources (4 items), Experiential Resources (3 items), Shared Vision (4 items), Relationship Building Capability (4 items), Technology Sensing/Response (4 items), Product-Service (4 items), Price (4 items), Distribution (4 items), Promotion (4 items), People (4 items), Atmosphere (4 items), Process (4 items), Competitive Advantage (6 items), Market Performance (8 items), Financial Performance (8 items), Competitive Intensity (6 items), and Market Dynamism (7 items)."                                                                                                                                                                                                                                                                                                    
## [1990] "The scales comprising this measure are: local connectivity (5 items), overall connectivity (6 items), visibility of co-workers (4 items), and proximity of co-workers (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1991] "The Apology Component Scale contains a total of 14 items in three subscales: Compensation (4 items), empathy (5 items), and acknowledgements of violated rules/norms (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1992] "The Human Resource Management Practices Survey contains 16 items: 12 items to measure HRM practices and 4 items to measure organizational performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1993] "The Christian Working Mothers' Life Experiences Interview consists of 36 items in nine categories: Identity and Career (5 items), Identity and Motherhood (3 items), General Questions of Identity (5 items), Identity and Internal Conflict (4 items), Perceived and Actual Support (7 items), Mental Labor (4 items), Personality and Relationship Variables (4 items), Other Variables (3 items), and Demographic Variables (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1994] "Affective trust is measured by 7 items, while Cognitive trust is measured by 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1995] "The Environmental Satisfaction Scale contains 8 items in two subscales: environmental conditions (4 items) and government environmental policies (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1996] "The Wayfinding Posttask Questionnaire consists of 7 items with two factors: Layout clarity (5 items) and task uncertainty (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1997] "The Quality of Self-Help Books for Anxiety and Depression Rating Measure contains 19 items in five subscales: (a) Psychological Science (5 items); (b) Specific Guidance (5 items); (c) Reasonable Expectations (4 items); (d) Iatrogenic Advice (1 item); and (e) Overall Usefulness (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1998] "The Professional Interview Guide contains 12 questions (some with multiple parts). The Patient Interview Guide contains 24 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1999] "The Huntington's Disease Interview consists of 22 items in five topics: History of personal experience with Huntington's Disease (HD) [3 items]; risk awareness/test decisions [5 items]; stigma about HD [6 items]; communication about the disease [3 items]; and healthcare needs [5 items]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2000] "This 22-item measure consists of the following subscales: Job performance efficacy (JPE) (5 items), Self-control and social relationships (SCSR) (9 items), and Proactive behaviour (PB) (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2001] "The Community Living Center Employee Survey on Attitudes about Resident Safety contains 31 items in eight domains: safety priorities (8 items), supervisor’s commitment to safety (5 items), CLC senior management’s commitment to safety (3 items), attitudes regarding resident safety (3 items), risks or hazards (2 items), perception of shared importance of safety (5 items), culture change and safety (3 items), and overall impressions (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                            
## [2002] "The Domestic and Paid Work Involvement Measure consists of 19 items across four categories: emotional work (6 items), paid work (1 item), housework (5 items), and child care (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2003] "The Self-Report Teamwork Scale contains 30 items in three factors: Cooperation (12 items), Advocate/Guide (9 items), and Negotiation (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2004] "The Physical Activity Enjoyment Scale--8-Item Version has 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2005] "The Sibling Relations Questionnaire--Expanded Version contains 48 items in six subscales: Identity Formation (14 items), Mutual Regulation (10 items), Defend/Protect (6 items), Interpret (8 items), Provide Direct Services (6 items), and Teach New Skills and Abilities (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2006] "The 12-item Diabetes Fatalism Scale has 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2007] "The Elder Abuse Measure consists of 25 items the measure five types of abuse: physical (5 items), emotional (5 items), economic (5 items), and verbal abuse (5 items) and neglect (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2008] "The Questionnaire on Everyday Navigational Ability contains 10 items in four subscales: landmark and scene agnosia (LSA; 3 items); egocentric disorientation (ED; 2 items); heading disorientation (HD; 3 items); and inattention (INA; 2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2009] "The Relationship Belief Inventory consists of a total of 40 items that measure five dysfunctional relationship beliefs: Disagreement is destructive (8 items), Mindreading is expected (8 items), Partners cannot change (8 items), Sexual perfectionism (8 items), and The sexes are different (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2010] "The final 27 items were separated into a Symptom-Independent Self-Disclosure subscale (6 items) and a Symptom-Dependent Self-Disclosure subscale (21 items) on the basis of ratings by clinical experts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2011] "The shortened checklist includes 32 items with 3 subscales: Expectations (12 items), Discipline (10 items), and Nurturing (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2012] "The Attitudes Towards Dating Violence Scales are comprised of six scales: the Attitudes Towards Male Psychological Dating Violence Scale (AMDV-Psyc; 15 items), the Attitudes Towards Male Physical Dating Violence Scale (AMDV-Phys; 12 items), the Attitudes Towards Male Sexual Dating Violence Scale (AMDV-Sex; 12 items), Attitudes Towards Female Psychological Dating Violence Scale (AFDV-Psyc; 13 items), the Attitudes Towards Female Physical Dating Violence Scale (AFDV-Phys; 12 items), and the Attitudes Towards Female Sexual Dating Violence Scale (AFDV-Sex; 12 items)."                                                                                                                                                                                                                                                                               
## [2013] "The 29-item SSP consists of two parts: The 17-item Abuse subscale and the 12-item Perpetrator Risk Characteristic subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2014] "The Abbreviate Test of Working Memory consists of a total of 75 items: Visual Matrix (11 items), Digit Sentence Sequence (9 items), Mapping & Directions (9 items), and Conceptual Span (8 items). The Supplementary subtests are: Rhyming (9 items), and Listening Span (29 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2015] "The scale consists of 30 items. The Justifying Wife Beating subscale (14 items) and the Holding Husbands Responsible for Their Violence subscale (4 items) were revised and translated into Arabic from the Inventory of Beliefs About Wife Beating. The Blaming the Wife for Violence Against Her subscale (12 items) was newly developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2016] "The Demoralization Scale--German Version contains 24 items in four factors: Loss of meaning and purpose (8 items); disheartenment factor (6 items); dysphoria factor (5 items); and sense of failure (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2017] "The measure consists of three subscales: concern about embarrassment (6 items); fear of rejection by the man (5 items); and disabling effects of alcohol consumption (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2018] "This 9-item measure consists of three parallel sets of 3 items assessing self-reported investment in the college student, family of origin, and friend roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2019] "The Psychological Discounting Factors Measure contains 20 items in four factors: unconcernedness (6 items), ignorance (5 items), perceived adaptive capacity (5 items), and emotional involvement (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2020] "The Ship Management Attitudes Questionnaire–-German Navy contains 17 items in three scales: Communication and Coordination (10 items), Command Responsibility (3 items), and Recognition of Stressor Effects (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2021] "The Customers' Perceptions of Hotel Brands Survey contains 21 items in five factors: Customer brand identification (5 items), service quality (3 items), perceived value (4 items), brand trust (4 items), and brand loyalty (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2022] "The Hospice Social Workers and Life Review Intervention contains a total of 72 items: Specific activities in LR (32 items); daily practice activities (6 individuals items; 1 summary longer measure with 21 items); and personal, professional, and agency characteristics (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2023] "This measure consists of 8 items. Two 4-item scales measure knowledge collecting and knowledge donating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2024] "The Tilburg Frailty Indicator--Brazilian Version contains 15 questions across three domains: physical (8 items), psychological (4 items), and social (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2025] "The Autism Treatment Philosophy Questionnaire—Adapted Version contains 27 items across two scales: TEACCH (14 items) and LEAP (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2026] "The Parental Confidence Rating Scale consists of two versions: 7-item version administered prior to the HHP intervention and the 8-item version is administered following the HHP intervention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2027] "This measure consists of the 40-item Repetition of Ungrammatical Sentences Task and the 15-item Replication Task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2028] "The European Healthcare Training and Accreditation Network Questionnaire Tool contains 108 items in eight domains: Assessment (9 items), Care delivery (40 items), Health promotion (10 items), Communication (10 items), Personal and professional development (8 items), Professional and ethical practice (16 items), Research and development (6 items), and Team working (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2029] "Six items measure parental support, 3 items assess positive affective quality, and 2 items measure parental involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2030] "This measure consists of the following scales: Family functioning (19 items), Family health (24 items), and Social Support (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2031] "This is a 12-item measure. The first 4 items assess substance abuse and the second 8 items assess substance dependence in the past year."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2032] "A total of 31 items and 25 items measure causes and treatment, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2033] "The Recovery Self Assessment contains 36 items and five subscales: Life Goals (11 items), Involvement (8 items), Diversity of Treatment Options (6 items), Choice (6 items), and Individually-Tailored Services (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2034] "The Pragmatic Language Inventory contains 21 items in four factors: Verbal impulsivity (5 items), expressive language (8 items), receptive language (5 items), and self-talk (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2035] "The Attitudes to Mental Health Nurse Prescribing Questionnaire contains seven subscales: General beliefs (16 items), Impact (22 items), Uses (9 items), Clinical responsibility (5 items), Legal responsibility (4 items), Training (7 items), and Supervision (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2036] "The survey is composed of 6 parts. First, students are asked about the number of problematic students they observe in their programs. Next, an 11-item checklist regarding understanding of whose responsibility it is to handle a problematic peer is provided. A 34-item checklist of types of problems students might encounter in their peers is included. Respondents are then asked to indicate how they responded to or acted toward problem peers using a 17-item checklist. Participants are asked to indicate how a problem peer emotionally impacted their educational experience (academic and clinical) and the training environment by selecting from a list of 25 possible effects. Each respondent is then asked to rank in order the 5 most important ways he or she had been affected. The last section of the survey includes 6 open-ended questions."
## [2037] "This 20-item measure consists of the following scales: (1) Roles and responsibilities in recovery (7 items), (2) Non-linearity of the recovery process (6 items), (3) Roles of self-definition and peers in recovery (5 items), and (4) Expectations regarding recovery (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2038] "The Perceived Causes of Rape Scale contained 32 items with six factors: Female Precipitation (6 items), Male Sexuality (7 items), Male Hostility (5 items), Male Dominance (6 items), Society and Socialization (6 items), and Male Pathology (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2039] "Various types of violence are measured (physical, 31 items; emotional, 21 items; sexual, 11 items). The respondent is also asked whether she had been injured as a result of domestic violence during her lifetime. In addition, the respondent is asked to identify and describe an incident or pattern of a partner's acts that she considered the most abusive. The respondent's sociodemographic information, as well as selective characteristics of the respondent's partner, are also obtained."                                                                                                                                                                                                                                                                                                                                                                  
## [2040] "The SCIS consisted of 4 sections. Section 1 consisted of 59 items organized into 5 components of supported employement: Basic Principles (11 items); Client Eligibility and Selection (7 items); Assessment, Pre-Employment and Planning (11 items); and Job Support and Training (16 items). Six distracter items were included. Section 2 asked respondents to choose 10 items they considered most critical to the supported employment model. Section 3 asked respondents to identify ideal specifications for 12 items; respondents provided a numerical value in an appropriate unit. The fourth section obtained pertinent background information."                                                                                                                                                                                                               
## [2041] "The Recent and Lifetime Experiences with Domestic Violence Scale contains a total of 55 items in two scales Domestic Violence in the Past 12 Months (35 items) and Domestic Violence Ever in Life (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2042] "A 5-item scale assesses perceptions of violence in the film; a 9-item scale assesses enjoyment of the film; a 4-item scale assesses how degrading the film is to women; and a 2-item scale assesses how degrading the film is to men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2043] "The Diversified Placement Approach Fidelity Scale contains 20 items in four subscales: Work Readiness (3 items), Staffing (4 items), Integration of Services (6 items), and Array of Options (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2044] "A total of 70 competencies (items) were grouped into 8 domains: Professional Holistic Mental Health Nursing Care (9 items); Performs/Refines Client Assessment Enhancing Therapeutic Care (9 items); Administering and Monitoring Therapeutic Interventions (8 items); Efficiency in Management of Rapidly Changing Psychiatric Crisis Situations (9 items); Therapeutic Teaching-Coaching Functions (9 items); Ensuring Quality Mental Health Care Services (9 items); Interprofessional Communication Effectiveness and Collaboration (8 items); and Providing Nursing Care within Organizational Boundaries and Work-role Structures (9 items)."                                                                                                                                                                                                                      
## [2045] "The Adolescent–Parent Career Congruence Scale contains 12 items in two subscales: The complementary congruence subscale (7 items) and the supplementary congruence subscale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2046] "The Attitudes/Beliefs Toward Governmental Interventions to Influence/Regulate Legal Substance and Tobacco Use Indices contains 26 items in four indices: Government intervention index (5 items), Health risk index (4 items), Smoker characteristic index (8 items), and Smoker/nonsmoker relationship index (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2047] "The Medical Care Errors Survey--Modified contains 38 items in four scales: Causes (6 items), Nurse response (19 items), Institutional response (2 items), and Changes in practice (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2048] "The Questionnaire on Family Background contains 97 items: Twenty-one of which pertained to the father’s attitudes and the remaining twenty-one to the comparable attitudes of the mother (42 items), parent-child and sibling rapport (13 items), type of control exercised by the parents relative to different areas of activities (21 items), and extent of agreement between the student and her father, and between the student and her mother, on the type of supervision of the same activities listed under parental control (21 items)."                                                                                                                                                                                                                                                                                                                        
## [2049] "The 56 items are divided into seven subscales (hedonism, recognition, dominance, submission, conformity, personal love and affection, and novelty), each of which contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2050] "The 32 items are organized into 6 subscales: General Satisfaction (5 items), Pay (4 items), Advancement and Security (3 items), Supervision (5 items), Coworkers (7 items), and How I Feel On This Job (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2051] "The Technology Acceptance Survey contains 15 items in four factors: Perceived Usefulness (7 items), Perceived Ease of Use (3 items), Behavioral Intention to Use (3 items), and Unobstrusiveness (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2052] "The Rat Fear Survey contains 14 items: 1 item inquiring about fear of rats, 7 semantic differential items on which respondents are asked to evaluate rats, and 6 situational items concerned with rats."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2053] "The Parents' Eczema Management Scale 25 items in two factors: Performing Routine Atopic Dermatitis Management Tasks (16 items) and Managing the Child’s Symptoms and Behaviour (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2054] "The PASECI consists of 40 items, with 10 items each assessing Managing Medication, Managing Eczema and Symptoms, Communicating with Health Professionals, and Managing Personal Challenges when Caring for Your Child with Eczema."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2055] "The Social Skills Role-Playing Measure contains 30 items. The 30 role-playing items were thus each assigned to one of five subsets or categories of situations: resolution of interpersonal conflict (10 items), conversational skills (8 items), assertiveness (6 items), dating skills (4 items), and academic interpersonal skills (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2056] "This measure consists of a 10-item and a 7-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2057] "The Attitudes Towards Turk-2 System Questionnaire consists of 10 items regarding the subjects’ impressions about Turk-2 system. An additional 6 items encouraged to describe their impressions in their own words at the end of the questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2058] "The Retailing Website Consumer Evaluation Questionnaire contains 66 items grouped in 16 constructs: Technical Functionality (4 items), Situational Normality (3 items), Information Quality (5 items) Structural Assurance (4 items), Ease of Use (4 items), Perceived Usefulness (4 items), Consumer Feedback Mechanism (4 items), Third-party Recognition (5 items), Perceived Enjoyment (4 items), Perceived Willingness to Customize (4 items), Knowledge and Skills Provided (3 items), Functional Perception (4 items), Motivating Perception (4 items), Distrust in the E-Vendor (5 items), Trust in the E-Vendor (6 items), and Buying Intention (3 items)."                                                                                                                                                                                                     
## [2059] "The European Heart Failure Self-care Behaviour Scale - Chinese Version contains 12 items in three subscales: Complying with regimen (6 items), seeking for help (4 items), and adapting activities (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2060] "The Abusive Behavior Measure contains 45 items: physical abuse (8 items), child neglect (8 items), emotional/psychological abuse (8 items), sexual abuse (15 items), and child labor (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2061] "The Clinical Learning Environment and Supervision Instrument—Dutch Version consists of 32 items with five dimensions: Ward atmosphere (12 items), Supervisory relationship (6 items), Premises of nursing care on the ward (5 items), The ward as a learning environment (4 items), and Leadership style of the ward manager (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2062] "The KIDSCREEN-52--Norwegian Version contains 52 items in ten dimensions: Physical well-being (5 items), psychological well-being (6 items), mood (7 items), self-perception (5 items), autonomy (5 items), parents relation (6 items), financial resources (3 items), social support and peers (6 items), school environment (6 items), and bullying (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2063] "The Utrecht Coping List—19-item version consisted of 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2064] "The Career Competencies Indicator contains 43 items with seven factors: Goal setting and career planning (5 items), Self-Knowledge (5 items), Job-related performance effectiveness (5 items), Career related skills (7 items), Knowledge of (office) politics (5 items), Career guidance and networking (8 items), and Feedback seeking and self-presentation (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2065] "The scale contains 18 items that reflect two domains related to the patient: Sharing and Caring (9 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2066] "The Facebook Social Connectedness Scale contains 20 items to reflect an individual’s positive (10 items) and negative (10 items) feelings towards their Facebook environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2067] "The Sexual Health Care Scale--Attitude contains 17 items with four factors: Discomfort in Providing Sexual Health Care (7 items), Feeling Uncertain about Patients' Acceptance (4 items), Afraid of Colleagues' Negative Responses (3 items), and Lack of Environmental Support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2068] "The Experiences With Instant Messaging Systems Questionnaire contains 11 items with six criteria: Interactivity (1 item), Involvement/Engagement (2 items), Sense of Co-presence (2 items), Enjoyment (1 item), Affective Intelligence (4 items), and Overall Satisfaction (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2069] "The Website Color, Trust, Satisfaction, and E-loyalty Survey contains 16 items in four subscales: Colour appeal (7 items), trust (3 items), satisfaction (3 items), and e-loyality (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2070] "The Perceived Choicefulness and Parental Engagement Scales contains 5 items: Perceived choicefulness (2 items) and perceived parental engagement (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2071] "The Revised Scale for Caregiving Self-Efficacy contains 15 items in three subscales: Obtaining Respite (5 items), Controlling Upsetting Thoughts About Caregiving (5 items), and Responding to Disruptive Patient Behaviors (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2072] "The Inner Strength Scale contains 20 items over four subscales: Firmness (5 items), Creativity (5 items), Connectedness (5 items), and Flexibility (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2073] "This measure is divided into three sections: 1. knowledge about influenza and influenza vaccination (22 items); 2. perception of the risk towards influenza and pandemics (12 items); and 3. influenza vaccination behaviors (9 items), reasons for having or not having an influenza vaccination, and demographic information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2074] "The Involvement with and Distance from E-Health Advisors Scales contains 6 items in two scales: User Involvement (3 items) and Distance (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2075] "The Community Integration Barriers Instrument contains 25 items split into three sections: Skill-related barriers (14 items), support systems (5 items), and resources (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2076] "The Team-Based Talent Management Questionnaire contains 13 items with five factors: Employee Participation in Decision-Making (3 items), Job Specialization within Teams (3 items), Autonomous and Creative Team Dynamics (3 items), Socialization within and across Teams (2 items), and Job Formalization within Teams (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2077] "The CiteSeer Use and Opinions Survey consists of 29 items: Organized into 4 broad sections: Professional interaction (7 items), CiteSeer use (7 items), Comparison of search engines with CiteSeer (6 items), and Background information (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2078] "The Social Networking Site Use Survey contains 8 scales: Ease of Use (3 items); Enjoyment (3 items); Extroversion (3 items); Internet Risk Perception (2 items); Privacy Abuse Concern (3 items); Risk (3 items); Social Presence (3 items); and Site Use (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2079] "The Achievement Goal Orientations for Teaching Instrument--Adapted comprises three subscales: mastery goals (3 items), performance-approach goals (4 items), and performance-avoidance goals (3 items) for teaching."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2080] "Perceptual Speed Tests contain 60 items administered in two parts of 30 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2081] "This is a 40-item measure. The authors note that future research might investigate the possibility of using the reduced 28-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2082] "The POW Exercise Experience Attribution Measure contains 6 items in three factors: Positive Attributed Meaning (2 items), Negative Attributed Meaning (3 items), and Reaching Closure (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2083] "The Knowledge Sharing Behavior, Attitudes, and Trust Questionnaire consists of 34 items in seven constructs: Economy-based trust (4 items), Information-based trust (4 items), Identification-based trust (4 items), Personal outcome expectations (5 items), Community-related outcome expectations (5 items), Knowledge sharing self-efficacy (7 items), and Knowledge sharing behavior (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2084] "Scales include the following: Aesthetics (4 items), Affordance (7 items), Epistemics (5 items), Ethics (4 items), Valence (4 items), Relevance (4 items), Similarity (4 items), Involvement (3 items), Distance (4 items), Use intentions (7 items), Satisfaction (4 items), and Dissatisfaction (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2085] "The Questionnaire on Computer Expertise consists of a total of 19 items: 10 regarding frequency of computer software use, 4 related to competence levels with operating systems, 2 items regarding respondents advising others on computer usage and problems, and 3 general demographic questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2086] "The World View Scale consists of 4 items (Crime Opinion Survey) and 2 items (safety perception)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2087] "There are 4 scales: (1) Spatial–physical Aspects of Proximal External Spaces of the Hospital (15 items); (2) Spatial–physical Aspects of the Care Unit (18 items); (3) Spatial–physical Aspects of the In-patient Area and of the Out-patient Waiting Area (21 items); and (4) Social–functional Aspects of the Care Unit (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2088] "The Neighborhood Safety Questionnaire consists of 22 items: questions pertaining to neighborhood safety concerns (2 items), perceived environmental crime variables: community care and vigilance (6 items), physical incivilities (6 items) and social incivilities (4 items), as well as demographic information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2089] "The 114 items on the Aspects of Personality Inventory consist of 35 items in Section 1 (AS Test); 44 items in Section 2 (E-I Test); and 35 items in Section 3 (E Test)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2090] "The Family Values Scale consists of a total of 14 items with two subscales: Obligations (10 items) and and Rights assessing adolescent autonomy (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2091] "The Blackboard System User Acceptance Questionnaire contains 23 items with seven factors: Learning goal orientation (5 items), Application-specific self efficacy (4 items), enjoyment (3 items), Ease of use (4 items), Usefulness (4 items), Behavioral intention (3 items), and Use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2092] "The Physical Working Environment Questionnaire contains 17 items in two sections: Disturbance (5 items) and Workplace Evaluations (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2093] "The Black Male Experiences Measure contains 35 items across four subscales. Three subscales were used in this study: proximal negative experiences, distal negative experiences, and negative inference experiences subscales with 8, 8, and 5 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2094] "The Team Awareness and Interaction Satisfaction Questionnaire contains 6 items in two scales: Team awareness (3 items) and Team communication satisfaction (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2095] "The INV1 consists of 36 items, while the INV2 consists of 54 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2096] "Section One asked respondents to provide their biographic information. The second section comprised a Students' Personal Concerns Scale containing 40 items, and the third section comprised a 30-item Causal Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2097] "Three scales were created to make up the measure (41 items in total): Knowledge scale (9 items), Attitudes Scale (10 items) and 22 items measuring preventive efforts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2098] "This 8-item measure consists of two 4-item scales: Perceived Ease of Use and Perceived Usefulness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2099] "This is a 15-item measure. Students had to indicate for the 15 items: (1) their perceived reputation, and (2) their ideal reputation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2100] "This is an 11-item measure. For further analysis, the 11 items eliciting perceived difficulties in schoolwork were combined to four conceptual sum scales: difficulties in concentration, difficulties in social relationships, difficulties in self-reliant school performance, and difficulties in reading and writing."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2101] "This is a 6-item measure. Atittude (defined as affective response) was measured with 4 items, and future use was measured with 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2102] "The scale has a total of 60 items and consists of 4 subscales: Facial expressions (13 items); Activity/body movement (20 items); Social/personality mood (12 items); and Other, including physiological changes and specific vocalization of pain (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2103] "The General Health Numeracy Test (GHNT) has two versions: GHNT-21 and GHNT-6. The GHNT-21 contains 21 items and the GHNT-6 contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2104] "The Home Electronic Equipment Scale--Modified Version contains 21 items in three subscales: electronics available in the home (8 items), electronics available in the child’s or adolescent’s bedroom (8 items), and portable electronics (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2105] "The Patient-Health Care Provider Communication Scale contains 21 items in two subscales: Quality Communication (17 items) and Negative Patient-Health Care Provider Communication (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2106] "The Formal Institutional Environment Survey contains 4 scales: Rule of Law (5 items), Government Policies (4 items), Regulatory Policy (5 items), and Business Support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2107] "The Mental Incongruity Measure consists of a total of 16 items: work status domain (4 items), work status cognition (4 items), social relations domain (4 items), and social relation cognition domain (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2108] "The Basic Empathy Scale--Italian Version contains 20 items in two subscales: Cognitive Empathy (9 items) and Affective Empathy (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2109] "The 16-Item Questionnaire Based on the HEADSS has 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2110] "The 32-item questionnaire includes the following: 1) an 8-item scale used to measure personal attitudes regarding the importance of following traffic safety rules while crossing the road; 2) an 8-item scale used to measure children's perception of peers' attitudes towards road crossing; 3) a 7-item scale used to measure personal unsafe road crossing behaviors; 4) a 7-item scale used to measure children's perception of peers' unsafe road crossing behaviors; and 5) 2 items used to measure preventive behavior related to road crossing."                                                                                                                                                                                                                                                                                                               
## [2111] "The L'échelle d'évaluation de la Gêne Environnementale Perçue en Milieu Urbain contains 51 items and a shorter version contains 28 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2112] "The Rugby Players' Tackling Attitudes and Behaviors Questionnaire consists of 12 Training Questions with a total of 109 items and 4 Match Questions with a total of 52 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2113] "This 15-item measure assesses leadership commitment (6 items), safety climate (3 items), attitude toward change (3 items), and perception of safety (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2114] "The scale assessing family support consists of 20 items and that assessing perceived family control consists of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2115] "The Sexual Behavior and Orientation Measure contained 13 items: 5 specific sexual behaviors, 4 items related to the \"first serious' romantic relationship, three items related to partner preferences (the 3 questions are responded to twice), and 1 item asking about sexual orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2116] "The Self-Monitoring Scale—18-item Version contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2117] "The Attitudes Toward Casual Sex and Sex Without Commitment Indices consists of 8 items: Attitudes Toward Casual Sex (6 items) and Attitudes Toward Sex Without Commitment (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2118] "The measure consists of 29 items and 5 subscales labeled Nurture (6 items), Problem Solving (7 items), Expressed Emotion (6 items), Behavioral Boundaries (5 items), and Responsibilities (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2119] "This instrument consists of 3 scales. Job satisfaction is measured by 6 items. A total of 5 items were chosen to measure organizational commitment. Intrinsic job motivation was measured by 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2120] "The Safety Leadership Scale contains 16 items with three dimensions: safety motivation (7 items), safety policy (4 items), and safety concern (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2121] "The BSSS consists of 8 items covering the four basic constructs of sensation seeking: Experience Seeking, Boredom Susceptibility, Thrill and Adventure Seeking, and Disinhibition (2 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2122] "This questionnaire covers the following areas: demographic data; current height, weight, and desired weight; 8 questions derived from the DSM III (American Psychiatric Association, 1980) criteria for bulimia (some items simplified into the jargon of high school students); and 2 questions dealing with fasting and concern about being too fat."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2123] "The General Symptoms Checklist contains 12 items with two factors: Vegetative Syndrome (6 items) and Physiological Syndrome (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2124] "Six HEXACO personality factors (Neuroticism; Extraversion; Openness; Agreeableness; Conscientiousness; and Honesty-Humility) were measured with 30 items. Service providers' emotional labor in customer encounters was measured with 10 items, and service providers' emotional display (e.g., display positive emotions; hide negative emotions) was measured with 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2125] "The Flight Seating and Safety Perceptions Questionnaire consists of 30 items in three sections: Passenger perceptions on exit row seating limitations and obligations (16 items); passenger opinions of flight safety education in Taiwan (14 items); and demographic data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2126] "The Festival Environment Questionnaire consists of 48 items: Festival environment cues (26 items), Positive and negative emotions (7 items), Hedonism (4 items), Social identification (4 items), Satisfaction (3 items), and Re-patronizing intention (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2127] "Word-of-mouth was assessed using a 4-item index modified from Baloglu (2002) and Harrison-Walker (2001) instruments. Affective commitment was measured using a 3-item scale measure adapted from Allen and Meyer (1990). Calculative commitment was measured with a 4-item scale measure adapted from Allen and Meyer (1990). Investment size was measured using a 4-item scale. Satisfaction was measured using a 4-item scale adapted. Finally, Quality of alternatives was measured using a 3-item scale measure."                                                                                                                                                                                                                                                                                                                                                    
## [2128] "On a basis of clinical experience, a number of questions were formulated covering 5 groups of symptoms and traits: free-floating anxiety, phobic anxiety, obsessive-compulsive traits and symptoms, somatic symptoms, and depressive symptoms. In the final form of the test, the 40 best items were retained and an 8-item hysterical scale was added, to make a 48-item test comprising 6 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2129] "The items of measurement were based on or adapted from those by other authors in order to assess the following dimensions: skill (5 items), challenge (5 items), playfulness (4 items), control (3 items), focus attention (3 items), time distortion (3 items), positive emotion (4 items), rafting satisfaction (3 items), and rafting loyalty (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2130] "This 26-item measure consists of 8 scales (Perceived access speed, Perceived content quality, Perceived ease of use, Perceived usefulness, Perceived enjoyment, Perceived control, Attention focus, and Usage intention), each measured with 3 or 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2131] "Hotel managers and owners completed the questionnaire, which consisted of questions about innovativeness (5 items); entrepreneurial (7 items) and customer (9 items) orientations; and the link with hotel business performance (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2132] "The items were organized under 3 scales: Knowledge Sharing (11 items), Team Culture (16 items), and Service Innovation Performance (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2133] "The 25-item measure contains 8 scales: Distributive Justice (4 items), Procedural Justice (4 items), Interactional Justice (5 items), Recovery Satisfaction (4 items), Trust (4 items), Word-of-Mouth (2 items), and Revisit Intention (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2134] "The 21-item questionnaire contains 6 scales: Relationship Quality (2 items), Customer Orientation (4 items), Domain Expertise (5 items), Interpersonal Relationships (3 items), Service Recovery Performance (3 items), and Information Technology (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2135] "The Strategic Alliance Performance Scales contains a total of 20 items in two scales: Perceived strategic alliance performance (14 items) and Perceived overall satisfaction with the alliance (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2136] "A total of 16 items are used to measure Deteriorating Situations, while 15 items assess Escalating Situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2137] "This measure consists of 3 sections. The first section asks about the respondents’ general online shopping behavior. The second section includes 14 questions measuring the respondents’ attitude (4 items adapted from Taylor & Todd, 1995), subjective norm (2 items adapted from Taylor & Todd, 1995), personal innovativeness (4 items adapted from Agarwal & Prasad, 1998), and intention (4 items, adapted from Venkatesh & Davis, 2000). The final section assesses respondents’ socio-demographic information."                                                                                                                                                                                                                                                                                                                                                  
## [2138] "The Korean Demilitarized Zone Tourist Survey consists of a total of 20 items: DMZ perceived value variables (15 items), DMZ travel satisfaction (3 items), and Recommendation to travel (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2139] "The questionnaire consists of two sections. The first section, \"Questions for measuring safe behavior,\" consists of 15 items. The second section, \"Questions for measuring emergency preparedness behavior,\" consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2140] "The Evaluation of the Ability to Sing Easily Instrument contains a total of 20 items in two subscales: Physical symptoms of vocal fatigue (10 items) and Mucosal changes subscale (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2141] "The Personal and Property Crime Victimization Indexes consists of a total of 13 items in two indexes: Personal Crime Victimization (11 items) and Property Crimes (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2142] "The Game Motivation Questionnaire consists of a total of 20 items in four subscales: Probability of success (5 items), Anxiety (5 items), Interest (5 items), and Challenge (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2143] "The Parenting Style Measure consists of a total of 14 items: Encouragement (5 items), Worry (4 items), Monitoring (2 items), and Permission (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2144] "The Social Networking Sites Motive Scale contains 6 subscales and 25 items: Passing time (4 items), Friendship (5 items), In trend (3 items), Relationship maintenance (3 items), Entertainment (3 items), and Relaxation (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2145] "This 32-item measure consists of four 8-item subscales (ADHD Symptom, Emotional Control, Antisocial Behavior, and Social Functioning)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2146] "This measure consists of 28 items. It includes four subscales, the Principal Support Scale consisting of 13 items, the 4-item Colleague Support Scale, the Teacher Attitudes and Beliefs Scale containing 7 items, and the Lack of Time Scale including 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2147] "The Measure of Safety Climate contains 27 items in five factors: Personal motivation for safe behaviour (8 items), Positive safety practice (6 items), Risk justification (4 items), Fatalism (5 items), and Optimism (4 items). There is also a Short unidimensional version of scale that contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2148] "The final survey contains 51 questions, including the following: (1) 8 demographic questions, (2) 10 questions that measure knowledge and beliefs about teaching of and engagement in EBP using a 0-100-point scale, (3) 15 dichotomous (yes/no) questions about the teaching of EBP, and (4) 18 open-ended questions about the teaching of EBP and implementation of EBP in clinical practice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2149] "The Acculturation Perceptions Measure contains 6 items: Perceived heritage culture maintenance (3 items) and Perceived host culture adoption (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2150] "This measure consists of 18 items, with a 6-item Trustworthiness Scale, a 4-item Misleadingness Scale, a 4-item induction check, and a 4-item Hypocrisy Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2151] "In one study, the Learning Orientation measure consisted of 4 items, and the Performance Orientation measure consisted of 3 items; in a 2nd study 2, both the Learning Orientation and the Performance Orientation measures consisted of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2152] "The Reasons to Expatriate Questionnaire contains 11 items across four scales: Architect Reasons (3 items), Explorer Reasons (3 items), Mercenary Reasons (2 items), and Refuge Reasons (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2153] "The Sedentary Behavior Change Self-Efficacy Scale has two versions: a 24-item full version and a 15-item reduced version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2154] "Items were grouped in scales based on the Theory of Planned Behavior: attitudes toward behavior, 7 items; behavioral beliefs, 5 items; subjective norms, 6 items; and perceived behavioral control, 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2155] "This measure consists of the 6-item News Valence scale and the 5-item Reluctance scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2156] "This measure consists of the 9-item Support Seeking Scale and the 6-item Emotion Signaling Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2157] "The Word Reading subtest includes the letter recognition (15 items) and word reading (55 words); the Sentence Comprehension subtest contains 50 items of one to two sentences each; the Spelling subtest includes letter writing (i.e., 13 letters must be written)and 42 words; and the Math Computation subtest consists of oral math (15 items) and math computation (40 problems); and the to solve)."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2158] "92 items (81 items distributed across four factors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2159] "The 19 items were designed to measure 4 social competence dimensions: initiation of (offline) relationships/interactions (5 items), supportiveness (5 items), assertiveness (4 items), and ability to self-disclose (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2160] "The 103-item measure assesses aspects of political involvement and orientations toward political conversation: Political Interest (1 item), Political Efficacy (3 items), Political Knowledge (9 items), Associational Membership (15 items), Civic and Political Participation (11 items), Institutional Political Participation (10 items), Understanding Orientation (8 items), and Strategic Orientation (8 items). The measure also assesses the following: Social Trust (1 items), Postmaterialist Values (3 items), News Exposure (9 items), News Attention (6 items), Entertainment Television Use (3 items), Political Talk (4 items), Political Discussion Network Size (4 items), Political Discussion Network Heterogeneity (5 items), Political Discussion Network Density (3 items)."                                                                      
## [2161] "The Rey 15-Item Memory Test contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2162] "The Rey 15-Item Memory Test--2nd Version has 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2163] "The final ICAST C Home has 38 items and the ICAST C Institution has 44 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2164] "The Dutch Childhood Trauma Questionnaire—Short Form contains a total of 24 items with five factors: Physical abuse (5 items), Emotional abuse (5 items), Sexual abuse (4 items), Physical neglect (5 items), and Emotional neglect (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2165] "The KIDSCREEN--Eastern African Translation offers a 52-item version, a 27-item version, and a 10-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2166] "Testing with adults in China and Hong Kong resulted in a 589-item scale, and statistical verification resulted in a 524-item standardization version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2167] "This 8-item measure consists of two 4-item subscales: Knowledge Collecting and Knowledge Donating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2168] "The Masculine Gender Role Stress Scale contains 40 items with five factors: Physical Inadequacy (9 items), Emotional Inexpressiveness (7 items), Subordination to Women (9 items), Intellectual Inferiority (7 items), and Performance Failure (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2169] "The Child-Friendliness Index contains 33 indicators: Protection Dimension (16 items) and Provision Dimension (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2170] "This measure consists of 4 scales assessing willingness of employees to contribute to shared electronic databases (WEC; 2 items, alpha = .88), perceived benefits of such contribution (PB, 3 items, alpha = .75), organizational identification (OI; 6 items, alpha = .86), and valence of collaborative experience (CE, 8 items, alpha = .66)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2171] "The test consists of a 20-item and 17-item measure. Items were split between positive and negative face indexes in both measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2172] "The Individual-and Group-Based Deprivation Measures--Adapted consists of 4 items: Individual deprivation (2 items) and group-based deprivation (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2173] "The measure consists of 28 items and 5 subscales: generalized anxiety (5 items), social phobia (6 items), separation anxiety (5 items), fears of physical injury (7 items), and obsessive compulsive disorder (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2174] "The Adolescent Self-Harm Interview Schedule consists of two parts: Life Story Interview (4 items) and Reflective Interview (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2175] "The Ethiopia Millennium Rural Initiative--Qualitative Assessment consists of a total of 41 items for various staff at PHCUs: HC coordinator, HC clinical mentor, and HC Director (8 items); Health Extension Worker supervisor (9 items), Health Extension Workers (9 items); Voluntary Community Health Workers (9 items); and Woreda official (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2176] "The English version consists of 21 items, while the Amharic version is comprised of 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2177] "The Shaken Baby Syndrome Awareness Assessment—Short Version is a 37-item survey comprised of 3 scales: (1) Soothing Techniques (12 items), (2) Discipline Techniques (12 items), and (3) Potential for Injury (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2178] "This measure consists of the 11-item Distributive Justice scale and the 13-item Procedural Justice scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2179] "This is a 33-item measure. These items were divided into three subscales assessing expressions of hostility (15 items), obstructionism (10 items), and overt aggression (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2180] "The Intervention Process Measure contains 24 items with five subscales: Line manager attitudes and actions (7 items), Exposure to intended intervention (7 items), Employee involvement (4 items), Employee readiness for change (4 items), and Intervention history (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2181] "Two versions of this test exist: a 33 item version and a 40 item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2182] "The questionnaire consisted of 7 items: Perceived ease of use (4 items) and Perceived usefulness (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2183] "This 12-item measure is comprised consists of 4 items assessing perceptions regarding verbal coercion and 8 items assessing perceptions regarding rape."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2184] "The Hopkins Competency Assessment Test contains 10 items: Four of the 6 questions (2, 3, 4 and 6) consist of a single item, and the remaining two questions (1 and 5) contain 4 and 2 items respectively, making 10 items in all."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2185] "The supervision variable consists of 2 questions, while the punishment variable consists of 5 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2186] "The FAB contains 17 items/trials, in 6 subtests: Conceptualization (3 items), Mental Flexibility (1 item), Motor Programming (6 trials), Sensitivity to Interference (3 trials), Inhibitory Control (3 trials), and Environmental Autonomy (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2187] "The Self- and Other-Interest Inventory contains 18 items in two subscales: Self-Interest (9 items) and Other-Interest (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2188] "Instructed to consider friends and dating partners, participants respond to 11 items about aggression perpetration, and the same 11 items for aggression victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2189] "The Patient Reported Outcomes Measurement Information System Pediatric Peer Relationships Scale contains 15 items. A short form contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2190] "The PRIME Fissure Sealant Questionnaire--US Version contains a total of 31 items: Section 1: Placing Fissure Sealants (29 items) and Section 2: Caries (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2191] "Factor Analysis: Revealed four-factors: Basic Needs (7 items), Money (5 items), Time for Self (6 items), and Time for Family (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2192] "This is a 20-item measure reflecting 4 need-supportive teaching dimensions of autonomy support (3 items; alpha = .30); structure before the activity (5 items; alpha = .52); structure during the activity (7 items; alpha = .78); relatedness support (5 items; alpha = .85)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2193] "The Providers’ Knowledge, Skills, and Beliefs Associated with Eating Disorders Survey consists of 23 items in three scales: Eating disorder knowledge (9 items), skill level (7 items), and beliefs (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2194] "The Need-Thwarting Teaching Behavior Measure consists of 16 items in three dimensions: Controlling teaching behavior (7 items), Cold teaching behavior (5 items), and Chaotic teaching behavior (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2195] "This measure consists of 27 items (behaviors). The behaviors are classified as violent (7 items) or nonviolent (20 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2196] "The 110-item CMQ has three component questionnaires: the Psychological Maltreatment Questionnaire (PMQ - 72 items), the Physical Abuse Questionnaire (PAQ - 16 items), and the Sexual Abuse Questionnaire (SAQ - 22 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2197] "This 22-item measure consists of the 7-item Message Effectiveness Scale and the 15-item Climate Change Engagement scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2198] "The RCS consists of 20 items distributed across 4 risk domain scales: Resource Engagement (4 items), Social Network Presence (4 items), Integration of Care (5 items), and Social Stability (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2199] "The measure consists of 6 items, with 4 items comprising the merit subscale and 2 items comprising the luck subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2200] "There is an 8-item version and 9-item version of the Reactions to Research Participation Questionnaire--Modified."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2201] "The Situational Judgment Test of the Full Range of Leadership Model consists of 64 items, 8 item stems and 8 item responses each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2202] "The Data Driven Decision-Making Efficacy and Anxiety Inventory consists of 20 items in five scales: Efficacy for Data Identification and Access (Identification) Scale (3 items), Efficacy for Data Technology Use (Technology) Scale (3 items), Efficacy for Data Analysis and Interpretation (Interpretation) Scale (3 items), Efficacy for Application of Data to Instruction (Application) Scale (6 items), and DDDM Anxiety (Anxiety) (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2203] "This measure was developed as a 74-item adult version and a 54-item child version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2204] "This 59-item measure is divided into 5 sections. Section (a) includes demographic questions and questions regarding means of contracting Hepatitis C virus (HCV) and treatment success. Section (b) contains a list of commonly reported side effects. In Sections (c) and (d) patients rate their perception of the support received from the nurse specialist. Section (e) elicits patients' satisfaction with support received.Two subscales were identified: Patients Perceptions of Informational Support Received (11 items) and Patients Perceptions of Psychological Support Received (11 items)."                                                                                                                                                                                                                                                               
## [2205] "The Patient-Centered COPD Questionnaire consists of 18 items in three subscales: Shortness of breath (6 items), acceptance of COPD (7 items), and confidence in care (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2206] "There is a 10-item and a 6-item version of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2207] "The Safety Climate Scale consists of 29 items in the organization-level safety climate scale and 19 items in the group-level safety climate scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2208] "This 11-item measure is divided into three dimensions: motor functioning (4 items), psychology (4 items) and socializing (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2209] "The 10-Item Risk Assessment Inventory contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2210] "The measure consists of the Willingness to Tolerate Adverse Outcomes Scale (6 items), the Trust in Healthcare Providers Scale (3 items), and the Autonomy Preference Index (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2211] "The 16-item instrument assesses driving competence according to the 4 Cs: Crash History (4 items), Family Concerns (4 items), Clinical Condition (4 items), and Cognitive Function (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2212] "This measure consists of 15 items comprising two sections of 8 and 7 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2213] "The Safety Climate Scale for the Trucking Industry consists of 40 items: 20 items for organization-level safety climate scale and 20 items for the group-level safety climate scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2214] "The Interpersonal Shame Inventory contains 10 items in two subscales: External Shame (5 items) and Family Shame (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2215] "The Identity Salience Scale consists of 10 items in two subscales: Identity commitment (6 items) and Identity militancy (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2216] "The 48-item scale consists of three subscales with 16 items in each subscale: Cognitive, Affective, and Activity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2217] "The CCCE consists of 18 items (6 items each for subscales representing three parties, i.e. parent, school, and peers)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2218] "The Chinese Attitude Toward Suicide Questionnaire--Hong Kong consists of 98 items in three parts: Part A (73 items), Part B (12 items), and Part C (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2219] "The Family Involvement and Importance Scales consists of 20 items that measure family perceived involvement and 18 items that assess family assessment of importance of their involvement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2220] "The function subscale has 15 questions, while the disability subscales (frequency and limitation) each contain eight questions, for a total of 31 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2221] "There is an 18-item (PSI-18) and a 9-item (PSI-9) version of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2222] "The Westmead Post-Traumatic Amnesia Scale contains 12 items covering the domains of orientation and memory: Seven orientation items assess orientation to person (2 items), time (4 items) and place (1 item). Five items assess memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2223] "The 35-item CAPE consists of 2 scales: (i) the Cognitive Assessment Scale (CAS) and (ii) the Behaviour Rating Scale (BRS), which can be used separately or in combination. The CAS comprises 3 subtests: the Information/Orientation Test (12 items), the Mental Abilities Test (4 items), and the Psychomotor Test (1 item). The BRS samples a range of behaviours in 4 domains: Physical Disability (6 items), Apathy (5 items), Communication Difficulties (2 items), and Social Disturbance (5 items)."                                                                                                                                                                                                                                                                                                                                                              
## [2224] "The Environmental Profile of Community Health Instrument consists of two sections EPOCH 1 (40 items) and EPOCH 2 (35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2225] "This is a 46-item test. The MAST comprises nine subtests in two broad domains. The five Expressive subtests are Naming (5 items), Automatic speech (5 items), Repetition (5 items), Verbal fluency (1 item), and Writing/Spelling to dictation (5 items). Four Receptive subtests are Yes/No accuracy (10 items), Object recognition (5 items), Following verbal instructions (5 items), and Following reading instructions (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2226] "The Children's Memory Questionnaire consists of 3 versions: School questionnaire (34 items), Clinic questionnaire (30 items) and a Modified questionnaire (29 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2227] "The Attachment Style Questionnaire--Italian Version contains 40 items with five dimensions: Confidence (8 items), Discomfort with Closeness (10 items), Need for Approval (7 items), Preoccupation with Relationships (8 items), and Relationships as Secondary (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2228] "This measure gathers feedback in three main areas: 1. Overall impressions--4 items assessing professionals' overall impression of PI; 2. Specific therapeutic issues--10 items asking professionals to consider PI's impact on specific therapeutic issues (an ice breaker, the therapeutic relationship, structure, a distraction, engagement, and ownership); 3. Design features, positive and negative factors--6 items assessing the helpfulness of features of the design of PI."                                                                                                                                                                                                                                                                                                                                                                                   
## [2229] "The RAD-Q contains 44 items. Clinicians complete either a discontinuation section (25 items) or a continuation section (17 items). Three factors were identified: Treatment Benefits, Adverse Events, and Distal Reasons."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2230] "This 40-item measure is a multidimensional fatigue scale examining the impact of fatigue in cognitive (10 items), physical (10 items) and psychosocial (20 items) domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2231] "This is a 43-item measure. In the Short O-LIFE, the Unusual Experiences subscale contains 12 items, the Cognitive Disorganization subscale contains 11 items, the Introvertive Anhedonia subscale contains 10 items, and the Impulsive Nonconformative subscale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2232] "The Impression Management Scale contains 15 items: 11 items for impression management and 4 for self-deceptive enhancement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2233] "The Cardiac Rehabilitation Staff Questionnaire consists of 37 items: 20 items covering training and background of cardiac rehabilitation staff member and 17 potential barriers to discussing sexual problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2234] "This 21-item measure is comprised of 4 subscales. Generalized victimization consists of 8 items, Sexual victimization consists of 6 items, Individual online racial discrimination consists of 4 items, and Vicarious online racial discrimination consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2235] "The Italian CDMP contains 33 items plus three additional items (i.e., warm-up and two validity items) for a total of 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2236] "This is a 23-item measure. Eight items correspond to the BIS Scale (sensitivity to punishment) and 15 items comprise to the BAS Scale (sensitivity to reward)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2237] "The Quality of Life at the End of Life Measure contains 24 items with five factors: Sense of life completion (6 items), relationships with the health care system (7 items), preparation or anticipatory concerns (5 items), symptom impact (4 items), and connectedness and affective social support (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2238] "The Quality of Dying in Long-Term Care has two versions: an 11- (three factors: Personhood (5 items), Closure (3 items), and preparatory tasks (3 items) and 23-item version (with five factors: Sense of Purpose (6 items), Closure (5 items), Control (4 items), social connection (5 items), and preparatory tasks (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2239] "This 23-item measure is divided into 2 sections. The items in the Basic Care Needs section are organized into 5 domains: Mobility and Transfers (2 items); Continence and Toileting (4 items); Washing, Bathing, and Dressing (3 items); Feeding (3 items); Safety, Communication and Behavior (4 items). There are 7 items in the Special Nursing Needs section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2240] "One version of the measure consists of 8 items while a separate version comprises 10 items with a different response format."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2241] "This measure consists of five sections: I. General Information (6 items); II. Child and Adolescent Scale of Participation (CASP, 23 items); III. Child and Adolescent Factors Inventory (CAFI, 16 items) and Child and Adolescent Scale of Environment (CASE, 18 items); IV. Child and Family Services (6 items); V. Suggestions and Additional Information (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2242] "The Threat and Physical Violence Scales contain a total of 18 items: Physical violence (11 items) and threatening behaviors (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2243] "This 12-item measure consists of four 3-item scales: Learning through Reflection, Learning through Experimentation, Learning from the Colleagues, and Learning from the Supervisor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2244] "The Impact on Participation and Autonomy Questionnaire contains a total of 23 items in four subscales: Social relationships (7 items), Autonomy in self-care (5 items), Family role (6 items), and Mobility and leisure (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2245] "The POPS comprises 26 items (described as \"activities\"), which are organized into 5 subscales: Domestic Life (8 items), Interpersonal Interactions and Relationships (8 items), Major Life Areas (3 items), Transportation (2 items), and Community, Recreational and Civic Life (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2246] "The measure comprises 130 activities nested within a 25-item checklist, which in turn can be classified into 3 domains: Special Needs (10 items), Activities of Daily Living (4 items), and Instrumental Activities of Daily Living and Psychosocial (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2247] "This is a 7-item measure consisting of 5-item (self-conflict) and 2-item (self-evaluation) scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2248] "This measure consists of 12 items measuring current feelings of anger (3 items), sadness, (3 items), fear (3 items), and guilt (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2249] "The WBPQ-B has 17 items to assess the pain history, localization, and relationship to the underlying disease, including 2 scales to assess Pain Intensity (3 items) and Pain Interference with Function (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2250] "The Desire to Reside in the Host Culture Scale (5 items) was designed to investigate Russians’ subjective perceptions of adjustment in Israel. Depression symptoms were measured with a 4-item subscale. Self-confidence (8 items) measured perceptions of sureness about one’s school abilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2251] "The Self-Awareness Scale--Short Form contains 54 items with five factors: Self-Critical (14 items), Insight (11 items), Reflection (11 items), Feedback (8 items), and Performance Indifference (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2252] "The 42-item scale consists of 4 domains covering 10 dimensions. The Physical Domain covers Health Awareness (4 items) and Body Changes (5 items); the Psychological Domain concerns Positive Self-evaluation (8 items), Negative Self-evaluation (4 items) and Health Worries (3 items); the Social Domain consists of Life Interference (3 items), Value of Relationships (2 items), and Spiritual/Existential domain covers Positive Outlook (3 items), Negative Outlook (4 items) and Meaning of Cancer (6 items)."                                                                                                                                                                                                                                                                                                                                                   
## [2253] "The BBC Well-Being Scale contains 24 items with three subscales: Psychological well-being (16 items), physical health and well-being (12 items) and relationships (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2254] "The DSM-5 Posttraumatic Stress Disorder Scales contains 10 items: a 3-item Negative Expectations scale, a 3-item Anger scale, and a 4-item Aggressive Behavior scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2255] "Three scores are obtained from this measure, two based on simple occurrence-nonoccurrence of the experiences and one on the reported intensity of the experiences. The first of the two simple-occurrence measures is based on the 15 items. The second measure of occurrence contains the 23 items. The third (28-item) score is based on subjects' ratings of the intensity or vividness of experience."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2256] "The CHRT consists of 12 items, while the CHRT-SR and CHRT-C each contain 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2257] "The Scale consists of 6 items (the combination of the 3 2-item Client-Initiated Discussion, Therapist-Initiated Discussion, and Therapist Importance scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2258] "The Cognitive Assessment Instrument of Obsessions and Compulsions—13-Item Version contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2259] "This measure consists of 25 items. The Employment Relation bundle consists of 14 items covering job design, team work, and work-life balance. The People Flow bundle consists of 5 items capturing perceptions of training and development options in the organization. The Appraisal and Reward bundle consists of 6 items assessing perceived responses to work efforts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2260] "The measure consists of the 5-item evaluations of intergroup social exclusion scenarios section, six items from the Intergroup Contact Scale, and finally 15 items from the Cultural Identity Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2261] "The Mood Measure contains 8 items across two subscales: Positive Mood (4 items) and Negative Mood (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2262] "This is a 12-item measure. Aggression is perceived in factor 1 (6 items) as a dysfunctional/undesirable phenomena and in factor 2 (6 items) as a functional/comprehensible phenomena."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2263] "This 16-item measure consists of two subscales: \"Daughter Costs\" and \"Daughter Motives\" (8 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2264] "This measure consists of 27 items. Satisfaction is measured with 3 items, Word-of-mouth is measured with 3 items, Relaxation is measured with 2 items, Pleasure is measured with 2 items, Self-expression is measured with 5 items, Centrality to Lifestyle is measured with 4 items, and Atmospheric Cues are measured with 8 items. The questionnaire also gathers socio-demographic data, such as gender, age and academic qualification."                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2265] "This measure consists of 38 items comprising the following subscales: Medical Communication (9 items), Psychological/Emotional (10 items), Daily Living (3 items), Financial (2 items), Symptom (9 items), Spiritual/Existential (2 items), and Social (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2266] "The Working After Cancer Treatment Interview consists of 18 items in two separate schedules: Baseline (9 items) and Follow-up (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2267] "The Short-Form Supportive Care Needs Survey--Chinese Version 33 items with four factors: Health system, information, and patient support (15 items), Psychological need (10 items), Physical and daily living (5 items), and Sexuality (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2268] "Consists of 65 items and four scales: SNAP Neuroticism (14 items), SNAP Conscientiousness (20 items), SNAP Introversion (14 items), and SNAP Antagonism (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2269] "The Modified 13-Item Attentional Function Index contains 13 items with three subscales: Effective action (7 items), attentional lapses (3 items), and interpersonal effectiveness (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2270] "There are 13 total items in this scale (9 items in the Suicide Knowledge subscale, and 4 items in the Suicide Skills subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2271] "The Social Activity Measure contains five subscales: Membership in Associations (17 items); Protest activity (7 items); Mobilization on behalf of own neighborhood (8 items); Communal Engagement (15 items); and Voting Activity (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2272] "PSY-5 scales are Aggressiveness, 18 items; Psychoticism, 25 items; Constraint, 29 items; Negative Emotionality/ Neuroticism, 33 items; and Positive Emotionality/Extraversion, 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2273] "The Ego Ideal Scale contains 17 items and the School-Dream Scale contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2274] "This measure consists of 26 items with 8 items in the Risk Perception subscale, 9 items in the Outcome Expectancies subscale, and 9 items in the Treatment Self-Efficacy subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2275] "Items were developed initially from interview responses, and a pool of 18 items was used to create 3 independent scales assessing preferences for Literal (6 items), Rejecting (6 items), and Symbolic (6 items) interpretation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2276] "The 16-item RCS includes the physical subscale (3 items), the cognitive subscale (7 items), and the affective subscale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2277] "The Classroom Assessment Practices Questionnaire contains 56 items with five factors: Assessment planning (14 items), Assessment item preparation (20 items), Assessment administration and scoring (12 items), Reporting of scores and grading (5 items), and Reporting of scores and grading (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2278] "This measure consists of 26 items comprising the following subscales: Intention to become an entrepreneur (6 items), Subjective norm (6 items), Attitude toward the behavior (5 items), Perceived behavioral control (4 items), and Perceived entrepreneurial motivation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2279] "Most versions of the Sociocultural Adaptation Scale range between 20-23 items. The most recent contains 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2280] "The Redemptive Violence and Belief in Evil Measure contains 14 items with two factors: Endorsement of redemptive violence (8 items) and belief in evil (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2281] "This 27-item measure assesses driving lapses (8 items), errors (8 items), aggressive driving (3 items) and \"ordinary\" violations (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2282] "Checklists were provided for physiological sensations (13 items), which included items indicative of sympathetic nervous system activation (5 items), parasympathetic nervous system activation (3 items), and energy and temperature changes (5 items), as well as for expressive behaviors and appraisals of the emotional state (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2283] "This measure consists of 19 items. The 19 items are divided among 6 subscales: Attitudes: research benefits; Subjective norms: personal influences; Subjective norms: agency influences; Behavioral control: barriers; Behavioral control: research self-efficacy; and Intent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2284] "The Coping Actions Scale contains a total of 20 items in two dimensions: Positive coping (12 items) and Negative coping (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2285] "The School Climate Scale--Adolescent Version contains 20 items in three subscales: Supportive Teacher Relationships (9 items), Sense of School Belonging (6 items), and Participation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2286] "College students completed the PBS, with items drawn from pre-existing scales and newly developed scales: the 11-item Belief in Altruism Subscale (BIA); 6-item Beliefs about Morality Subscale (BAM1); 8-item Beliefs about Morality Subscale (BAM2); 5-item Biological Reductionism Subscale (BR); 6-item Belief in Free Will Subscale (BFW); 5-item Meaning in Life Subscale (MIL); 5-item (SWLS; Diener et al., 1985); 9-item Social Isolation Subscale of Dean Alienation Scale (DAS; Dean, 1961); 8-item Cynical Distrust Scale (CDS: Greenglass & Julkunen, 1989); and 10-item Meaning in Life Questionnaire (MLQ; Steger, Frazier, Oishi, & Kaler, 2006)."                                                                                                                                                                                                       
## [2287] "The 46-item instrument measures the following constructs: Perceived quality (27 items), Image (3 items), Satisfaction (5 items), Value (5 items), and Loyalty (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2288] "The Teaching Economic Literacy: Confidence and Anxiety Instrument contains 30 items in two scales: teacher confidence (18 items) and teacher anxiety (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2289] "The Basic Psychological Needs Questionnaire–Religiosity/Spirituality contains 14 items with two factors: R/S Relatedness (8 items) and R/S Self-Mastery (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2290] "The Effortful Behavior Scales consists of two versions: Social framing (17 items) and Personal framing (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2291] "The CODEM Instrument contains 15 items for two factors: Verbal/contact aspects (8 items) and Nonverbal/relationship aspects (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2292] "The Project WebHealth Follow-Up Evaluation has two separate versions. One version of the survey contains 12 items and another version of the survey contains 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2293] "The measure consists of 15 items divided as follows: attitude (6 items), subjective norm (3 items), perceived behavioral control (4 items), and behavioral intention (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2294] "The Parenting-Style Questionnaire contains 20 items with three subscales: Affection (10 items), Behavioral Control (6 items), and Psychological Control (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2295] "This measure consists of 39 items. The original scale has 33 items and four dimensions: financial and employment difficulties (14 items), cultural differences (7 items), lack of social life (7 items), and interpersonal tensions and conflicts (5 items). For the revised version, 6 items were added to the scale to provide an additional measure of gender-specific stresses experienced by female migrant workers."                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2296] "The Human Qualities Rating Scale contains 19 items in three indices: Attractiveness (5 items), eeriness (8 items), and humanness (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2297] "The Ideological Attitudes Measure contains 9 items in two scales: Right-wing authoritarianism (3 items) and social dominance orientation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2298] "The Generalized Prejudice toward Americans Measure contains a total of 6 items with three dimensions: Negative effect toward Americans (2 items), Negative stereotypes of Americans (2 items), and Support for violence toward Americans (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2299] "This measure consists of 8 items and 6 items, respectively, in the full and short versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2300] "The 10-Item Questionnaire has 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2301] "The measure consists of 13 items. The first 5 items assess adherence and competence to essential and unique elements specific to that particular session. The next 4 items assess essential but nonunique elements that reflect common therapeutic elements. The last 3 items reflect considerations such as whether any significant departures from the manual occurred during the session."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2302] "The Responses to Stress Questionnaire--Young Child Version contains 38 items in four subscales: Effortful engagement (14 items), effortful disengagement (6 items), involuntary engagement (10 items), and involuntary disengagement (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2303] "The Child Social Achievement Goals Measure contains 21 items in three subscales: Development (8 items), demonstration-approach (6 items), and demonstration- avoidance (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2304] "There are 34 items in this measure, with Parts 1 and 2 being comprised of 17 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2305] "The Suicide Youth Help-Seeking Attitudes, School Engagement, and Reject Codes of Silence Questionnaire consists of a total of 36 items over the following subscales: Help for Suicidal Peers, 4 items; Reject Codes of Silence, 6 items; Maladaptive Coping, 4 items; Help Seeking From Adults at School, 4 items; Sources of Strength Coping, 9 items; School Engagement, 4 items; Trusted Adults, 2 items; Referred Distressed Peers to Adults, 2 items); and Support to Peers, 2 items."                                                                                                                                                                                                                                                                                                                                                                              
## [2306] "Three of the 4 subscales from the CPCRS were included in the 15-item CPCRS--Spanish: Affection (5 items), Punitiveness (5 items), and Control (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2307] "This measure consists of 20 items. The scale comprises four 5-item subscales that are largely uncorrelated and that reliably assess parental affection, punitiveness, control, and lax discipline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2308] "The Modified Adolescent Cognitive Styles Questionnaire contains 16 items with three domains: academic/scholar achievements (6 items), interpersonal relations (6 items), and physical appearance (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2309] "This 19-item measure consists of two subscales: the 13-item Victim Subscale and the 6-item Perpetrator Subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2310] "The SHY-SR consists of 162 items. The SHY was specifically designed to measure two distinct kinds of phenomena: general features associated with social anxiety (SHY-G; represented by the first 64 items) and particular anxiety responses associated with 14 specific social situations (SHY-S; represented by the remaining 98 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2311] "The Exposure to Violence in Former Ugandan Child Soldiers Checklist contains 19 items in two dimensions: Violence experienced at home (13 items) and violence experienced in the community including school (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2312] "This measure consists of 42 items comprising four scales. These scales assess (a) negative emotions (21 items), (b) perceived benefits (10 items), (c) positive emotions (6 items), and (d) mental costs (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2313] "In this 10-item measure, 5 items each are used in reference to mothers and fathers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2314] "The Semi-Structured Personnel Interview consists of 15 questions in three parts: Perceived quality of work (7 items), stress management and resources (2 items), and importance and mode of supervision (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2315] "Negative adolescent behavior is measured with 11 items, while positive adolescent behavior is measured with 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2316] "This 8-item measure consists of 2 questions with 4 subcategories each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2317] "This 20-item measure consists of two 10-item subscales assessing intrusive and deliberate rumination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2318] "In the Civic Action and Engagement Scale developed for 19-20 year,olds, participants responded to 15 items, while in the Civic Action and Engagement Scale developed for 23-24 year-olds, participants responded to 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2319] "The same 3 items are used for each of 4 different ethnicities, for a total of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2320] "The Relational Opportunities Index contains a total of 47 items in nine factors: Youth as resources (3 items), Community values youth (4 items), Weekly time in afterschool programs (1 item), Participation in high-quality after-school programs (7 items), Availability of neighborhood resources (9 items), Use of neighborhood resources (9 items), Supportive adults (3 items), Connection of interests to life (4 items), and Personal actions to develop talents (7 items)."                                                                                                                                                                                                                                                                                                                                                                                     
## [2321] "The Negative Affective Use scale is comprised of 10 items, the Social Use scale consists of six items, and the Positive Affective Use scale is comprised of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2322] "The measure consists of 16 items, of which two forms were administered (i.e., 32 items total with 16 regarding perceptions of mother and 16 analogous items regarding perceptions of father)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2323] "The domains cultural efforts (7 items), structural efforts (8 items), and openness to diversity (6 items) formed the final 21-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2324] "Waiver Comprehension Assessment 1 consists of 5 items, Waiver Comprehension Assessment 2 contains 5 items, and Waiver Comprehension Assessment 3 contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2325] "This 20-item measure consists of four 5-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2326] "The measure was reduced to a final item count of 26: Part A (12 items), Part B (5 Items), and Part C (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2327] "The Optimism Bias Assessment contains 22 items in two subscales: Negative items (19 items) and positive risk items (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2328] "The Voice Handicap Index contains 30 items in three subscales: Functional Subscale (10 items), Emotional Subscale (10 items), Physical Subscale (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2329] "The Body-Related Self-Care Scale contains a total of 20 items in two subscales: Self-care—physical (11 items) and self-care—attitude (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2330] "There are 22-item and 30-item versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2331] "The Relationship Deciding Scale consists of 12 items in three subscales: Relationship Confidence (4 items), Warning Signs (3 items), and Deciding (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2332] "The measure consists of 9 items that address 3 different aspects of the chronic prostatitis experience. The primary component is pain, captured in 4 items focused on location, severity and frequency. Urinary function is captured in 2 items (1 irritative and 1 obstructive). Quality of life impact is captured with 3 items about the effect of symptoms on daily activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2333] "The KEY to School Health Assessment consists of 51 items in four modules: General school health practices (8 items), Physical activity (14 items), Mental health (13 items), and Nutrition (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2334] "The Passive Risk Taking Scale contains 25 items with three factors: Risk involving resources (12 items), Medical risks (7 items), and Ethical risks (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2335] "The Adult Decision-Making Competence--Slovak Version contains 99 items in six subscales: Consistency in Risk Perception (20 items), Recognizing social norms (16 items), Resistance to Framing (14 items presented twice), Resistance to Sunk Costs (10 items), Applying Decision Rules (5 items), and Over/underconfidence (34 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2336] "The full measure consists of 92 items. The reduced measure consists of 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2337] "Item count was reduced to a questionnaire assessing 3 themes: administering multiple vaccines to children at one clinic visit (14 questions); using every encounter to offer needed vaccination (14 questions); and immunization provider receipt of influenza vaccine (17 questions). There were also 17 demographic and occupational questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2338] "The Childhood Vaccines Survey contains 24 items in three subscales: Parental concerns/beliefs (10 items), communication (8 items), and physician attitudes toward communicating with parents about the risks and benefits of vaccination (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2339] "The teacher rating scale consisted of 5 reliable scales: cognitive ability (6 items); creativity ideas, (3 items), motivation (3 items), social behavior (2 items), and work attitude (2 items). Furthermore, the probability (0–100%) with which the teacher would recommend the child for a gifted and talented program was assessed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2340] "The Army Locus of Control Scale contains 89 items in two subscales: Internality Scale (38 items) and Externality Scale (48 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2341] "Two lengths of the International Physical Activity Questionnaire (IPAQ) were developed: the long version with 27 questions and the short version with 7 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2342] "This 33-item measure consists of five subscales: 1. Abuse (18 items), 2. Theft (5 items), 3. Withdrawal (4 items), 4. Production Deviance (3 items), 5. Sabotage (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2343] "The AIDS Clinical Trial Group-Revised, 9-Item Version has 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2344] "The Pediatric Cancer Coping Scale contains 33 items with three factors: Cognitive coping (14 items), Problem-oriented coping (9 items), and Defensive coping (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2345] "The Student, Parent, Teacher, and Principal Interview Guides contains 31 items: Student Interview Guide (15 items), Parent Interview Guide (8 items), and Teacher and Principal Interview Guide (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2346] "Each of the 6 subscales of the modified measure consists of 3 items. An additional global measure of empowerment consists of 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2347] "The Primary Care Mental Health Screener has 69 items for the long form and 32 items for the short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2348] "The Mathematics Self-Concept, Self-Efficacy and Anxiety Scale consists of 16 items across three constructs: Mathematics self-concept (5 items), mathematics self-efficacy (6 items), and mathematics anxiety (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2349] "The Perceived Meeting Effectiveness Questionnaire consists of a total of 12 items: Satisfaction with the meeting process (4 items) and satisfaction with the meeting outcome (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2350] "The measure consists of 30 items. It has 10 subsections with 3 items in each: Coverage of Session Plan, Feedback, Understanding, Interpersonal Effectiveness, Engaging Participants, Accessibility of Presentation, Focus on Key Cognitions, Focus on Key Emotions, Group Processes, and Homework."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2351] "The Indignation and Forgiveness Scale contains 12 items in four subscales: Essentiality (3 items), Expression (4 items), Helpfulness (3 items), and Healing (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2352] "Two scales were created: (a) a 9-item feminine-typed activity scale and (b) an 11-item masculine-typed activity scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2353] "The Inhibitors and Facilitators of Willingness to Participate Scale contains 35 items with five factors: Personal costs (9 items), Safety and convenience (8 items), Stigmatisation (7 items), Personal gains (5 items), and Social approval and trust (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2354] "This measure contains 75 items, divided into 14 subscales: Teacher's communicativeness (9 items), Extrinsic motivation (external regulation; 3 items), Extrinsic motivation (introjected regulation; 3 items), Extrinsic motivation (identified regulation; 3 items), Intrinsic motivation (knowledge; 3 items), Intrinsic motivation (accomplishment; 3 items), Intrinsic motivation (stimulation; 3 items), Motivational intensity (6 items), Desire to learn English (8 items), Attitudes toward learning English (9 items), Perceived self-confidence (4 items, English class anxiety (9 items), English use anxiety (10 items), and Intention to continue L2 study (2 items)."                                                                                                                                                                                      
## [2355] "The Epistemic Beliefs Inventory--12 Item Version has 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2356] "This is a 9-item measure. The measure consists of the external attributions scale (6 items) and the internal attributions scale (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2357] "This is a 6-item measure. The safe behaviours scale includes 4 items. Unsafe behaviour was measured with 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2358] "The final questionnaire contains 29 items arranged in five dimensions: Tangibility (9 items), Reliability (6 items), Responsiveness (3 items), Assurance (7 items), and Empathy (4 items). The final questionnaire is divided into three parts: Demographics, Importance survey, and Satisfaction scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2359] "The final scale consists of 18 total items and two subscales: Social Self-Efficacy Expectations (12 items) and Social Outcome Expectations (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2360] "The Men's Domestic Violence Perpetration Questionnaire contains 18 items in three domains: Psychological violence (13 items), Physical violence (2 items), and Sexual violence (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2361] "The Definitional Orientation Scale consists of 16 items, while its gender-based perpetration Definitional Orientation subscales each consist of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2362] "This measure consists of a total of 21 items separated into four scales: 1. Family (6 items), 2. Adoption (8 items), 3. Birth Culture Identity (5 items), and 4. Discrimination (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2363] "The measure consists of 10 items. From the two factors, two composite scales were created representing individual “beliefs about cats” (6 questions) and the effect of cats on wildlife “effect on wildlife” (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2364] "The Nurturance scale contains 7 items. The Parental authoritarian/firm style scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2365] "The two simplified versions of the Simplified Chinese Version of the Voice Handicap Index (VHI-10 and VHI-13) consist of 10 items and 13 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2366] "The final 22-item measure consists of 5 subscales: Customers (5 items), Shareholders (3 items), Employees (5 items), Society (6 items), and General (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2367] "This measure consists of a total of 18 items (7 items completed by the students and 11 completed by the preceptor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2368] "This is a 23-item measure. The following scales are included: Perceived usefulness (3 items), Perceived ease of use (3 items), Perceived enjoyment (3 items), Perceived economic value (3 items), Perceived critical mass (3 items), Attitude toward playing online games (4 items), and Intention to play online games (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2369] "The 20-item questionnaire was constructed using items related to general and health events (6 items) from previous studies. New items relevant to occupational health and safety hazards (9 items) and stress/workplace bullying (5 items) were also developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2370] "This 18-item scale is composed of three subscales: extrinsic (6 items); intrinsic (7 items); and social satisfaction (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2371] "The Food Frequency Questionnaire (FFQ)-month consists of 73 items. The FFQ-pregnancy consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2372] "The Female Sexual Function Index—6-Item Version contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2373] "The Adolescent Consumer Socialization Scales consists of 93 items over 13 scales: Consumer Affairs Knowledge (11 items); Consumer Activism (7 items); Consumer Finance Management (6 items); Attitudes toward Prices (4 items); Materialism (6 items); Economic Motivation (5 items); and Social Motivations (4 items). Communication about Consumption (12 items); Television Viewing (7 items); Social Utility Reasons for Watching TV Shows (10 items); Social Utility Reasons for Watching TV Ads (10 items); Newspaper Readership (5 items); and Peer Communication about Consumption (6 items)."                                                                                                                                                                                                                                                                   
## [2374] "The final questionnaire has a total of 43 items covering growth and learning (13 items), turnover and productivity (20 items), timing and switching (7 items) and human resource options to vary employment costs (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2375] "This 18-item measure consists of the 7-item centrality, the 6-item success, and the 5-item happiness subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2376] "The measure consists of 12 items. Participants are asked to indicate their self-evaluation when experiencing each emotion (2 items), their personal expectancies regarding each emotion (5 items), and perceived social expectancies regarding each emotion (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2377] "The Managers’ Tradeoffs between Equality and Efficiency Questionnaire consists of two parts. In part A, participants respond to 26 items/emotions regarding 4 scenarios. Part B consists of 6 choice sets. In addition, participants also responded to 8 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2378] "The Knowledge Attribution Measure consists of 8 items. In another experiment within the same study, 4 neutral items were added, resulting in a 12-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2379] "This measure contains 40 items, divided into the following subscales: Support of older workers’ commitment (4 items), Support of career development (4 items), to coach older workers (6 items), Willingness to coach older workers (6 items), Stereotypical attitudes about older workers’ presumed lack of performance (5 items), Stereotypical attitudes about older workers’ presumed lack of flexibility (7 items), Discretionary room (6 items), Support for line manager from HR specialists and other managers (2 items)."                                                                                                                                                                                                                                                                                                                                       
## [2380] "The scale that was finally developed had 13 items distributed in four subscales: uncertainties of return (growth and learning) [4 items], uncertainties of return (turnover and productivity) [3 items], uncertainties of volume and combination [4 items] and uncertainties of employment costs [2 items]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2381] "This measure consists of 40 items. The first section consists of 14 items assessing demographics. The obstetrics history section consists of 4 items. Prevalence of violence during pregnancy is assessed with Yes/No responses to 5 direct questions. The last 17-item section consists of a subscale to assess the wife's perception of her husband's violent attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2382] "The Locus of Control Scale is comprised of seven items, while the Risk Propensity Scale is measured by five items. The Risk-Taking Self-Efficacies Scale consisted of 3 items, while the last 3-item measure assessed outcome expectancies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2383] "The measure consists of 8 items, with childhood and adulthood abuse both being measured by 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2384] "The Preschool Literacy Survey consists of 73 items and 10 scales: 1. Role of Preschool Teacher (14 items), 2. Role of Preschool (10 items), 3. Consistent with Current Research (7 items), 4. Quality of Shared Book Reading (15 items), 5. Concepts of Books and Print (4 items), 6. Literacy in Play (2 items), 7. Phonological Awareness (7 items), 8. Letter Knowledge (5 items), 9. Emerging Reading and Writing (5 items), and 10. Quantity of Time Spent on Literacy-related Activities (9 items). Scale"                                                                                                                                                                                                                                                                                                                                                         
## [2385] "The Observer OPTION--5 Item contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2386] "This 34-item measure is comprised of a 16-item Haitian Orientation Scale (HOS), a 9-item African American Orientation Scale (AAOS), and a 9-item European American Orientation Scale (EAOS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2387] "The authors computed two scales from the 12 items comprising the measure: Direct Support for Children (6 items) and Trauma-Informed Systems (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2388] "The GENCAT Scale -- Catalonian Version consists of 69 items in 8 subscales: : Emotional Wellbeing (8 items); Interpersonal Relations (10 items); Material Wellbeing (8 items); Personal Development (8 items); Physical Wellbeing (8 items); (Self-Determination (9 items); Social Inclusion (8 items); and Rights (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2389] "This 10-item measure consists of the 5-item Collectivism Scale and the 5-item Individualism Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2390] "The Student Engagement in School Measure contains 33 items with three subscales: Affective engagement subscale (9 items), behavioral engagement subscale (12 items), and the cognitive engagement subscale (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2391] "The Internet Service Cognitions and Use Questionnaire contains a total of 30 items: 26 items measure the degree of cognition or usage of 26 Internet services in four subscales: e-Daily Life, e-Business, e-Government, and e-Infrastructure and 4 items measure the life promotion through Internet service."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2392] "This measure consists of 38 items divided into 11 domains each representing a specific cognitive functions: orientation (8 items/4 points), memory (9 items/9 points), attention (7 items/5 points), executive functions (3 items/3 points), language (7 items/5 points), agnosia (1 item/1 point), apraxia (2 items/2 points), and visuospatial function (1 item/1 point)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2393] "The 28-item Parenting Program Checklist has 3 sections: The Basics (9 items), Skill Development (13 items), and Parent Self-Care (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2394] "This measure contains 27 items, divided into three main categories: assigned work (10 items), communicating with others (8 items), and attention and behavior (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2395] "This 12-item scale is divided into three subscales: (a) Social Exercise Self-efficacy (SES; 5 items); (b) Gym Avoidance (GA; 4-items); and (c) Exercise Importance (EI; 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2396] "The Diabetes Empowerment Questionnaire is a 15-item measure with three subscales: Active Self-Care (6 items), Basic Knowledge Related to Diabetes Management (5 items), and Coping with Personal and Social Concerns (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2397] "The Institutional Mistrust Scale contains 11 items with three factors: Systematic discrimination (4 items), organizational suspicion (4 items), and conspiracy beliefs (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2398] "This measure consists of 59 items divided into two parts. Part 1 consists of 43 items, while Part 2 consists of 16 demographic items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2399] "The questionnaire addresses 4 facets of motivation: Attention, Goal, Enjoyment, and Challenge. Each facet in this 16-item measure consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2400] "This 6-item measure consists of the Performance Expectancy (3 items) and the Use Intention (3 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2401] "This instrument contains 20 items presented in three sections: student health status (15 items), relation of health and behavior (3 items), and educational programming (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2402] "This measure consists of 15 items. Five items address Social Networking Sites, 5 items address Weblogs, and 5 items address YouTube. Items were for each application exactly the same."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2403] "This measure consists of the 14-item Role Expectation and 19-item Role Performance Subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2404] "The questionnaire consists of 17 items across 4 subscales: Attitudes (5 items), Perceived Norms (5 items), Self-Efficacy (4 items), and Intent (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2405] "The inventory includes 24 items across 10 domains: Behavioral Approaches (2 items), Developmental Approaches (2 items), Additional Approaches (3 items), Communication Strategies (3 items), Environmental Supports (1 items), Technology Supports (3 items), Social Supports (3 items), Behavior Supports (2 items), Other Approaches (2 items), and Curriculum (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2406] "The Children’s Eating Behaviour Questionnaire--Chinese Version contains 19 items. The original Children's Eating Behaviour Questionnaire contains 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2407] "The Satisfaction with Research Participation in a Mobile Research Vehicle contains 11 items in three subscales: Convenience (5 items), Distraction (2 items), and Comfort (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2408] "The sociodemographic and practice characteristics section includes questions on gender, age, level of education, professional role, ward of activity, and number of years in practice. To assess the knowledge, 6 questions are asked. Six items assess the attitudes. The section on behaviors includes 5 questions, and in the last section, respondents are asked about the source/sources of information and whether they feel the need to acquire additional information."                                                                                                                                                                                                                                                                                                                                                                                          
## [2409] "The Momentary Emotion Ratings Measure contains 8 items: 4 items for positive affective experiences and 4 items for negative affective experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2410] "The final MABS (27 items) includes 3 subscales: bicultural comfort (9 items), bicultural facility (9 items), and bicultural advantages (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2411] "The 17-item Hepatitis B Virus-Related Stigma Scale contains 4 subscales: labeling differences subscale (2 items), stereotype subscale (3 items), separating “us” from “them” subscale (7 items), and discrimination attitudes subscale (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2412] "This measure contains 42 items, divided into 7 subscales: Principal Supportiveness, Accessibility, and Competence (8 items); Colleague Collegiality (4 items); Prosocial Development Practices (5 items); Student Behavior (14 items); Teacher Efficacy (3 items); Enjoyment of Teaching (5 items); and Parent Involvement (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2413] "The 20 items of the short form version are drawn from the FFMQ-C that consists of 39 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2414] "The Parental Support for Learning Scale–-Mother consists of 35 items and the Parental Support for Learning Scale–-Father consists of 42 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2415] "The Scale of Effective Communication in Team Sports -- Revised contains 15 items with four subscales: Distinctiveness (3 items), Acceptance (4 items), Positive Conflict (4 items), and Negative Conflict (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2416] "The measure consists of the 19-item Specific Problematic Play Scale, the 14-item Specific Dissociation Scale, the 17-item WoW Success Consonance Scale, and the 19-item Real-Life Consonance Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2417] "The Why Worry-II--Brief 5 Item Version has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2418] "The measure consists of 87 items assessing social well-being (4 items), leisure well-being (5 items), health well-being (5 items), safety well-being (8 items), family and home well-being (6 items), political well-being (7 items), spiritual well-being (4 items), neighborhood well-being (14 items), environmental well-being (12 items), transportation well-being (4 items), education well-being (8 items), work well-being (5 items), financial well-being (4 items), and consumer well-being (1 item)."                                                                                                                                                                                                                                                                                                                                                        
## [2419] "The measure consists of 5 items [Perceptions of children's ability (3 items), 2. Perceptions of importance (1 item), and 3. Efficacy (1 item)] across the following domains: sports, instrumental music, reading, and math."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2420] "Seven different scales were used to measure respondents’ overall assessment of their lives, (1) self-reported general health (5-point scale), (2) satisfaction with life as a whole (7-point scale), (3) satisfaction with the overall quality of life (7-points), (4) happiness with life as a whole (7-points), (5) satisfaction with life as a whole (5-item index), (6) contentment with life (5-item index), (7) subjective wellbeing (4-item index)."                                                                                                                                                                                                                                                                                                                                                                                                              
## [2421] "There were 27 questions in the questionnaire categorized into five sections: Section I (3 questions), Section II (3 questions), Section III (10 questions), Section IV (3 questions), and Section V (8 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2422] "This measure consists of a total of 25 items (11 items assessing bio-psycho-social aspects of habits in general and 14 items assessing habits displaying unfavorable behaviors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2423] "The final PDC-HS consists of 20 questions organized into 4 sections: four sections: (a) Training; (b) Task Clarification & Prompting; (c) Resources, Materials, & Processes; and (d) Performance Consequences, Effort, and Competition. Each section includes 4 to 6 questions about task performance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2424] "The Illness Cognition Questionnaire for Insomnia consisted of 12 items across two subscales: acceptance (6 items) and helplessness (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2425] "This measure consists of 20 items divided into the following subscales: Chaos (3 items), Happiness in the home (3 items), Child neglect (5 items), Child stimulation (6 items), and State of the home (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2426] "This measure contains 51 items, divided into 5 subscales: safe base (15 items),, supervisor commitment (9 items), trainee contribution (13 items), external influences (8 items), and supervisor investment (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2427] "The Collaborative Study Psychotherapy Rating Scale—Form 6--Modified Version consisted of 24 items with 12 items assessing cognitive therapy and 12 items assessing interpersonal therapy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2428] "The 35-item Coparenting Relationship Scale consists of 7 scales: Coparenting Agreement (4 items), Coparenting Closeness (5 items), Exposure to Conflict (5 items), Coparenting Support (6 items), Coparenting Undermining (6 items), Endorse Partner Parenting (7 items), and Division of Labor (2 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2429] "The Technological Pedagogical Content Knowledge Scale--Deep contains 33 items in four subscales: design (10 items), exertion (12 items), ethics (6 items), and proficiency (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2430] "This measure contains 19 items, divided into the following subscales: Ease of use (2 items), usefulness (5 items), experience (2 items), behavioral intention (2 items), learning opportunities (6 items), and curriculum-relatedness (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2431] "This measure contains 39 items divided into 4 main sections (Section 1 = 23 items; Section 2 = 5 items; Section 3 = 7 items; and Section 4 = 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2432] "The Migraine-Specific Quality of Life Questionnaire 1.0 contains 16 items distributed across the following three dimensions: Role Function-Restrictive (7 items), Role Function-Preventive (5 items), and Emotional Function (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2433] "The Clothing-Related Behaviors Measure contains a total of 8 items with two subscales: Self-enhancing behavior (4 items) and Body-concealing behavior (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2434] "The South Oaks Gambling Screen--13-Item Version contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2435] "The Parent Survey on Child Sleep Problems contains 9 items plus one additional question for a total of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2436] "This 21-item measure assesses the following constructs: Information privacy concerns (2 items), Self-efficacy (2 items), Perceived severity (4 items), Perceived vulnerability (5 items), Response efficacy (4 items), Rewards (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2437] "This measure contains 36 items, divided into 4 dimensions: Transformational leadership (15 items), ERP post-implementation success (4 items), Organizational culture (11 items), and ERP knowledge sharing (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2438] "This measure contains 19 items, divided into 5 subscales: social respect (5 items), social sharing (5 items), open mind (3 items), social identity (4 items), and intimacy (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2439] "This measure contains 36 items, divided into 10 subscales: Brand community (6 items), Social networking (8 items), Shared consciousness (2 items), Rituals and traditions (2 items), Obligations to society (2 items), Community engagement (4 items), Impression management (3 items), Brand use (3 items), Brand loyalty (3 items), and Brand trust (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2440] "This measure contains 25 items, divided into the following subscales: Perceived information quality (3 items), Perceived system quality (3 items), Perceived interactivity (3 items), Perceived usefulness (3 items), Perceived ease of use (3 items), Subjective norm (3 items), Attitude (3 items), Intention to use (3 items), and Usage behavior (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2441] "The Online Academic Integrity Survey consisted of 42 items across 2 sections. The first section (26 items) included five subscales—fraudulence, plagiarism, falsification, delinquency and unauthorized help. The second section (16 items) included three subscales—individual factors, institutional policies and peer pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2442] "This is an 18-item measure. The measurements assessing gratifications of information seeking (3 items), socializing (3 items), entertainment (3 items) and status seeking (3 items) for news sharing in social media were adapted from prior U&G research (Lee et al., 2010; Park et al., 2009). Prior social media sharing experience (3 items) was adapted from LaRose and Eastin (2004) while intention to share news (3 items) was adapted from Lee et al. (2010) and Hagger et al. (2007)."                                                                                                                                                                                                                                                                                                                                                                         
## [2443] "This measure consists of 25 items and the following scales: work investment (6 items), loyalty (4 items), innovation (4 items), interpersonal sensitivity (5 items), active criticism (3 items), and acceptance of criticism (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2444] "All scales used in the measurement were multi-item scales that were collected based upon previous literature [Perceived usefulness (4 items), Entertainment value (4 items), Economic value (2 items), Perceived ease of use (4 items), Escapism (4 items), Visual attractiveness (4 items), and Attitude towards use (4 items)]."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2445] "This measure contains 24 items, divided into 4 subscales: Self-efficacy beliefs (6 items), Intrinsic motivation (6 items), Extrinsic motivation (6 items), and Regulation of learning (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2446] "This measure contains 37 items, divided into the following subscales: Attitude (6 items), Intention (6 items), Habit (4 items), Optimism bias (7 items), Facilitating conditions (4 items), Prosecution risk (3 items), Performance risk (4 items), and Social risk (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2447] "The measure consists of 110 items, divided among the following six scales of friendship and shared meaning: love maps (20 items), fondness and admiration (20 items), turning toward (20 items), shared goals (10 items), shared rituals (20 items), and shared symbols (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2448] "The measure consists of 168 items divided among the following eight scales: harsh start-up (20 items), accepting influence (20 items), compromise (20 items), the Four Horsemen of the Apocalypse (33 items), gridlock on perpetual issues (20 items), flooding (15 items), negative perspective taking (20 items), and repair attempts (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2449] "The scales measure 4 indicators of father's parenting: Engagement (8 items), Shared Responsibility in Parenting (4 items), Cooperation in Parenting (6 items), and Parenting Stress (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2450] "The measure of remote monitoring is a 10 item survey, in which 9 of the 10 items are answered using a 5-point Likert scale. The 10th item queries their a priori awareness of health related remote monitoring technology."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2451] "The Job Crafting Scale contains 21 items in four dimensions: Increasing structural job resources (5 items), decreasing hindering job demands (6 items), increasing social job resources (5 items), and increasing challenging job demands (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2452] "This measure contains 15 items, divided into 2 subscales: Relational victimization (7 items) and Physical victimization (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2453] "The Hatred Scale consisted of 13 items across 2 factors: chronic hatred (7 items), and immediate hatred (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2454] "This measure consists of a total of 50 items (40 main items and 10 filler items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2455] "The Evidence-Based Practice Theory of Planned Behavior Survey contains 15 items in four components: Intentions (3 items), Attitude toward the behavior (4 items), Subjective norm (4 items), and PBC (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2456] "This measure contains 50 items, divided into 6 subscales: sensitivity to child (9 items), responsiveness to child (9 items), respect for child’s autonomy (9 items), social-emotional growth fostering (9 items), cognitive growth fostering (9 items), and child’s empathy development (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2457] "This measure contains 12 items, divided into 3 subscales: Family support (4 items), Family closeness (4 items), and Friend support (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2458] "The Autonomy and Homonomy Measure consists of a total of 14 items in two scales: Autonomy (7 items) and Homonomy (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2459] "This measure consists of 20 items and 2 subscales, namely Activity Engagement (11 items) and Pain Willingness (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2460] "This measure consists of 20 questions for the past condition and 20 questions for the future condition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2461] "This measure includes 23 questions pertaining to oral case presentations and a a 32-item evaluation form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2462] "The full scale contains 30 items and the reduced scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2463] "In total, the measure consists of 35 items divided among the following eight scales: Activity Control (5 items), Capability Control (5 items), Outcome Control (5 items), Adaptive Selling Behavior (6 items), Selling Effort (3 items), Role Conflict (3 items), Role Ambiguity (3 items), and Salesperson Performance (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2464] "The Nanobiotechnology Designs Creativity Scales contains 12 items in three subscales: novelty (6 items), feasibility (3 items), and value contribution (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2465] "The Computer Usage to Develop Listening and Speaking Skills in ESL Activities Questionnaire and Student Interview consists of an 11-item questionnaire and an 8-item interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2466] "The Entrepreneurial Alertness Measure consisted of 13 statements across three distinct components: Scan (6 items), Connect (3 items), and Evaluation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2467] "This measure contains 8 items, divided into 3 subscales: Beliefs about the Father Scale (4 items), Father Mental Illness Scale (2 items), and Infant Worth Scale (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2468] "The College Counseling Assessment of Psychological Symptoms–62 contains 62 items in eight factors: Depression (13 items), Eating concerns (9 items), substance use (6 items), Generalized anxiety (9 items), Hostility (7 items), Social anxiety (7 items), Family distress (6 items), and Academic distress (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2469] "There are a total of 12 items. The form for people with aphasia contains 6 items and the form for partners contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2470] "There are 29 items comprising the prototypical brand measure and 27 items in the me-too brands measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2471] "The measure consists of 20 items, comprising four scales of 5 items each: Helicopter parenting, Little Emperor parenting, Tiger Mom parenting, and Concerted cultivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2472] "The Behavior Problems Index--6-Item Version consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2473] "The Friendship Quality Scale--Korean Version contains 36 items in two subscales: 28 items from positive functioning and 8 items from negative functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2474] "The Factors Affecting Nursing Workload Questionnaire contains two questions for each of the 28 items (factors) for a total of 56 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2475] "This measure contains 12 items, divided into 3 subscales: Career interest – Part 1 (4 items), Career interest – Part 2 (5 items), and Career interest – Part 3 (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2476] "The Relative Difficulty of the Sciences Measure contains a total of 30 items: 6 categories each with 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2477] "The total measure consists of 35 items. The following constructs comprise the measure: Technology Use for Language Learning (5 items), Perceived Usefulness (5 items), Educational Compatibility (4 items), Computer Self-Efficacy (3 items), Facilitating Conditions (4 items), Subjective Norm (3 items), Language Learning Motivation (2 items), Language Learning Approaches (3 items), Situated Interpretation of the Context (2 items), and Self-Regulation Skill (4 items)."                                                                                                                                                                                                                                                                                                                                                                                      
## [2478] "This measure contains 18 items, divided into 2 subscales: Coaching and communicative support (12 items) and Facilitation of personal autonomy and responsibility (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2479] "The Sensitivity to Punishment and Sensitivity to Reward Questionnaire--20 Item Version consisted of 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2480] "The measure consists of 148 items, with 10 items per subscale: Reactive Anger, Shame, Indifference, Need for Admiration, Exhibitionism, Thrill-Seeking, Authoritativeness, Grandiose Fantasies, Cynicism/Distrust, Manipulativeness, Exploitativeness, Entitlement, Arrogance, Lack of Empathy, and Acclaim-Seeking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2481] "This measure contains 20 items. A shortened version (13 items) was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2482] "This measure was found to have 20 items in the US sample and 26 items in the Korean sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2483] "There is a 10-item index, a 7-item index, and a 5-item index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2484] "The measure consists of 10 items assessing mothers' bonding (5 items) and bridging (5 items) of social capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2485] "This measure contains 26 items, divided into 6 themes: Aetiology and development (6 items), Classification and observation (5 items), Risk assessment (2 items), Nutrition (1 item), Preventive measures to reduce the amount of pressure/shear (7 items), Preventive measures to reduce the duration of pressure/shear (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2486] "This measure contains 21 items, divided into 3 subscales: Religious belief (5 items), Religious social behavior (10 items), and Support for democracy (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2487] "The measure consists of 8 items covering two domains: quality-of-life (4 items) and activities of daily living (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2488] "This measure contains 12 items, divided into 3 sets of questions: performance expectations embedded in contracts with public child welfare agencies (4 items), analysis of data regarding agency performance/outcome achievement (4 items), and keeping ahead of other agencies (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2489] "The Theory of Planned Behavior Questionnaire consists of 46 items with the following subscales: Intention, 3 items; Attitude, 8 items; Perceived behavioral control, 6 items; Behavioral belief, 6 items, Normative belief, 4 items; Control belief, 5 items; Moral norm, 7 items; Anticipated regret, 2 items; Past behavior, 2 items; Self-identity, 1 item; and Perceived susceptibility, 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2490] "The Automotive Safety Program Indiana Child Safety Seat Survey, 2008 consists of a 32-item Observational Survey and a 24-item Driver Survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2491] "The Corporate Credibility and Loyalty Scales contained 6 items: Corporate credibility (3 items) and corporate loyalty (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2492] "The Perception of Online Resources Scales consists of 2 5-item perceived utility scales and 2 5-item trust scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2493] "The Violence in Surrounding Subsystems--Thai Version contains a total of 24 items: 4 items in each of the 6 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2494] "The revised measure includes 16 items across two scores for: (a) co-rumination about the adolescent’s problems with the mother (8 items) and (b) co-rumination about the mother’s problems with the mother (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2495] "The measure consists of 10 items, with 5 items measuring both self-disclosure about the adolescent’s problems and self-disclosure about the mother’s problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2496] "The Screen for Child Anxiety Related Emotional Disorders - Shortened 8-Item Version contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2497] "Items assessing knowledge transfer from vendor to client (7 items) were adapted from Yli-Renko, Autio, and Sapienza (2001). Factors affecting knowledge transfer from vendor to client (knowledge codifiability-3 items, client’s motivation for partnership-4 items, vendor’s willingness to share-3 items, and trust between client and vendor-3 items) were measured by 13 items. Mechanisms for intra-firm knowledge transfer and impact on the IT function were measured by 4 and 6 items, respectively."                                                                                                                                                                                                                                                                                                                                                           
## [2498] "The Driving Skill Scale consists of 9 items: 4 items on the Driving Skills Factor and 5 items on the Safety Motivation Factor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2499] "The final Survey consisted of 29 items distributed across 5 scales: Opportunism (4 items), IT Infrastructure (6 items), Inter-organizational trust (2 items), Knowledge Complementarity (9 items), and Knowledge Exchange (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2500] "This measure contains 26 items, divided into the following subscales: Perceived relative advantage (4 items), Perceived ease of use (4 items), Perceived compatibility (3 items), Perceived competence (3 items), Perceived benevolence (3 items), Perceived integrity (3 items), Attitude (3 items), and Behavioral intention (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2501] "The measure consists of 20 items and the following scales: Loyalty (2 items), Satisfaction (3 items), Trust (3 items), Switching barriers (2 items), Service quality (4 items), Playfulness (3 items), and Intimacy (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2502] "The measure consists of 29 items divided between the following constructs: Web site content, 7 items; Web service quality, 4 items; Service convenience, 3 items; Individual PC skill, 5 items; Perceived risk, 4 items; Customer satisfaction, 3 items; and Behavioral intentions, 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2503] "In the final 25-item Quality of the Healthy Activity Programme, two subscales were used to assess overall therapy quality: Treatment-Specific Skills (TSS-15 items) and General Skills (GS-10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2504] "The adapted parent-report C-FAI includes 18 items that make up four scales: positive family functioning (8 items), negative family functioning (conflict, 3 items), tolerance of family members (3 items), and a parent’s understanding of their child (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2505] "This 20-item measure consists of the following dimensions: The following constructs are assessed: Bloggers’ Knowledge Sharing (7 items), Economy-based Trust (2 items), Trust in Bloggers (4 items), Trust in Internet (4 items), and Trust in Blog Service Provider (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2506] "The Post-Implementation Success of Enterprise Resource Planning Questionnaire consists of 20 items over 6 subscales: Post-implementation success of ERP (5 items); Effective project management (4 items); Sound System configuration (3 items); Leadership involvement (3 items); Organizational fit (2 items); and External support (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2507] "Children’s learning skills were measured by 10 items and 11 items across two waves of testing, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2508] "The Bipolar Functional Status Questionnaire consists of 24 items on the following subscales: Cognitive functioning (3 items); Sleep (3 items); Role functioning (6 items); Emotional functioning (2 items): Energy vitality (3 items); Social functioning (6 items); and Personal management (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2509] "The Implicit Person Theory Measure--8-item Version consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2510] "There are a total of 79 items. The Horizontal Gaze Nystagmus test consists of 6 items. The Finger to Nose test consists of 48 items. The Palm Pat test consists of 10 clues. The Hand Coordination test consists of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2511] "The measure consists of 14 items comprising four factors: (a) financial pressures (4 items); (b) regulatory or legal constraints (3 items); (c) client needs and best practices (4 items); and (d) performance management (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2512] "The entire measure consists of 13 items. The first three scales consist of three items each, while the supervisor trust scale consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2513] "This 19-item measure consists of the 7-item distributive justice, the 7-item procedural justice, and the 5-item interactional justice scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2514] "This semi-structured interview consists of 5 items for a regular classroom teacher and 6 items for an itinerant support teacher."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2515] "The Texting and Driving Questionnaire consists of 89 items, including 21 items about texting under different driving conditions, and 44 about the effect of different text topics on texting while driving."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2516] "The Employee Perceptions of Participatory Ergonomics Questionnaire consists of 17 items in the following subscales: Self-Involvement (3 items); Knowledge Base (3 items); Managerial Support (4 items); Employee Supportiveness (3 items): and Strain (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2517] "The Safety Climate and Behavior Questionnaire consists of 21 items: 7 items on the Safety Management subscale, 7 items on the Perceived Supervisor Safety Behavior subscale, 3 items on the Safety Policy subscale, and 4 items on the Safety Behavior subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2518] "The questionnaire contains 47 questions covering areas of management commitment (8 items), safety training (5 items), workers’ involvement (4 items), safety communication and feedback (4 items), safety rules and procedures (4 items), safety promotion policies (4 items), safety knowledge (5 items), safety motivation (5 items), safety compliance (4 items) and safety participation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2519] "This 63-item measure is divided into 3 subtests: Melody (18 items), Rhythm (18 items), and Pitch (27 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2520] "This measure contains 8 items, divided into 2 dimensions: Promotion focus (4 items) and Prevention focus (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2521] "This measure contains 28 items, divided into the following components: General (3 items), Intentional help (4 items), Facilitates peace (5 items), Impartial help (5 items), Without reward (6 items), Rare in world (1 item), Avoids aggression (2 items), Defies corruption (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2522] "The Eating in Emotional Situations Questionnaire contains 11 items: emotion-driven EES (6 items) and context-driven EES (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2523] "The 10-item Food Acceptance and Action Questionnaire consists of a 6-item Willingness subscale and a 4-item Acceptance subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2524] "The Essen Climate Evaluation Schema consists of 15 items, with 5 items on each of 3 scales: Therapeutic Hold, Patient Cohesion and Mutual Support, and Safety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2525] "The measure consists of 11 items and two subscales: General (8 items) and Eating (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2526] "The Disclosure Questionnaire consists of a 17-item questionnaire to HIV-infected children and a 15-item questionnaire to their caregivers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2527] "There are 4 items in each of the two scales, for a total of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2528] "This measure contains 20 items, divided into 2 dimensions: Institutional roles (12 items) and Epistemologies (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2529] "This is a 30-item measure. Twenty-six questions specifically related to the health belief model constructs of perceived threat (nine questions) and outcome expectations (17 questions), and four additional questions related to practitioners’ experiences with referral."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2530] "Distributive, Procedural, and Interactional Fairness Questionnaire--Finnish Version, with 7 items measuring distributive fairness, 7 items measuring procedural fairness, and 6 items measuring interactional fairness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2531] "This is a 19-item measure. The authors included two questions concerning the extent to which respondents worked in CFTs. Three core facets of professional work were measured: domain distinctiveness (4 items), accountability (3 items), and task autonomy (4 items). Six items covered the three personality traits of interest (two items each for: extraversion, emotional stability, and openness to experience)."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2532] "This measure contains 17 items. Nine- and 4-item versions were also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2533] "There are 32 items in the trainee questionnaire and 33 items in the corresponding faculty questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2534] "The Problem-Based Learning Video Triggers Experiences Questionnaire contains 14 items: Students (7 items) and facilitators (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2535] "The Evidence-Based Practice Profile Questionnaire consists of 58 items over 5 subscales: Relevance (14 items), Terminology (17 items), Confidence (11 items), Practice (9 items), and Sympathy (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2536] "The Advisory Program Survey consists of 2 parallel surveys: A 53-item Faculty Advisory Program (FAP) survey and a 65-item Advisory College Program (ACP) survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2537] "The Access to Microcredit Schemes Q-Sort Measure consists of 35 items with the following structure: self-exclusion (4 items); exclusion by others (2 items); exclusion by staff (3 items); exclusion by design (8 items); and exclusion by other factors (physical and informational barriers [3 items], supporting factors [9 items], resources [6 items])"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2538] "This measure contains 66 items, covering the following dimensions: Access to/Approaching the building (7 items); Entering the building (9 items); Usable Circulation/Reception area (5 items); Usable Lifts/Elevators (8 items); Usable toilet area (17 items); Usable Ramp and Rails (12 items); Usable parking spaces (3 items) and Using public transport (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2539] "The 47-item Profile Fitness Mapping Neck Questionnaire consists of the 27-item Symptom Scale and the 20-item Functional Limitation Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2540] "This measure contains 31 items, divided into 3 scales: Frequency (12 items), Restrictions (10 items), and Satisfaction (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2541] "The MESUPES was divided in two tests: the MESUPES-arm test (8 items) and MESUPES-hand test (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2542] "The Working Alliance Inventory Theory of Change Inventory - 9-item Version consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2543] "The questionnaire consists of 31 items over 6 categories: Information handling (4 items), Technical and numeracy (6 items), IT skills (5 items), Time management (3 items), Managing your own learning (7 items), and Presentation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2544] "The Questionnaire consists of 10 items about academic intimidation in the group (6 social comparison items and 4 comfort items) and 8 items about self-efficacy for achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2545] "The 37-item TAPES consists of three sections, each composed of three subscales. The subscales underlying the first section, Psychological adjustment, include General adjustment, Adjustment to limitation and Social adjustment (each comprising 5 items). The second section, Activity restriction, is composed of Functional activity restriction, Social activity restriction and Athletic activity restriction subscales (4 items each). The third section, Satisfaction, was subdivided into Functional satisfaction (5 items), Weight satisfaction (1 item), and Aesthetics satisfaction (4 items)."                                                                                                                                                                                                                                                              
## [2546] "The Sickness Impact Profile Roland Scale--23 Item Version consists of 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2547] "The Post-Rotation Student Evaluation of Individualized Learning Plan Exercise consists of 9 questions addressing student satisfaction, 5 aspects that are ranked for utility, 1 question about optimum frequency of follow-up meetings, and a free-response area."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2548] "The Dutch Residency Educational Climate Test consists of 50 items over 11 subscales: Supervision (3 items); Coaching and Assessment (8 items); Feedback (3 items); Teamwork (4 items); Peer Collaboration (3 items); Professional Relations between Attendings (3 items); Work is Adapted to Residents' Competence (4 items); Attendings' Role (8 items); Formal Education (4 items); Role of the Specialty Tutor (6 item); and Patient Sign Out (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                             
## [2549] "The Management of Patients with Neuromuscular Diseases for OT, PT and ST Questionnaire consists of a 25-item and 28-item professional questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2550] "The European Child Environment Questionnaire consists of 51 questions over 9 domains: Physical Environment (Home, 6 items; School, 4 items; Community, 8 items; Transport, 4 items); Social Support (Home, 5 items; Community, 8 items); and Attitudes (Family and Friends, 6 items; Teachers and Therapists, 7 items; and Classmates, 3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2551] "The Reflection-in-Learning Scale consists of 10 items. A 14-item version of the scale also exists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2552] "The Facilitators And Barriers Survey of Environmental Influences on Participation Among People with Lower Limb Mobility Impairments and Limitations includes 61 questions, 133 items and six domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2553] "The Mental Vulnerability Scale--22-Item Version contains 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2554] "This measure contains 28 items divided into 5 scales: Gender Typicality (6 items), Gender Contentedness (6 items), Feeling Pressure from Parents (4 items), Feeling Pressure from Peers (4 items), and Intergroup Bias (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2555] "The Web Use Motivation Measure consists of 41 items over 7 subscales: Social Escapism Motivation (11 items); Transaction-based Security and Privacy Concerns (7 items); Information Motivation (5 items); Interactive Control Motivation (6 items); Socialization Motivation (5 items); Nontransactional Privacy Concerns (3 items); and Economic Motivation (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2556] "A total of 15 items cover prosocial behavior (6 items), antisocial behavior (7 items), and withdrawn behavior (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2557] "The Ambiguity Tolerance Scale--20-Item Version consists of 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2558] "The Money Ethics Scale--15 Item Version consisted of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2559] "The full scale contains 17 items. The short form contains 3 items. There is also a 1-item version of the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2560] "The Spinal Cord Injury Lifestyle Scale--22 Item Revised Dutch Version is comprised of 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2561] "The Stroke-Adapted 30-Item Version of the Sickness Impact Profile has 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2562] "The French Revised Self-Monitoring Scale consists of 13 items over 2 subscales: Sensitivity to Expressive Behaviours of Others (6 items); and Ability to Modify Self-Presentation (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2563] "There are three forms of the survey, administered at the beginning of the initial training (9 items), at the end of the 4-week pre-employment training block (8 items), and 2 months into the overall program (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2564] "The Motivational-Affective Three and Single-Item Measures contains 3-items and 1-item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2565] "This measure contains 21 items, divided into the following subscales: Perceived usefulness (4 items), Perceived ease of use (4 items), Perceived behavioral control (3 items), Behavioral intention to use (2 items), Perceived responsibility (3 items), and Handling of tasks (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2566] "The Patient Activation Measure - 13 Item Version contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2567] "The 23-item interview schedule consisted of structured demographic questions (7 items) and open-ended questions (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2568] "The Perceived Role and Stakeholder Importance Questionnaire consists of 16 items over 5 subscales: Concern for stakeholders (4 items); Perceived importance of direction-setting role (3 items); Perceived importance of guardian role (3 items); Perceived importance of social networking role (3 items); and Perceived importance of social participation role (3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2569] "The Attitudes Toward Research Scale--30 item contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2570] "The Parenting Young Children contains 19 items: Supporting Positive Behavior (7 items), Setting Limits (5 items), and Proactive Parenting (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2571] "The Safety Performance Survey consists of 4 items regarding the use of personal protective equipment and 6 items regarding safety participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2572] "The Scale contains 6 items: Surface acting (4 items) and Deep acting (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2573] "The Diagnostic Questionnaire consists of 13 items: 12 items for each of 4 learning style domains, and a 13th \"tiebreaker\" question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2574] "The Quality of Life and Sexuality with Penile Prosthesis Questionnaire consists of 15 items over 4 domains: functional (5 items); relational (4 items); social (3 items); and personal (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2575] "The 20-item measure comprises two 10-item subscales designed specifically to tap agentic and communal content."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2576] "The Measure of Constructs Underlying Perfectionism contains 61 items: Order (9 items), Satisfaction (9 items), Details and Checking (5 items), Perfectionism toward Others (6 items), High Standards (6 items), Black and White Thinking about Tasks and Activities (4 items), Perceived Pressure from Others (6 items), Dissatisfaction (9 items), Reactivity to Mistakes (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2577] "The Consumers' Ethical Belief Scale--16-Item Version consisted of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2578] "This 48-item measure consists of eight 6-item scales: Assured/Dominant, Gregarious/Extraverted, Warm/Agreeable, Unassuming/Ingenuous, Unassured/Submissive, Aloof/Introverted, Cold-hearted, and Arrogant/Calculating."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2579] "This measure contains 39 items, divided into the following subscales: Scripting (10 items), Relationship Support (10 items), Sex (10 items), and Caring Actions (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2580] "The 21 items of the measure are distributed across five factors: Family atmosphere at work (5 items), Individualized relationships (4 items), Involvement in employees’ non-work lives (4 items), Loyalty expectation (3 items), and Status hierarchy and authority (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2581] "The Satisfaction with Doctors and Healthcare Among Latina Breast Cancer Survivors Measure consists of 4 main items: Reasons for not keeping a doctor's appointment (6 items); Reasons for not following doctor's recommendations (11 items); Reasons for not liking the doctor's office (5 items); and trust in doctors (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2582] "The Status Consciousness Scale consists of 40 items, with 5 items in each of 8 factors: rejection of status, high-perceived status, respect for hierarchy, low-perceived status, status display, egalitarianism, belief in hierarchy, and enjoyment of status."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2583] "The Barkin Index of Maternal Functioning consists of 20 items over 7 topics: Social support (3 items); management (6 items); mother-child interaction (3 items); infant care (2 items); self-care (3 items), adjustment (2 items); and psychological well-being of mother (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2584] "The ATI Brand Equity Scales consists of 28 items in the following subscales: Price Premium (3 items); Satisfaction/Loyalty (4 items); Perceived Quality (3 items); Leadership/Popularity (3 items); Brand Personality (6 items); Organizational Associations (3 items); and Brand Awareness (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2585] "The measure consists of 64 items. Both strategies and goals are measured by 8 items for each of 4 vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2586] "The scales that form the survey and their item counts are as follows: Energy reduction (3 items), Recycling (5 items), Environmental management program (7 items), Attitudes – benefits (6 items), Attitudes – organic (5 items), Attitudes – regulation (8 items), Norms (3 items), Internal stakeholders (5 items), and External stakeholders (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2587] "The measure consists of 6 items. Product sophistication and product social responsibility are each measured by 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2588] "The long form of the Psi-Q contains 35 items. The short form of the Psi-Q contains 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2589] "The Cognitive Flexibility Inventory contains 20 items: Alternatives subscale (13 items) and Control subscale (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2590] "The Medical School Self-Efficacy Survey contained an initial 19 items reduced to a final 14 items: Patient care self-efficacy (8 items), interpersonal skills self-efficacy (3 items), and evidence-based medicine self-efficacy (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2591] "The Hispanic Stress Inventory—Revised Version consists of 155 items over 7 domains: “Parent Stress” (28 items), followed by “Access to Health care Stress” (27 items), “Immigration Stress” (27 items), “Cultural Conflict Stress” (21 items), “Occupational and Economic Stress” (19 items), “Marital Stress” (17 items), and, lastly, “Family Stress” (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2592] "The Comprehension of Inferences In Discourse Processing Measure consists of 8 items (a total of 24, 8 items for 3 narratives)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2593] "Breastfeeding knowledge, attitudes, and confidence are measured by 22 items, 21 items, and 20 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2594] "This measure contains 24 items, divided into 6 components (4 items each): Impulsivity, Simple tasks, Risk seeking, Physical activities, Self-centeredness, and Temper."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2595] "This measure consists of 12 items, with 3 items covering each of the following: overt victimization, relational victimization, overt aggression, and relational aggression."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2596] "The DFP-Resources Scale consists of 11 items and the DFP-Status Scale consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2597] "This measure contains 24 items, divided into 3 scales: Attitudes toward revenge (7 items), Street code (10 items), and Attitudes toward forgiveness (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2598] "The Interprofessional Socialization and Valuing Scale contains 24 items: Self-Perceived Ability to Work with Others (9 items), Value in Working with Others (9 items), and Comfort in Working with Others (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2599] "The Lam Assessment on Stages of Employment Readiness consists of 14 items over 3 subscales: PreContemplation (6 items), Contemplation (4 items), and Action (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2600] "This measure comprises two separate scales: the Family Health Climate for Physical Activity (14 items) and the Family Health Climate for Nutrition (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2601] "The Age 9 version of this measure contains 5 items. The Age 12 version contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2602] "The Risk Behaviour Related to Eating Disorders--8-Item Measure consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2603] "The student version contains 25 items, while the parent and teacher versions each contain 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2604] "The Attention and Executive Function Rating Inventory consists of 55 items over 10 scales: Distractibility (4 items), Impulsivity (9 items), Motor hyperactivity (7 items), Directing attention (5 items), Sustaining attention (6 items), Shifting attention (4 items), Initiative (5 items), Planning (4 items), Execution of action (8 items), and Evaluation (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2605] "This 12-item measure consists of two 6-item scales (approach and avoidance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2606] "The measure consists of 30 items. Items are summed to create two subscales: a 22-item Experience subscale comprised of items tapping anhedonia (items 1–9), asociality (items 10–15), and avolition (items 16–22), and an Expression subscale comprised of items tapping blunted affect (items 23–27) and alogia (items 28–30)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2607] "The Sensation-Seeking Scale--3-Item Version consisted of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2608] "This full version of this measure contains 42 items. A shortened version contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2609] "This measure consists of 8 items assessing negative affect. There are also 5 items assessing positive emotions, which can be used as fillers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2610] "This 39-item survey is divided into two parts, one addressing the substantive aspects of the study (26 items) and another addressing participant demographics and site characteristics (13 items). A forced-choice response format is utilized."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2611] "The Reduced Horne Östberg Morningness-Eveningness Questionnaire--Hungarian Version consisted of 6 items. The authors also proposed and analyze a 4-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2612] "This measure contains 21 items. A shortened version contains 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2613] "This measure contains 16 items. A shortened (10 item) version was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2614] "This measure contains 20 items, divided into the following subscales: Restoration-Oriented Grief (5 items), Loss-Oriented Grief (5 items), and Depression (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2615] "The Physicians' Attitudes Towards Hospice Referral Survey consists of 17 items regarding physician attitudes toward hospice referral and 1 items regarding overall experience with hospice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2616] "The entire measure consists of 23 items dispersed among these categories as follows: (i) knowledge/self-efficacy pertaining to SBI (2 items), (ii) use of screening instruments (3 items), (iii) use of interventions (3 items), (iv) attitudes towards use of screening instruments (3 items), (v) communication with patients about alcohol (3 items), (vi) expected impact on the doctor–patient relationship if suggesting alcohol interventions (5 items), (vii) experience handling alcohol problems among patients (2 items), and (viii) knowledge and self-efficacy regarding intervention (2 items)."                                                                                                                                                                                                                                                           
## [2617] "This measure contains 6 items, divided into 2 subscales: Intimate Communication Scale (3 items) and Instrumental Communication Scale (3 items)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2618] "A series of questions (23 items) are used to measure knowledge (9 questions), attitudes (12 questions) and intentions toward hospice enrollment (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2619] "The Palliative Care Assessment at the Time of Admission Checklist contains 13 items. The Palliative Care Assessment during Each Hospital Day Checklist contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2620] "This measure comprises 3 items, each applied to 3 levels of leadership (cadet/midshipmen, commissioned officers, and senior officers), resulting in a total 9-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2621] "This measure consists of 34 items. Fear of negative evaluation is measured by 30 items, while customer empathy is measured by 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2622] "The Modified 3-Item Affective-Based Trust Scale consisted of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2623] "The Job Outcome and Supervisor Satisfaction Measure consists of 2 items about job outcomes and 3 items about satisfaction with immediate supervisors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2624] "The Worry Questionnaire consists of 69 items: 21 items assess physical threat, 20 items assess social threats; 4 items assess worry about family members; 4 items assess irrational worry, and 20 items assess worry about mateship."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2625] "The Type A Behavior Pattern Scales are comprised of a total of 38 items. The breakdown of the scales is as follows: Ambition (4 items), Stress (1 item), Hard-driving (5 items), Neuroticism (9 items), Paranoia (10 items), and Cynicism (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2626] "The Negative Social Interactions Measure contains 16 items (4 questions for 4 domains)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2627] "The Action/Solution Scenario and Rating Scale consists of 34 items over 5 factors: Factor 1 (Moral Kill) Creativity is measured by7 items; Factor 2 (Legal) Creativity is measured by 8 items; Factor 3 (Ambiguous) Creativity is measured by 8 items; Factor 4 (Illegal/Non-Violent) Creativity is measured by 5 items; and Factor 5 (Illegal/Violent) Creativity is measured by 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2628] "The Self-Beliefs in Social Anxiety Scale--French Version consists of 15 items, 4 items measuring excessively high standard beliefs for social performance, 7 items measuring conditional beliefs concerning social evaluation, and 4 items measuring unconditional beliefs about the self."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2629] "The Conformity to Masculine Norms Inventory--29 Items consisted of 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2630] "The 54-item measure has six clinical scales with 9–10 items in each: Anxiety (Anx), Depression (Dep), Posttraumatic Stress (Pts), Sexual Concerns (Sc), Dissociation (Dis), and Anger (Ang)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2631] "This 18-item measure consists of two 9-item subscales (educational and occupational attainment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2632] "The Patient Integrity Factors Questionnaire consists of 24 items: factors relating to patients (5 items), relatives (6 items), nurses (6 items), the organization (5 items) and society (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2633] "The 36 questions are divided into five groups: the importance of self-determination for elderly patients (importance scale, 5 items); patients' opportunity to control, that is, have a say, in their own treatment (control scale, 5 items); patients' willingness to exercise their self-determination (willingness scale, 5 items); the level of patients' knowledge about their illnesses and treatment (knowledge scale, 6 items); and the support they received to exercise their self-determination (support scale, 15 items)."                                                                                                                                                                                                                                                                                                                                   
## [2634] "The Mobbing Behaviors Questionnaire consists of 33 items over 4 categories: (11 items), attack on personality (9 items), attack on professional status (9 items) and direct negative behaviors (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2635] "This questionnaire consists of 32 items and measures two teacher self-efficacy constructs: (a) general teaching efficacy (GTE) and personal teaching efficacy (PTE). GTE is measured by a total of 16 items (8 positive and 8 opposing items). PTE is likewise measured by a total of 16 items (8 positive and 8 opposing items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2636] "This measure consists of 31 items, though only 30 items comprise the four factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2637] "The Fatigue Scale--Children--Chinese Version consists of 14 items over 3 subscales: Lack of Energy (7 items); Not Able to Function (4 items); and Altered Mood (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2638] "This instrument consisted of two parts: Part 1 (8 items) comprises the demographic data and Part 2 (25 items) comprises questions on the knowledge, attitudes, and practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2639] "The 29-item Negative Coping with Stress and Violence Surveys consisted of two surveys: A 15-item coping with stress survey and a 14-item coping with violence survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2640] "The skills to Recognition of Family Nursing Questionnaire consists of 42 items over 4 factors: Interview skills with family members to construct trusted relationship (12 items); Assessment skills of family structure and functioning (11 items); Intervention skills of family nursing (9 items); and Skills to collect family nursing (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2641] "The Relatives' Perceptions of Older Patients' Integrity Questionnaire contains two parts: Background Information (20 items) and relatives’ views on the maintenance of patient integrity in long-term settings (99 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2642] "The final Patient Education Materials Assessment Tool (PEMAT) consists of 26 items and two scales: understandability (19 items) and actionability (7 items). There are two versions: the PEMAT-P for printable materials (understandability = 17 items and actionability = 7 items) and the PEMAT-A/V for audiovisual materials (understandability = 13 items and actionability = 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2643] "This measure consists of a 4-item scale and a 2-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2644] "The STEM Career Self-Efficacy Test contains 54 items (long form) and 8 items (short form)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2645] "The long version of the test contains 55 items. The short version of the test contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2646] "Both forms comprise a 26-item rating scale (self-report: CAARS-S:S; observer: CAARS-O:S). The CAARS-S includes four-factor-derived subscales (Inattention/ Memory Problems, five items; Hyperactivity/Restlessness, five items; Impulsivity/Emotional Lability, five items; and Problems With Self-Concept, five items) and two created scales (the ADHD index, 12 items that best distinguish ADHD adults from nonclinical adults; and the ADHD inconsistency index, 8 pairs of items that have similar content and that can be used to identify random or careless responding)."                                                                                                                                                                                                                                                                                       
## [2647] "The Opioid Compliance Checklist consists of 5 items. A 10-item measure was also proposed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2648] "The Supervision Utilization Rating Form consists of 52 items over 8 subscales: Complies with expectations (7 items); Shows Responsibility (5 items); Demonstrates Initiative and Independent Thinking (11 items); Exhibits Openness and Nondefensiveness (6 items); Demonstrates Self-Insight (4 items); Uses Effective Relationship/Interpersonal Skills (7 items); Demonstrates Growth and Risk-Taking Behaviors (7 items); and Exhibits Positive Personal Characteristics (5 items)."                                                                                                                                                                                                                                                                                                                                                                                 
## [2649] "The Problem and Solution Scene Rating Scales contains a total of 16 items: 15 items and one open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2650] "This 35-item measure is divided into the following subscales: personal competence (17 items), acceptance of self and life (8 items), social support (5 items) and coping with adversity at work (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2651] "The Motivation Orientations Measure consists of 23 items: 10 items assess intrinsic motivation, 8 items assess extrinsic motivation, and 5 items assess identified motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2652] "This measure contains 13 items, divided into 2 scales: positive expectancies (8 items) and negative expectancies (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2653] "The Inattentional Blindness Questionnaires consists of a 2-item and 5-item questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2654] "The Vulnerable Personality Style Questionnaire consists of 9 items over 2 subscales: Vulnerability (6 items) and Organized/Responsive (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2655] "The Children's Truth Telling Beliefs Vignettes consists of 36 question, 3 questions for each of the 12 vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2656] "The Ebbinghaus Illusion Task consists of 32 items comprised the small target size condition and 48 items comprised a large target size condition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2657] "The Student Intervention Acceptability Questionnaire consists of items that vary by condition: The performance feedback condition had 8 items and the practice only condition had 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2658] "The Life Orientation Test -- Revised -- Portuguese Version consists of 10 items: 3 items assess optimism, 3 items assess pessimism, and 4 items are filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2659] "The 30-item ISS is a self-report inventory that comprises a 24-item measure of internal shame (ISS-S) assessing the frequency in which people experience feelings of shame, and a 6-item scale assessing self-esteem (ISS-SE)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2660] "The Horizontal Violence Scale consists of 23 items over 4 subscales: verbal behavior (10 items); emotional behavior (4 items); physical behavior (4 items); and defiant circumstances (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2661] "The Opioid Prescription Medication Motives Questionnaire consists of 19 items over 4 factors: Enhancement (5 items); Coping (4 items); Social (4 items); and Pain (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2662] "The Rural Resilience Index (RRI) consists of 53 items. The Web-RRI consists of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2663] "There are two versions of this test--one with 20 items (FSQ-20) and one with 8 items (FSQ-8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2664] "This measure consists of 6 items comprising two 3-item scales: self-blame scale and unintentional responsibility scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2665] "The Iranian version of the NCOS consists of 8 questions with some questions containing items related to different functioning (questions 3 and 4), giving a total of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2666] "The Clinical Learning Environment, Supervision and Nurse Teacher Evaluation Scale--Spanish Version consists of 34 items over 5 domains: pedagogical atmosphere on the ward (14 items); supervisory relationship (8 items); leadership style of the ward manager (3 items); premises of nursing on the ward (3 items); and role of the nurse teacher in clinical practice (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2667] "The Bipolar Disorder Internet Education Semi-Structured Interview consists of 53 potential questions over 8 areas: Access (14 potential items); Reflections on Mood (2 potential items); General (6 items); Content (16 potential items); Presentation format (7 items); Insight (4 items); Suggestions for improvement (1 item); and Recommendations (3 potential items). The interview schedule was used as a guide, but interviews were conducted flexibly to enable participants to explore topics freely."                                                                                                                                                                                                                                                                                                                                                          
## [2668] "The measure consists of 32 items comprising the following subscales: using children (5 items), minimizing (3 items), economic control (4 items), threatening control (4 items), intimidating control (5 items), emotional control (5 items), and isolating control (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2669] "The Degree of Threat Index consists of 8 items examining frequency of various kinds of threat and 2 items examining exposure to casualties."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2670] "There are two versions of this questionnaire; Questionnaire 1 consists of 50 items, and Questionnaire 2 consists of the same 50 statements grouped into 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2671] "There are 32 items regarding perception of world countries and European countries. There are 34 items regarding perception of CIS countries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2672] "The Service Satisfaction Scale consists of two forms: Youth (5 items) and Caregiver (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2673] "The Pre-Listening Visits Training Survey consists of 30 items regarding the following topics: home visitors’ demographics (6 items), occupation, mental health-related training, and home-visiting experience (11 items), as well as their views toward implementing Listening Visits (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2674] "The Identity Shift Measure consists of 12 items over 4 subscales: Affiliation (2 items); Self-regard (3 items); Meaning (3 items); and Agency (2 items). The final 2 items assess time perspective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2675] "The Connor-Davidson Resilience Scale - 2-Item Abbreviated Version consists of 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2676] "There are four total sections, with the first three sections being comprised of 69 items. The first section of the questionnaire had 27 questions on beliefs about the causes of schizophrenia. The second section had 20 questions on beliefs about the behaviour manifestations of schizophrenia. The third section had 22 questions that regard beliefs about the treatment of schizophrenia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2677] "The Tempest Self-Regulation Questionnaire for Eating consists of 24 items, measuring 6-regulation strategies each with 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2678] "The Test Anxiety Inventory--Greek Version consists of 20 items. A shorter version of the TAI was proposed consisting of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2679] "This 17-item questionnaire included 3 subscales: (a) therapeutic alliance (6 items), (b) satisfaction with services (8 items), and (c) participation in treatment (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2680] "This measure includes 183 items covering seven specific domains of obsessive-compulsive disorder (OCD): Childhood and Adolescence Experiences (23 items), Doubt (13 items), Hypercontrol (55 items), Attitudes Towards Time (9 items), Perfectionism (18 items), Repetition and Automation (12 items), and Specific Themes (53 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2681] "The Expatriate Job Embeddedness Scale--Adapted consisted of 21 items across 2 subscales of 12 and 9 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2682] "The Referee Self-Efficacy Scale consists of 13 items over 4 subscales: Game knowledge (3 items); Decision making (3 items); Pressure, (3 items) and Communication (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2683] "The Daily Performance Tasks Measure consists of Sorting Utensils (45 items), Sorting Laundry (13 items), and Organizing Invoices (45 items). The Shopping List Task consists of two lists: First List (25 items) and Second List (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2684] "This measure consisted of 12 items divided into two dimensions: Active (5 items) and Passive (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2685] "The 11-item Ethnic-Racial Socialization Practices Measure consisted of two scales: Cultural socialization (5 items) and Preparation for bias (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2686] "The Pediatric Patients' and Parents' Illness Appraisals Scale were two scales, and each consisted of 7 items. There was one 7-item measure for parents and a separate 7-item measure for patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2687] "There are 21 items in the presurvey and 28 items in the postsurvey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2688] "The pre-implementation checklist contains 10 items and the post-implementation checklist contains 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2689] "This 8-item measure consists of two subscales of 4 items each: Maths and Chinese."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2690] "The Stressful Life Events Schedule consists of 77 items for the parent and adolescent version, and 61 items for the child version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2691] "The Fears of Compassion Scales consisted of 38 items from three scales: (1) fear of compassion for others (10 items), (2) fears of receiving compassion (13 items), and (3) fears of compassion for self (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2692] "The 6-item Desire to Become Pregnant Questionnaire-Adapted contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2693] "The Northern Ireland Single Assessment Tool comprise 7 components: Contact Screening (21 items), Contact Assessment (10 items), Complex Assessment (20 items), Specialist Referral Form, the Specialist Assessment and Recommendations Form, a G.P. and Medical Practitioner’s Report and a Carer’s Support and Needs Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2694] "There were two sets of measures: A composite of externalizing behavior problems (7 items for parent-report and teacher-report versions) and a composite of learning behaviors (8-item parent-report; 6-item teacher-report)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2695] "The Spatial Strategy Questionnaire consists of 4 items: 3 items pertaining to a specific spatial strategies and one open-ended item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2696] "The ASA-27 questionnaire consists of 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2697] "The authors reported revised item counts for 3 of 4 of the adapted STQ's subscales. The DHQ went from 31 to 40 total items, the LEC from 37 to 31 items, and the coping mechanism check sheet from 20 to 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2698] "The Experience of Teaching and Learning Questionnaire--Modified Version contains 30 items: Students attitudes toward teaching-learning environment (19 items) and approaches to learning (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2699] "This measure contains 42 items, divided into three 14-item subscales: depression, anxiety, and stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2700] "Fairness judgments and unfairness judgments are each assessed with 3 items (6 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2701] "Twenty-seven items are used to assess food choice motives, 6 items are used to assess attitudes toward food, and 6 items are used to assess purchase intentions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2702] "This measure consists of 27 items across 8 composites: 1. Noncoercive Discipline (4 items), 2. Coercive Discipline (3 items), 3. Expressive Communication (4 items), 4. Attentive Communication (4 items), 5. Encouragement (3 items), 6. Clear Instruction (5 items), 7. Inappropriate Responses (2 items), and 8. Acceptance/Love (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2703] "In total, this measure consists of 34 items. The instrument is composed of three sections: (a) demographics (9 items); (b) training and education pertaining to twice-exceptionality (6 items); and (c) items designed to measure rehabilitation counselors' awareness, knowledge, and skills (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2704] "The Child Characteristics Questionnaire consists of 82 items: a 21-item Communication Scale, a 28-item Social Scale, and a 33-item Behavior Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2705] "The finalized 32-item protocol consists of two sections: a 13-item demographics portion and a 19-item open-ended portion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2706] "The measure consists of a total 20 items (10 items answered by parents and 10 items answered by their adult children)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2707] "The RTF consists of a total of 90 items: 36 items equally divided across 4 Eating Scenarios; 27 items equally divided across 3 Spending Scenarios; 27 items equally divided across 3 Cheating Scenarios. The RTF-Short Form consists of 54 items, with 18 items equally divided across 2 scenarios for each of the 3 dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2708] "The Satisfaction Outcomes for Therapy Over Skype Interviews consists of two interviews: Parents (6 items) and Adolescents (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2709] "This measure consists of 24 items comprising the following scales: Personal Self-Sufficiency (6 items), Community Self-Sufficiency (11 items), and Personal-Social Responsibility (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2710] "There are 6 items in the child-rated version and 8 items in the parent-rated version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2711] "This measure contains 28 items, divided into 4 subscales (7 items each): Death of Self, Dying of Self, Death of Others, and Dying of Others."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2712] "The CEIS was extended from the 30 items in four scales (scales 1 through 4 below) used in the original instrument to 54 items in eight scales as follows: 1) Implementation, 2) Staff, 3) Administration, 4) Climate, 5) Effectiveness, 6) Resources, 7) Support, and 8) Purposes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2713] "The index assessing investment in fantasy consists of 4 items, and the index assessing imaginative activities consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2714] "The BOCS consists of a 15-item Symptom Checklist, 3 items related to the DSM-5 category Obsessive-Compulsive Related Disorders, and a 6-item Severity Scale for obsessions and compulsions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2715] "The Needs Assessment for Job Hunter’s Guide consists of 95 items over 14 factors: Job Hunting (45 items); Occupational Information, Materials & Services (26 items); Person's Relationship to Work/Career (21 items); Government Agencies/Training (14 items); Self-Assessment & Career Decision Making (9 items); Educational & Other Training Related Information (11 items); Unemployment (7 items); Job Differences (10 items); Seasonal & Others (8 items); Relationship of Training to Employment (4 items); Resumes (4 items); Military & Natural Environment (3 items); Occupational Availability & Trends (2 items); and Appearance (3 items)."                                                                                                                                                                                                                 
## [2716] "The WPQei consists of 84 items over 7 subscales: Innovation (11 items); Self-Awareness (12 items); Intuition (12 items); Emotions (11 items); Motivation (12 items); Empathy (14 items); and Social Skills (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2717] "The Intergroup Contact Measure consists of a total of 14 items: Self-Report (7 items) and Observer Ratings (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2718] "The final measure consists of 28 items across the following four scales: Vocational Self-Efficacy (9 items), Perceived Structure of Opportunity (8 items), Perceived Social Support (5 items), and Valence of Occupation (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2719] "For the physical environment quality scale, 19 items comprising 6 items each under ambient condition and tangibles, and 7 items under social factor were retained. Similarly, retained items for interaction quality included 17 under attitude and behavior, 8 under expertise, and 7 under process quality. Lastly, retained items under waiting time, patient satisfaction, patient loyalty, and image were 5, 8, 8, and 5, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2720] "These batteries are comprised of a total of 55 items (treatment group version) or 46 items (comparison group version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2721] "The HPLP consists of 48 items over 6 factors: Self-Actualization (13 items); Health Responsibility (10 items); Exercise (5 items); Nutrition (6 items); Interpersonal Support (7 items); and Stress Management (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2722] "The SASCI consists of 30 items over 5 factors: Career Development Self-efficacy (6 items), Career versus Sport Identity (9 items), Locus of Control (4 items), Barriers to Career Development (6 items), and Sport to Work Relationship (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2723] "This measure contains 9 items, divided into the Stereotype Scale (5 items) and the Group Position Scale (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2724] "The Self-Efficacy Expectations for Osteoporosis Scale contains 16 items. The Outcome Expectations for Osteoporosis Scale contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2725] "Participants rate 93 items assessing work preferences (43 items), life values (27 items), and personal views (23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2726] "The 5-item Facial Features Picture Chart and Rating Scale consists of 3 items regarding facial features and 2 items regarding hair."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2727] "This measure consists of 10 items measuring the dimensions of affection (4 items), connection (3 items), and passion (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2728] "The attributes portion of the measure consists of 9 primary items (23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2729] "The Value of Children Scale--21-Item Version has 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2730] "The Stigma Inventory consists of 15 items: 4 items assess dangerousness, 3 items assess controllability, 2 items assess affective responses, and 6 items assess social distance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2731] "The 15-item Stigma Questionnaire consists of 15 items, 12 total items and 3 alternate items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2732] "The Organizational Citizenship Behavior Scale-55 Items contains 55 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2733] "This measure consists of 10 items and two subscales: positive affect (5 items) and negative affect (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2734] "This is a 10-item scale (positive [5 items] and negative [5 items] affect)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2735] "This measure contains 23 items for frequency and 25 items for stress appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2736] "The RASP consists of 22 items over 5 factors: General Partner Support (8 items); Emotional Support from HCPs (4 items); Anxiety in the Context of HCPs (4 items); Pain Behaviors in Context of Partner (3 items); and Distraction by the Partner (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2737] "The Black Student Stress Inventory—Modified 50 Item Version consists of 50 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2738] "The 24-Item Multiple Choice Test contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2739] "This measure consists of 15 items, with 5 items assessing each of the following: knowledge, attitudes, and practices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2740] "The Masculinity scale consists of 5 items and the Femininity scale consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2741] "The Self-Efficacy Questionnaire for Chinese Family Caregivers consists of 35 items over 5 domains: Gathering information about symptoms, treatment and health care (4 items); Obtaining support (10 items); Responding to behavior disturbances (7 items); Managing distress associated with caregiving (9 items); and Managing household, personal, and medical care (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2742] "The Bipolar II Syndrome Checklist consists of 44 items. The revised version of the measure consists of 38 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2743] "This measure consists of 36 items. The same 12 items are applied to three HIV antibody statuses (HIV-negative, HIV-positive, or HIV status unknown)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2744] "The ASCI consists the following: 12 items assess background variables; 7 items assess attitudes toward school sciences; 7 items assess attitudes toward societal implications of science; 5 items assess attitudes toward scientists; 5 items assess attitudes toward a career in science; 6 items assess attitudes toward the urgency of climate change; 8 items assess pro-environmental behavior; and 12 items making up a climate-change knowledge test."                                                                                                                                                                                                                                                                                                                                                                                                            
## [2745] "The Shared Learning Cognitive Ability Tests contains a total of 123 items: Verbal Reasoning (48 items), Numerical Reasoning (35 items) and Abstract Reasoning (40 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2746] "The Career Indecision Profile-65—South Korean Version consisted of 65 items, which were reduced to 52 items for the CIP-52—South Korean Version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2747] "The final emotions scales are comprised of 9 items and distinguish between positive (5 items) and negative emotions (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2748] "Injunctive norms and descriptive norms are each measured with 1 item (2 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2749] "The 55-item chain analysis and a 41-item validation strategies knowledge tests include a combination of multiple choice and matching questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2750] "The revised scale has three parts: Part 1 consists of 45 items; Part 2 consists of 19 HIV-related symptoms that do not cluster into factor scores but can be of interest from a clinical perspective; and Part 3 consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2751] "The Accommodation and Assimilation Scales contain 20 items: Accommodation (10 items) and Assimilation (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2752] "The Dutch MRSS consists of 15 items over 4 factors: stimulation (4 items), pleasure of smoking (4 items), social smoking (4 items); and automatism of smoking (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2753] "The DSIU scales consists of 24 items, with 3 items over each of 8 scales: Generalized Anxiety Disorder, Social Anxiety Disorder; Obsessive-Compulsive Disorder; Health Anxiety; Posttraumatic Stress Disorder, Panic Disorder; Specific Phobia, and Major Depressive Disorder."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2754] "The Therapeutic Alliance Scales for Children consists of two scales: Child (8 items) and Therapist (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2755] "There are a total of 6 items. Each scale contains 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2756] "This measure contains 13 items, divided into 3 sections: Symptom Severity Scale (7 items), Functional Impairment Scale (4 items), and Visual Analog Scale (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2757] "The opinion section of the Parental Feasibility Questionnaire consists of 16 items over 4 factors: Benefits (4 items); Barriers (2 items); Environment (6 items); and Use (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2758] "This measure contains 18 items, divided into two subscales: Adherence (10 items) and Competence (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2759] "The sentence-anagram task with pictures consists of 18 items, while the sentence-anagram task without pictures contains 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2760] "The English PIEL contains 17 items, while the Spanish PIEL contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2761] "The 37-item CSSI consists of two scales: culturally emphasized somatic complaints (18 items) and key cultural syndromes (19 items). The syndrome scale has five subscales: somatic-focused syndromes (10 items), agoraphobia/motion-sickness-type syndromes (2 items), emotion-focused syndrome (2 items), cognitive-deficit syndrome (1 item), and spiritual-type syndromes (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2762] "There is an 18-item version of the scale and a 7-item version of the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2763] "This measure consists of 44 items, divided into the following subscales: Hostile View of People (18 items), Commitment to Conventional Norms (10 items), and Discounting the Future (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2764] "This measure consists of 28 items distributed into five sections: self-perceived voice problem (1 question); job section (4 questions); daily communication (12 questions); social communication (4 questions); and emotion (7 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2765] "The CSSERE consists of 19 items over 7 factors: planning (5 items); self-distraction (3 items); self-blame (2 items); religion (2 items); positive reframing (2 items); behavioral disengagement (2 items); and denial (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2766] "The 17-item meta-cognitive beliefs scale comprises four subscales: positive meta-cognitive beliefs about stress (6 items), negative meta-cognitive beliefs about stress (2 items), negative meta-cognitive beliefs about positive emotions (7 items), and positive meta-cognitive beliefs about positive emotions (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2767] "This is a 4-item scale, with 2 items assessing self-monitoring and 2 items assessing self-evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2768] "The final 83-item EMBU was established with 81 questions grouped into 15 subscales and two additional questions referring to consistency and strictness of parental rearing behavior to be answered for the father and mother separately."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2769] "This measure consists of 31 items. The BAS is measured by eight items, the BIS by 11 items and the FFFS by 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2770] "The Spanish BES-SR contains 18 items, while the Spanish BES-PR contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2771] "This measure contains 60 items, divided into the following 10-item subscales: Realistic, Investigative, Artistic, Social, Enterprising, and Conventional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2772] "The Brief Mosher Sex-Guilt Scale--10 Items contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2773] "This measure contains 94 items, divided into 4 sections: defining recovery (19 items), factors that help recovery (43 items), factors that hinder recovery (11 items), and factors that show someone is recovering (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2774] "The productivity task consists of 12 items; the spelling task includes 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2775] "The measure consists of 18 questions about psychological symptoms, 18 questions about physical symptoms, and 15 strategies that may be used to reduce PMS symptoms. The total score could range from 0 to 51. The second part included eight items related to how men deal with PMS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2776] "The original version consists of 30 items and the revised version consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2777] "The UCCS consists of 21 items, 5 assessing demographics and 4 items each assessing Indecision, Anxiety, Uncertainty, and Insecurity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2778] "The \"Pharmacists’ Care of Recurrent Headache Sufferers Surveys\" contain 14-items Patient surveys and 16-item Pharmacist surveys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2779] "There are 60 items, including 13 demographic items and 47 items on patient education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2780] "This instrument consists of 16 items. A later version consisted of 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2781] "The BSS-12 consists of 12 items, with 4 items assessing each of 3 factors: Temperance, Intellectual, and Interpersonal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2782] "There are 9 items. The Affection scale contains 4 items. The Psychological Control scale contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2783] "The R-GHRSC consists of 25 items, with 5 items for each of 5 factors: Health-Protective Dispositions ; Health-Protective Motivation; Vulnerability; Health-Risky Habits; and Extrinsic-Avoidant Motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2784] "The SORTS consists of 14 questions with a total of 28 items, 14 assessing frequency and 14 assessing intensity of accommodation behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2785] "The Cyber Bullying Behaviors and Victimization Experiences Measure contains 8 total items (4 items related to cyber bullying; 4 items related to cyber victimization)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2786] "This measure contains 88 items, divided into 3 subscales: attitude scale (33 items), knowledge scale (21 items), and skills scale (34 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2787] "This measure consists of 8 items, with 2 items for each of 4 vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2788] "For this 10-item scale, an initial item is presented along with three scales each comprising 3 items: Consultant role self-efficacy, Counselor role self-efficacy, and Teacher role self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2789] "This measure consists of 14 items assessing Attitudes (8 items), Subjective norms (1 item), Perceived behavioral control (3 items), and Intentions (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2790] "The client version of the Attitudes Toward Recovery Survey contains 25 items. The staff version of the survey contains 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2791] "The full form of the RAS-G consists of 14 items. There is also a short form with 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2792] "This measure consists of 33 items comprising 3 subscales: Physical and Emotional Distress (6 items), Depressive Symptoms (14 items), and Social Concerns (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2793] "This 32-item measure consists of four 8-item subscales (ADHD Symptom, Emotional Control, Conduct Problems, and Social Functioning)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2794] "The Early School Behavior Rating Scale -- Chinese Version contains 16 items for the mother report and 14 items for the teacher report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2795] "The Inventory consists of 45 items, with 15 items each assessing Commitment to Spouse, Commitment to Marriage, and Feelings of Entrapment, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2796] "This measure consists of 29 items distributed as follows: Motivation for Donation (3 items), Knowledge about donation (2 items), Relationship with the recipient (1 item), Support available to the donor (2 items), Feelings About Donation (5 items), Postdonation Expectations (3 items), Stability in Life (6 items), Psychiatric Issues (3 items), and Alcohol and Substance Use (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2797] "The finalized modified RUQ for T1DM (mRUQ-T1DM) contained 25 items reflecting Direct (5 items) and Nondirect (3 items) health care, Patient/family time (8 items), and Patient/family productivity (9 items) costs using a 3-month recall."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2798] "The Customer Acquisition Measure contains 16 items. The Customer Retention Orientations Measure contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2799] "The Peer Observed Interaction and Structured Evaluation Questionnaire consists of 18 items for peer observed interaction and 29 items for structured evaluation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2800] "The written portion of the Perceptions of the Violence Against Women Act of 1994 Questionnaire has 31 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2801] "The 4-item ARS includes 2 items assessing Antecedent-focused regulation and 2 items assessing Response-focused regulation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2802] "The 27 items constituted three scales measuring the degree of the therapists' belief in the efficacy of each therapeutic orientation: Cognitive–behavioral (7 items), Psychodynamic (10 items), and Ecosystemic (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2803] "The Gendered Behavior Scale contains 54 items. 12 items are part of two different sub-scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2804] "The M-C 1(10) and M-C 2(10) each contain 10 items; the M-C (20) contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2805] "This measure contains 21 items, divided into the following subscales: Transracial adoption practice (12 items), Transracially adoptive parenting (4 items), and Transracially adoptive children's ethnic identity (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2806] "This measure contains 42 items, divided into five core dimensions: Self-awareness (7 items), Social awareness (7 items), Self-control and management (8 items), Relationship skills (10 items), and Social skills (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2807] "The Green Purchase Behavior Questionnaire consists of 7 items assessing Speciousness, 7 items assessing Environmental Concern, and 11 items assessing Theory of Planned Behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2808] "This measure consists of 27 items, including a subset of 11 items assessing restrictive practices, 11 items assessing general clinical services, and 5 additional items assessing social desirability response biases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2809] "The ThQLHC contains 40-items (23 core items from the PedsQL and 17-items from an HIV-targeted scale developed for the ThQLHC)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2810] "This measure consists of 8 age-specific questionnaires developed for the ages of with 6 months (19 items), 12 months (22 items), 18 months (26 items), 24 months (26 items), 30 months (29 items), 36 months (31 items), 48 months (33 items), and 60 months (33 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2811] "The Situational Judgment Measure contains 30 items (2 items times 15 scenarios)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2812] "The questionnaire consists of 15 items for students and 20 items for counselors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2813] "This measure contains 24 items, divided into 2 section: Words in Print (12 items) and Print Concepts (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2814] "This is a 7-item measure. Voice was assessed with 2 items. Respect was measured using 2 items. Outcome favorability was measured with a single item. The process's impact on the victim's trust in the legal system and the process's impact on the victim's self-esteem were both measured using single items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2815] "The measure consists of 18 items over 5 subscales: Problem-Focused (4 items), Internalizing Coping (4 items), Support- Seeking (4 items), Avoidance (3 items), and Acting-Out (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2816] "This measure consists of 43 items, with 17 body-piercing questions and 18 tattoo items. An additional 8 items assess demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2817] "The Work Experience Inventory includes 49 items assessing quality of work experience and 49 items assessing quality of supervision received during work experience, as well as items on biographical information, employment history, and work style preferences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2818] "This measure consists of 40 items across eight 5-item subscales: Depression, Happiness, Jealousy, Anxiety, Anger, Calmness, Apathy, and Fear."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2819] "The final 40 items include 36 items focused on behavioral and emotional development, and 4 maternal distress items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2820] "The Cyberaggression Measure consists of two parts: Cyber-harassment (1 item with five scenarios) and Cyberbullying (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2821] "The complete Gay and Bisexual Men Sexual Behavior Questionnaire contains 112 questions. A 78-item version (excluding demographic items) was also administered."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2822] "The Nursing Students' Attitudes Toward Gay and Hemophiliac Men with AIDS Vignette Measure consists of two subscales: Patient judgment (9 items) and Social interaction (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2823] "The CCU Questionnaire consists of 9 items applied to nocturnal and to daytime sleep, for a total of 18 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2824] "This measure consists of a total of 38 items, but only 30 items are equally weighed and used to calculate a quality coefficient (QC) score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2825] "The UC Davis Department of Psychiatry Faculty Survey contains 10 items overall. Question 1 includes 29 items related to professional development skills, plus 1 open-ended item. Question 2 asks participants to rank the top 3 items from question 1. Questions 3-10 are demographic in nature."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2826] "The Quality of Communication Rating Scale contains 18 items (9 items in two scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2827] "This measure consists of 25 items comprising five scales (of 5 items each): Absenteeism, Presenteeism, Work Engagement, Life Satisfaction, and Workplace Distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2828] "The MRP consists of a total of 34 items. The Reading Survey portion comprises 20 items, and the Conversational Interview portion comprises 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2829] "The Wyoming Telehealth Trauma Satisfaction Scale—Student Therapist Version consists of 10 items and the Wyoming Telehealth Trauma Satisfaction Scale—Crisis Center Staff Version consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2830] "This measure consists of 19 items. Brand community commitment is measured using 4 items, Community promotion behavior is measured using 3 items, Attitudinal loyalty to the brands is assessed by 4 items, while Repurchase intention is measured using 3 items. Word of mouth is measured using 2 items, and finally User activity is assessed using 3 single-item measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2831] "This measure consists of 25 items distributed as follows: Perceived news entertainment (3 items), Perceived news informativeness (3 items), Interestingness dimension of attitude toward the news (4 items), Hedonic dimension of attitude toward the Facebook Fan Page (3 items), Utilitarian dimension of attitude toward the Facebook Fan Page (3 items), Intention to give information (2 items), Intention to obtain information (3 items), and Intention to pass information (4 items)."                                                                                                                                                                                                                                                                                                                                                                           
## [2832] "This measure consists of 25 items distributed as follows: Performance Expectancy (4 items), Effort Expectancy (4 items), Use Intention (2 items), Usage (2 items), Perceived Enjoyment (4 items), Autonomy (4 items), Relatedness (3 items), and Competence (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2833] "The following scales were included in this 23-item measure: Hedonic shopping value - 6 items, Utilitarian shopping value - 4 items, Overall shopping satisfaction - 4 items, Destination repatronage intentions - 4 items, Destination word-of-mouth - 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2834] "The Student Engagement in Schools Questionnaire composite consists of 33 items. The full SESQ consists of 109 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2835] "There are a total of 10 items. Five items are used to assess dating violence victimization and 5 items are used to assess dating violence perpetration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2836] "This questionnaire consists of two parts. Part 1 is comprised of 11 items assessing demographic characteristics. Part 2 is comprised of 3 items (2 of which have several sub-items, for a total of 16 items) assessing patient satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2837] "The 5-item SISR is a two-part scale, with the single-item SISR-A and the 4-item SISR-B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2838] "This measure consists of 12 items. Intrinsic motivation, Creative performance, Emotional irritation, and Musculoskeletal pain are each measured by 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2839] "There is a 50-item version of this measure with 14 subscales, as well as a 44-item abbreviated version with 12 subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2840] "The Resistance to Peer Pressure Measure--20 Item Version contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2841] "This measure consists of 67 items distributed as follows: Vātaja (23 items), Pittaja (23 items), Kaphaja (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2842] "The Farage Quality of Life Measure consists of a total of 30 items: 27-item FQoL™ and a 3-item Menstrual Module."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2843] "The youth version consists of 24 items, while the parent version is comprised of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2844] "The Church/State Scale consists of a total of 14 items (4 in the Interest in Ideology subscale and 10 in the Support for the Ideology subscale), and the Immigration Scale consists of a total of 15 items (4 in the Interest in Ideology subscale and 11 in the Support for the Ideology subscale)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2845] "This measure consists of 16 items, with 8 items assessing Expectations and 8 items assessing Pressure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2846] "The BIAS-m contains 26 items. The BIAS-f contains 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2847] "The Three-Factor Eating Questionnaire--Revised 18-item Version contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2848] "This 63-item measure is comprised of 7 scales, each consisting of 9 items. Scales assess the following domains: Interpersonal Conflicts, Idealization-Disillusionment, Abandonment Concerns, Identity Impairment, Susceptibility to Influence, Affect Dysregulation, and Tension Reduction Activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2849] "The scale consists of five attributes and 14 items. The five attributes are as follows: Relative advantage (2 items), Economic advantage (2 items), Compatibility (4 items), Observability (4 items), and Divisibility (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2850] "This measure consists of 16 items comprising two 8-item subscales: Caregiver concerns (CC) and Quality of life (QoL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2851] "The Internet Safety Questionnaire for Parents and School Faculty contains 24 items for the parent questionnaire and 22 items for the school faculty questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2852] "The Food Cravings Questionnaire-Trait—reduced—Italian Version is comprised of 15 items from the original 39-item Food Cravings Questionnaire-Trait."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2853] "The Teacher-Rated Children’s Attention and Impulse Control Questionnaire is comprised of a 7-item factor from a larger 25-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2854] "This measure consists of 15 items (three 5-item scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2855] "The final version of the PPAQ included seven measures (33 items). The PPAQ measures frequency and duration of Episodes (2 items), Symptoms (19 items), Impact on daily activities (Impact on Life Scale, 10 items), and Restricted activity days (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2856] "The TSRQ-H consists of 15 items distributed across two factors. The PCDS-H consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2857] "There are a total of 18 items. The Knowledge Sharing scale consists of 6 items, the Procedural Justice scale consists of 5 items, the Motivation scale consists of 3 items, and the Promotion scale consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2858] "The version of the test for educated elderly respondents consists of 5 items. The version of test for uneducated elderly respondents consists of 6 items. Some of the items have multiple parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2859] "There are 31 items: 29 items across 5 domains, 1 item for overall quality of life, and 1 item for general health perception."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2860] "There are two versions of this instrument, one comprising 37 items and one comprising 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2861] "The Healthy Belief Index contains of 8 items. The Healthy Behavior Index contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2862] "This measure has 12 items, with 3 items in each scale (interpersonal audience reflection, group-directed audience reflection, interpersonal self-presentation goal and group-directed self-presentation goal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2863] "This measure consists of 39 items, with 13 social and health needs and 26 questions on attitudes toward research."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2864] "Part 1 contains 6 questions related to demographic information. Part 2 contains 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2865] "Each subscale (Parent and Teacher) consists of 2 items giving a total of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2866] "This measure consists of 29 items and the following scales: Trust (8 items), Transactive memory systems (15 items), and Team psychological safety (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2867] "The Personal Outcomes Scale--Portuguese Version is divided into 2 parts. The self-report part consists of 29 items. The report of others part consists of 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2868] "The Costs of Discrimination Assessment contains 35 items across four domains: Employment (12 items), Financial/housing (5 items), Healthcare (12 items), and Participation and social/leisure activities (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2869] "This 10-item measure consists of two 5-item scales: Learning and Vitality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2870] "The Women’s Mate Preference Questionnaire consists of 21 items. There is also a shorter 12-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2871] "The Hill Interaction Matrix includes 3 sections: HIM-A (64 items), HIM-B (64 items), and HIM-G (72 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2872] "The Learning Self-Regulation Questionnaire has 13 items, and the Interviewing Competence Scale has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2873] "The PI scale consists of 8 items and the PVF scale consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2874] "The QuIRC contains 88 questions (145 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2875] "The Questionnaire has a 49-item version and an 11-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2876] "This 36-item questionnaire consists of eight scales: Physical functioning (6 items), Emotional functioning (5 items), Social functioning (4 items), Cognitive functioning (5 items), Communication (3 items), Worry (5 items), Daily activities (3 items) and Family relationships (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2877] "The Me as a Parent Questionnaire has 16 items (4 items in each subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2878] "The measure has 41 items with five domains: Pain (5 items), Physical function (17 items), Social function (7 items), General health perception (3 items) and Mental function (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2879] "The Örebro Musculoskeletal Pain Screening Questionnaire--Brazilian-Portuguese Version consists of 25 items. The short form consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2880] "The Nursing Older People—Competence Evaluation Tool has 65 items, many of which contain sub-items, for 346 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2881] "The Consumer Cynicism Scale--8 Items contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2882] "This is a 20-item measure. Though the factors were comprised of 17 of the original 20 items, the authors recommended that service providers who were interested to know about caregivers’ needs for the remaining 3 items could still retain them in the questionnaire, but these items should not be included in subsequent analyses involving the total scale or subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2883] "The V-Scale-16 Items contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2884] "There are three different versions of the Exchange-Orientation Scale--Revised Exchange Scales: a 21-item version for wives (E-W), a 19-item for husbands or wives (E-HW), and a 16-item shorter version for husbands or wives (E-SHW)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2885] "The long version of the Copenhagen Psychosocial Questionnaire has 141 items, the medium version has 95 items, and the short version has 44 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2886] "The Peer Relationships in Counseling Psychology Training Interview Protocol consists of 24 questions: Part 1-11 items and Part 2-13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2887] "The Patient Questionnaire About Urgent Care consists of a 15-item Patient survey and 8-item Doctor survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2888] "This questionnaire consists of 33 items after 6 items were dropped due to low item loadings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2889] "The English Effort Measure contains a 3-item self-report and a 2-item peer report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2890] "The Social Effort Inventories self-report version has 4 items and the peer-report version has 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2891] "The Rehabilitation Counselor Scale consists of 38-item Female and 41-item Male versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2892] "The Eyberg Child Behavior Inventory--Swedish Version has two versions, one with 36 items and the other with 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2893] "These measures are comprised of a total of 11 items (5 items assessing math knowledge and skills and 6 items assessing math self-efficacy)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2894] "Intent to Pursue Sales Career Scale has 26-item version and a 13-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2895] "The Love of Money Scale-30-items has 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2896] "The Love of Money Scale--17-Items contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2897] "This 49-item measure consists of eight scales (Behavior [7 items], Attitudes [5 items], Subjective norms [3 items], Descriptive norms [1 item], Perceived behavioral control [4 items], Intention [9 items], Justifications [9 items], and Social Desirability [11 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2898] "There were ten constructs included in this 33-item questionnaire: Masculinity/femininity (4 items), Individualism/collectivism (3 items), Power distance (3 items), Uncertainty avoidance (3 items), High-context/low-context culture (4 items), Perceived usefulness (4 items), Perceived ease of use (4 items), Subjective norms (3 items), Perceived information security (3 items), and Behavioral intention (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2899] "The 15 subtests (of 5 items each) comprising this 75-item measure are as follows: Fine Shape Discrimination; Shape Ratio Discrimination (Efron); Dot Lattices; RFP Fragmented Outline; RFP Contour Integration; RFP Texture Surfaces; Global Motion Detection; Kinetic Object Segmentation; Biological Motion; Dot Counting; Figure–Ground Segmentation; Embedded Figure Detection; Recognition of Missing Part; Recognition of Objects in Isolation; and Recognition of Objects in a Scene."                                                                                                                                                                                                                                                                                                                                                                            
## [2900] "The Basic Empathy Scale--Portuguese Version contains 20 items. The BES-Adapted contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2901] "Participants evaluate 13 instrumental attributes of electric cars, reflecting instrumental costs (7 items) and benefits (6 items) of the use and ownership of an electric car."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2902] "Classroom structure was measured with 18 items assessing the three subscales of Task (6 items), Authority (8 items), and Evaluation/recognition (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2903] "The 110-item ABS‑NC included the following subscales: Household Abilities (21 items), Community Abilities (24 items), Social Abilities (19 items), Language Abilities (20 items), Personal Care Abilities (16 items), and Health and Safety Abilities (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2904] "This measure consists of 4 items assessing descriptive norms (2 items) and subjective norms (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2905] "Older mentees respond to 13 items, while younger mentees answer 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2906] "This measure consists of 17 items assessing the following scales: Service performance (3 items), Service support (3 items), Personal interaction (3 items), Relationship value (3 items), and Customer orientation (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2907] "The content of this 32-item questionnaire comprised two sections: the first section (7 items) was the respondents’ personal information and the second section encompassed the 25 HBM items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2908] "This 46-item measure consists of the following variables: Relational aggression (2 items), Academic failure (2 items), Low school commitment (7 items), Traditional bullying victimization (1 item), Traditional bullying perpetration (1 item), Emotional control (4 items), Belief in the moral order (4 items), Poor family management (9 items), Family conflict (3 items), Family attachment (4 items), Interaction with antisocial friends (8 items), and School suspension (1 item)."                                                                                                                                                                                                                                                                                                                                                                             
## [2909] "There are a total of 11 items. Four items address Homework Compliance, 3 items address Homework Persistence, and 4 items address Homework Seasonal Efforts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2910] "This 44-item questionnaire consists of two sections: the first section contains items pertaining to different moral duties (35 items), the second contains questions pertaining to the teachers’ background variables (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2911] "The Gambling Questionnaire--Telephone Version has 35 items and the Gambling Questionnaire--Online Version has 60 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2912] "The Child Psychological Functioning Battery contains 48 items for the child-report and 30 items for the parent report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2913] "The Child Sexual Abuse Attitude and Belief Scale has 40 items with 36 items distributed across four subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2914] "The Empowerment Measure consists of an 11-item child version and 16-item seniors' version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2915] "The 7-item seniors’ questionnaire included four subscales: (a) Knowledge contribution (one item); (b) Learning skills (two items); (c) Children’s knowledge contribution (three items); and (d) Children’s teaching skills (one item). The 10-item children’s questionnaire included five subscales: (a) Teaching skills (one item); (b) Knowledge contribution (one item); Seniors’ teaching skills (one item); Seniors’ learning skills (four items); and Seniors’ knowledge contribution (three items)."                                                                                                                                                                                                                                                                                                                                                              
## [2916] "This 11-item measure consists of the following subscales: Relationship Satisfaction (4 items), Communication (3 items), and Intimacy (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2917] "This measure consists of 10 items (6-item Physical functioning and 4-item Social-emotional subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2918] "The Gift Appreciation Measure contains 8 items (Study 1, 3, and 4) and 3 items (Study 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2919] "This measure consists of 40 items and the following four 10-item subtests: Alphabetical knowledge, Print awareness, Phonological awareness, and Vocabulary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2920] "The Emergency Knowledge (EKS; 7 items), Emotional Distress (EDS; 5 items) and Perceived Threat (PTS; 2 items) scales consist of a total of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2921] "This 10-item measure is comprised of two 5-item domains of youth health engagement: Health access literacy and Health self-efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2922] "This measure consists of 19 items divided between the 6-item and 13-item first and second sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2923] "The Fear Beliefs Questionnaire--Computerized Version has two versions, a 21-item and a 14-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2924] "The parent version consists of 14 items and the provider version consists of 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2925] "Version 1 of the Online Graduate Mentoring Scale has 55 items, and Version 2 has 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2926] "The Potentially Traumatic Experiences Questionnaire--Closed Ended consists of 26 items and the Potentially Traumatic Experiences Questionnaire--Open Ended consists of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2927] "This scale had 14 items addressing feelings relating to childbirth, both fears (7 items) and their absence (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2928] "This measure consists of 9 items and the following scales: the General Practice subscale (3 items) and the PCMHI Practice subscale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2929] "Among the 76 items comprising the measure, 5 of the items are example items and 71 are items that comprise scores. The four subtests include (a) Induction (25 items), (b) Deduction (24 items), (c) Observation and Credibility (24 items), and (d) Assumptions (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2930] "The Global Support From Mother Figure Postpartum Scale--Adapted contains 12 items across two scales: Adolescents (6 items) and Mother Figures (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2931] "This 32-item measure consists of four 8-item subscales (Death of self, Dying of self, Death of others, Dying of others)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2932] "Analyses of the 49 items called for the removal of 4 items, bringing the total item count to 45 items. Further analyses identified a total of 7 items had low correlations with the total score, so 3 additional were removed for the version administered to the high-functioning group."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2933] "The Old-fashioned Prejudiced Attitudes toward Aboriginals Scale has 11 items and the Modern Prejudiced Attitudes toward Aboriginals Scale has 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2934] "The Anticipation of Incivilities Measure contains a total of 14 items: 13 items measure social and physical incivilities and 1 item assess anticipation of incivilities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2935] "This 14-item measure consists of the 9-item Internalization-General subscale (IG) and the 5-item Internalization-Athlete subscale (IA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2936] "The Checklist includes 66 items grouped into 10 subscales: Emergency preparedness (10 items), Medication (1 item), Facilities (8 items), Infant/toddler sleep (2 items), Indoor and outdoor equipment (18 items), Staff health (1 item), Hand-washing routines (6 items), Diapering (7 items), Food preparation and eating (12 items), and Supervision (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2937] "Just as the original version, the MQOL-Persian consisted of 16 items and five subscales (Physical symptoms, 3 questions; Physical well-being, 1 question; Psychological symptoms, 4 questions; Existential well-being, 6 questions; and Support, 2 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2938] "The Stigma Scale for Chronic Illnesses--8-Item Version contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2939] "The Pornography Consumption Questionnaire has 139 items for males and 141 items for females."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2940] "The measure has 3 parts: the HASS-Demo which asks demographic information along with 10 items, the HASS-I which has 21 items, and the HASS-II has 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2941] "The Support for Intervention Measure has 2 versions, one with 4 item pairs and one with 2 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2942] "This measure consists of 9 items. The same 9 items are used to assess attitudes about one's own drinking, as well as perceived norms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2943] "The PCCQ is comprised of 41 items. The authors note that if time is a constraint, then the 27-item version still provides considerable information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2944] "The 10 items are divided into the following subscales: Functional (5 items), Physical (3 items), and Emotional (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2945] "The Blatant Dehumanization Measure--Animalistic and Mechanistic has 8 items for which results are reported, but17 items in total."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2946] "The adapted YARPET consisted of 30 items to measure 10 subscales (each with 3 items): Emotional Resilience, Goal Setting, Healthy Risk-taking, Locus of Control, Self-Awareness, Self-Esteem, Self-Confidence, Communication Skills, Community Engagement, and Cooperative Teamwork."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2947] "The 25-Item Sky Spirituality Scale has 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2948] "This 14-item questionnaire consists of the following measures: Enjoyment (3 items), Attention (1 item), Effectiveness (1 item), Usefulness (2 items, Comprehension (4 items), Ease of use (1 item), Feedback (1 item), and Sense of control (1 item). The questionnaire for the Safety Card approach does not include the two questions on Feedback and Sense of control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2949] "This measure comprises 29 items divided into 6 scales: leisure (5 items), dependence/daily life (5 items), negative emotions (6 items), physical health (5 items), worried about ulcers/feet (4 items), and bothered by ulcer care (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2950] "This measure consists of 88 items and eight subscales: Muscle stiffness (12 items), Pain and discomfort (9 items), Muscle spasms (14 items), Activities of daily life (11 items), Walking (10 items), Body movement (11 items), Emotional health (13 items), and Social functioning (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2951] "The 25-item Florida Obsessive-Compulsive Inventory (FOCI) has two scales: a 20-item Symptom Checklist and a 5-item Symptom Severity scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2952] "Coders rate each online comedic television clip on 29 items, and each instance of disparagement humor on 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2953] "Each cued recall test (CCR and ICR) includes 64 items composed of 4 items from each of 16 different familiar categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2954] "The measure consists of 16 items, with 4 items distributed across each of the four factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2955] "This 8-item questionnaire consists of two 4-item subscales: Avoidance and Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2956] "This 9-item measure consists of the following scales: User Capability to Navigate SL (3 questions) and Self-Efficacy of SL Skills (6 questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2957] "This 14-item measure is comprised of two 7-item scales: Authentic and Hubristic pride."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2958] "The 43-item final version of the questionnaire was divided into three parts: (1) respondents’ background information (11 items altogether), (2) respondents’ experiences as curriculum developers and curriculum users (20 items) and (3) respondents’ perceptions of optimal curriculum solutions (12 items altogether)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2959] "This 10-item measure consists of two 5-item subscales: Peer groups and Communication media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2960] "The Case Manager version of the Dutch FEQ contains 16 items. The Parent Counselor version of the Dutch FEQ contains 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2961] "The instrument includes 15 items and consists of five subscales: Effort (4 items), Expectancies (2 items), Importance (3 items), Interest (3 items), and Test Anxiety (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2962] "The measure consists of 40 safety items and 16 appearance items for the kitchen (56 items), 37 safety items and 16 appearance items for the bathroom (53 items, 40 safety items and 14 appearance items for the bedroom (54 items), and 40 safety items and 14 appearance items for the family room (54 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2963] "There are two versions of this measure--a 92-item version for older students and a 62-item version for younger age groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2964] "This measure consists of 20 items and two 10-item scales: Assimilation and Accommodation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2965] "While the original Transactive Memory Scale-French Version had 15 items, the French version suggested 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2966] "The Professional PCATool has 77 questions, the Adult PCATool has 88 questions, and the Child PCATool has 53 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2967] "The Hispanic Stress Inventory Version 2 (HSI2) Immigrant Version consists of 90 items and the HSI2 U.S.-Born Version consists of 53 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2968] "A total of 14 items are divided into two 7-item scales: Cognitive job demands and Emotional job demands."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2969] "This measure consists of 20 items comprising five 4-item scales: Self-presence, Identification, Enjoyment, Exergame Intention, and Exercise Intention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2970] "The LTQ contains a total of 102 items. A subset of 25 items were considered of particular relevance for the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2971] "Most items used in the Educator (39 items) and Parent (21 items) surveys are very similar or the same."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2972] "The SCIA includes 18 6-item testlets, (108 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2973] "In this 25-item measure, the first component includes 16 items, while the second component consists of 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2974] "This measure consists of 36 items assessing childhood victimization across a variety of domains, including Property crimes (4 items), Physical assaults (11 items), Verbal assaults (2 items), Sexual abuse (7 items), Neglect (5 items), and Witnessed/indirect violence exposure (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2975] "The following constructs are included in this 24-item scale: Behavioral Intention to Use (BIU; 5 items), Attitude Towards Use (ATU; 5 items), Perceived Usefulness (PU; 4 items) Social Influence (SI; 5 items), and Perceived Ease of Use (PEU; 5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2976] "This measure consists of 5 items assessing American Indian cultural identity (3 items) and White American cultural identity (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2977] "The long form of this measure consists of 33 items and the short form consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2978] "This 7-item measure consists of two scales: Violence (4 items) and Feminist (3 items) scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2979] "In this 13-item measure, 12 items assess Prototype favorability and a single item assesses Prototype similarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2980] "For the Supportive Coparenting Measure, the year 3 scale consisted of 6 items, the year 5 scale consisted of the full 8 items, and at year 9, the mother scale included all 8 items, however, the father scale only included 5 items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2981] "Across seven waves of data, the prosocial peer environment variable consisted of an average of 5 items and the antisocial peer environment variable consisted of an average of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2982] "This 22-item measure consists of the following factors: Level of stress over their appearance (3 items); Self-esteem (6 items); Aggression level (6 items); Low self-control (6 items); and Social skills (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2983] "The Child Anxiety Life Interference Scale--Portuguese Version consists of a total of 25 items across two versions: Parent (16 items) and Child (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2984] "The Patient Safety in Nursing Education Questionnaire (PaSNEQ) contains of total of 57 items, with the Clinical Setting domain having 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2985] "Mothers and fathers are asked to complete separate closed-ended questionnaires comprising 18 items and 34 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2986] "The Chronic Self-Destructiveness Scale--Persian Version contains 23 items for men and 19 items for females."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2987] "The Uncertainty About Aging Measure has 2 versions: 3 items for the New Zealand sample and 2 items for the United States sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2988] "This 12-item measure consists of four 3-item scales: Positive emotion, Engagement, Relationships, and Achievement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2989] "The Governor Questionnaire had 8 items in experiment 1 and 7 items in experiment 2."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2990] "The Situational Eight DIAMONDS Ultra-Brief Scales are 4 scales with 1 item each, for a total of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2991] "This 14-item scale consists of four measures of social influence: School attachment (4 items), Peer inhalant use (3 items), Perceived family caring (3 items), and Parental monitoring (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2992] "This 12-item test includes 10 items measuring Knowledge and 2 items measuring Confidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2993] "This 33-item measure consists of 6 items in the Treatment section and 27 items in the Reintegration section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2994] "The Utrecht Work Engagement Scale-17 contains 17 items. There is also a 9-item version of the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2995] "The Academic Self-regulatory Ease Scale has 2 versions, a 10 item and a 6 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2996] "This measure consists of 60 items and six 10-item subscales: Acceptance, Defusion, Self-as-context, Present moment, Values, and Commitment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2997] "This measure consists of 13 items comprising the following subscales: Schutte’s Self-Report Emotional Intelligence (SSREIS; 5 items), Wong and Law’s Emotional Intelligence Scale (WLEIS; 4 items), and Brackett’s Self-Report Emotional Intelligence Scale (BSREIS; 4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2998] "The mother's version of the Parents’ Postnatal Sense of Security Instrument Instrument is comprised of 18 items. The father's version of the Parents’ Postnatal Sense of Security Instrument is comprised of 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2999] "This measure consists of 91 items (nine background questions and 82 items comprising five subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3000] "The Science Inquiry Test is comprised of two measures: a 7-item open-ended inquiry test (O-inquiry) and a 24-item multiple-choice inquiry test (M-inquiry)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3001] "The School Experiences Questionnaire--Adapted consists of 9 items for children and 3 items for teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3002] "There are two versions of this measure: a 22-item long form and a 7-item short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3003] "The Feasibility Assessment Questionnaire has 2 versions: the cosmetologist version has 19 items and the costumer version has 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3004] "The 98-item D-IVA consisted of five sections: Questions concerning the domestic care situation (7 items); Questions concerning the informal help network (17 items); Questions concerning the utilization of formal services (43 items); Questions concerning a (24-hour) household assistant (11 items); Questions concerning the subjective evaluation of the care situation and socio-demographics (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3005] "The 66-item IEMSSQ is comprised of four separate measures: Exchanges Questionnaire (6 items), Global Measure of Sexual Satisfaction (1 item), Global Measure of Relationship Satisfaction (1 item), and Rewards/Costs Checklist (58 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3006] "Clinician reports and self-reports are given for incidents that occur with mothers (33 items) and fathers (29 items), separately."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3007] "The CRIES-Plus contains 25 items (13 items from the CRIES-13 and 12 additional items created for the CRIES-Plus)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3008] "The 26-item Revised Family Communication Patterns Scale--Adapted includes the 15-item Conversational subscale and the 11-item Conformity subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3009] "The PEP3 consists of 172 items combined to form 10 subtests. The Caregiver Report consists of 38 items combined into 3 subtests: problem behaviors, personal self-care, and adaptive behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3010] "This 10-item measure consists of five 2-item subscales: Extraversion, Agreeableness, Conscientiousness, Neuroticism, and Openness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3011] "The Adolescent Substance Treatment Engagement Questionnaire consists of two version: ASTEQ-Teen (29 items) and ASTEQ-Counselor (20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3012] "The Automatic Thoughts Questionnaire--14 items contains 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3013] "This measure consists of 19 items comprising 4 main items and 15 probing questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3014] "The Use of Dialectical Behavior Therapy in Music Therapy Questionnaire is comprised of 21 items or 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3015] "This 36-item questionnaire included the following: six questions related to socio-demographic characteristics; eight questions about students’ Internet usage; and 10 and 12 items, respectively, about physical and psychosocial behavioral problems aimed to assess the influence of Internet addiction on students’ daily life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3016] "The Irrational Food Beliefs Scale--Italian Version consists of 57 items. The irrational food beliefs subscale is comprised of 41 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3017] "This 18-item scale consists of the following subscales: Compatibility (3 items), Relative advantage (4 items), Complexity (4 items), Observability (4 items), and Trialability (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3018] "The POS consists of two almost identical measures, one of which is completed by staff (12 items), the other by patients (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3019] "The Paranoia Checklist—13 items has 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3020] "This 64-item measure consists of two 32-item sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3021] "The Long Form contains 18 items, while the Short Form contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3022] "The Narrative Assessment Protocol--Spanish Version contains 27 items. The Short Form--NAPS contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3023] "This 15-item scale consists of the 8-item Support for Fighting subscale and the 7-item Support for Nonviolent Responses subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3024] "The full CPOM contains 16 items; an abbreviated version contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3025] "The KFD contains 51 items (36 items on the screening inventory and 15 interview questions)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3026] "This measure consists of 70 items across comprising seven domains of functional impairment, including Family (8 items), Work (11 items), School (11 items), Life skills (12 items), Self-concept (5 items), Social (9 items), and Risk (14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3027] "This 6-item scale utilizes 2 items to assess each of the following constructs: Intrinsic, Extraneous and Germane load."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3028] "The Japanese TRS contains 19 items (whereas the original TRS contains 28 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3029] "This 20-item measure consists of the 8-item Individual Interest subscale and the 12-item Situational Interest subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3030] "There are two proposed versions of the OSI: an elaborate version with 28 scales and 188 items, and an abridged version with 15 scales and 94 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3031] "This measure consists of 24 items comprising eight 3-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3032] "The 28-item ARSAA-II contains 2 subscales: Attraction to American Culture ( 13 items) and Attraction to Arabic Culture (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3033] "This 12-item measure consists of four 3-item scales: Tolerance, Forgiveness, Making effort, and Having gratitude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3034] "In addition to an orientation test and a picture description task, the Kentucky Aphasia Test has 60 items (six 10-item subtests)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3035] "The Cancer Coping Questionnaire contains 21 items across 5 subscales: Coping (5 items); Positive Focus (3 items); Diversion (3 items); Planning (3 items) and Interpersonal (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3036] "The Wave 6 measure contains 15 items. The Wave 7 measure contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3037] "This 50-item measure consists of five 10-item scales: Social skill, Attention switching, Attention to detail, Communication, and Imagination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3038] "The two primary subscales of the Death Perspective Scale consist of a total of 62 items. An abbreviated version consists of four secondary scales comprised of a total of 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3039] "The Kilifi Communicative Development Inventories consists of of younger (355 items) and older forms (704 items). There are also short forms for each age group: Younger short form (100 items) Older short form (200 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3040] "The Beck Hopelessness Scale--Yoruba Version consists of 20-item and 4-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3041] "This 83-item measure consists of the 30-item Locus of control scale and the 53-item Conscientiousness scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3042] "This 12-item measure consists of four 3-item scales: ESR, Event WOM, Sponsor patronage, and Fan attachment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3043] "This measure contains 2 items, each assessed under secret and visible conditions (4 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3044] "The Four Mediating Considerations Measure contains 32 items (16 items for each conflict situation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3045] "The OJRS consists of 34 items. The Ritual Observance, Religious Belief, and Community Involvement subscales include 15 , 10, and 9 items, respectively. items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3046] "This measure consists of 19 items in each of two sub-tests, for a total of 38 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3047] "This measure consists of a total of 14 items (12 main items and a 2-item validation index)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3048] "This 22-item measure consists of the following scales: Intentions (10 items), Goal priority (7 items), Goal conflict (3 items), and Exercise behavior (2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3049] "Part 2 of this measure contains 24 items, Part 3 contains 14 items, and Part 4 contains 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3050] "The Perceived Research Burden Assessment contains 17 items; a 22-item family member version was also created."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3051] "This 27-item measure consists of the 21-item Social Support Microsystem Scale and the 6-item Neighborhood Cohesion Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3052] "A total of 75 items are divided into 4 subscales: Norms and milestones (32 items); Principles (17 items); Parenting (14 items); and Health and safety (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3053] "The TPB exercise-related variables are assessed by means of 18 items, measuring Attitude (7 items), Subjective norms (3 items), Perceived behavioral control (5 items) and Intention (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3054] "The MHES comprises a 32-item version for adolescents and a 36-item version for mothers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3055] "Two forms of this measure were created, a long form with 24 items and a short form with 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3056] "This measure contains 10 items. An 8-item version was also introduced."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3057] "This measure consists of 14 items covering three dimensions (Institutional [4 items], Administrative [5 items], and Technical function [5 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3058] "The Perceived Outgroup Culture Maintenance Preferences Measure contains 4 items for majority groups and 3 items for minority groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3059] "The Food Allergy Quality of Life Questionnaire--Parent Form contains 30 items for children aged 7-12 years, 26 items for children aged 4-6 years, and 14 items for children <4 years."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3060] "This 66-item questionnaire consists of the following 6-item scales: Risky Driving Scale, Attitude, Locus of Control Scale, Social Norm Scale, and Social desirability. The Family Climate for Road Safety Survey (FCRSS) consists of 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3061] "This 24-item survey consists of two 12-item scales: the Indian and Western scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3062] "Each of the four scales consists of 9 items, for a total 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3063] "This 33-item questionnaire is composed of three scales: Shame Concerning HIV-Infection (14 items), Shame Concerning Sexual Abuse (9 items), and Impact of Shame on Behavior (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3064] "This measure consists of 51 items comprising the following scales: Substance use offers (4 items), Anti-drug attitudes (5 items), Perceived harmfulness of substance use (6 items), Disapproval of antisocial behavior (8 items), Pro-social behavior (3 items), Antisocial behavior (7 items), Oppositional behavior (3 items). Age of initiation of substance use (6 items), Age of initiation of antisocial behavior (5 items), and Times victimized by bullying (4 items)."                                                                                                                                                                                                                                                                                                                                                                                          
## [3065] "Part 1 and 2 of the 43-item questionnaire (which includes the AIS, ITICS, TEIP, and demographic items) contain a total of 17 items (AIS/ITICS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3066] "This 33-item scale comprised five subscales: Perceived unequal treatment by teachers (6 items); Perceived support for contact and cooperation by teachers (8 items); Perceived unequal treatment by students (6 items); Perceived support for contact by students (8 items); and Perceived support for cooperation by students (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3067] "This measure consists of 6 items with 3 items assessing both PSOS and PSSS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3068] "This 68-item measure consists of the following scales: Physical abuse, 19 items; Sexual abuse, 12 items; Psychological abuse, 15 items; or Neglect, 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3069] "The Hurricane Exposure Questionnaire contains 19 items (Parental version) or 6 items (Youth version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3070] "The A-Level Psychology Year 13 Questionnaire has 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3071] "The Racial Socialization Scale--Modified contains 15 items across 3 subscales: Cultural Socialization (5 items), Promotion of Mistrust (4 items), and Preparation for Bias (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3072] "The Career Adaptability subscale of the 25-item Career Futures Inventory--Turkish Version contains 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3073] "This measure consists of 63 items and the following scales: Stages of Motivational Readiness (5 items), Processes of Change (40 items), Self-efficacy (6 items), and Decisional Balance (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3074] "The final measure consists of 12 case vignettes, each followed by 3 questions, for a total of 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3075] "In this 18-item scale, Sexual violence perpetration is measured by 2 items, while Nonsexual physical violence perpetration is assessed by 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3076] "A total of 55 items are used to measure four aspects of negative experiences: Negative life events (13 items), Daily life frustrations (22 items), Negative relationships with others (12 items), and Traumatic experiences (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3077] "The Q8 Questionnaire--Dutch Version consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3078] "This 30-item scale consists of the following constructs: Past online microvolunteering behavior (1 item); Intention (3 items); Attitude (3 items); Subjective norm (2 items); Perceived behavioral control (2 items); Moral norm (4 items); Group norm (1 item); Behavioral beliefs (4 items); Normative beliefs (6 items); and Control beliefs (assist - 2 items and prevent - 2 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3079] "This 19-item scale assesses physically (12 items) and emotionally (7 items) abusive disciplining strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3080] "The 34 items comprising this measure cover four domains: Subjective well-being (4 items); Problems/symptoms (12 items); Life functioning (12 items); and Risk (to self and others; 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3081] "The Mental Health Inventory--5-Item Version has 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3082] "The long version of the Stress of Immigration Survey contains 21 items; the short form contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3083] "This 46-item self-report questionnaire includes the following categories: Demographical data (4 items); Participants’ actual knowledge and skills on computers (12 items); Computer usage and patterns (20 items); and Perceived competence in computers and in the educational uses of software tools (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3084] "The scale used at baseline contained 20 items; it was revised to an 18-item scale for the remaining waves of data collection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3085] "This measure consists of 12 items and is comprised of four 3-item scales: Social reinforcement (Parent approval, Character attributions, and Showing love) and Tangible reinforcement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3086] "This measure consists of a total of 31 items divided into two parts: Section A (6 items) and Section B (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3087] "The EORTC QLQ-C30 Item Bank has 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3088] "The Parental Authority Questionnaire--Chinese Version has 10 items for the parent-report and 10 items for the child-report."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3089] "This 4-item measure consists of a 2-item Personal Self-Construal Scale and a 2-item Collective Self-Construal Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3090] "This measure comprises 24 items (plus 2 items for carer needs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3091] "The Language Contact Profile--Revision consists of two versions: a pretest version (17 items) and a posttest version (9 items, some with multiple items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3092] "This measure consists of 30 items covering the following instructional practices: Cognitive (12 items), Interpersonal (10 items), and Intrapersonal (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3093] "The Maternal Sex during Pregnancy Scale contains 6 items, while the Partner Sex during Pregnancy Scale consists of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3094] "Three subscales, consisting of 10 items, comprise this measure: Autonomy support by immediate supervisor (3 items), Autonomy support by top management (3 items), and Supportive work climate (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3095] "This instrument consists of 45 items. Factor analysis indicated 40 items for the US sample and 42 items for the Mexican sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3096] "The maternal version consists of 19 items and the paternal version consists of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3097] "This measure consists of 11 items comprising the following two scales: the Persistent Deviant Sexual Interests Scale (8 items) and Low Self-Esteem Scale (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3098] "This measure consists of a total of 26 main items, and an additional 2-item section on demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3099] "This instrument consists of 37 items (38 items if a laptop is part of a workstation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3100] "The two recommended short version of the Symptom Checklist-90--Revised; Short Versions are: BSI-18 (18 items) and SCL-K-9 (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3101] "The Internal Entrapment Scale contains 6 items; External Entrapment Scale contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3102] "The Internalized Mental Health Symptoms Index comprises 3 variables, condensed from a total of 8 possible questions (2 main questions, with 1 question asking respondents to check up to 6 types of symptoms)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3103] "This measure consists of a total of 15 items (14 items across five factors and 1 item assessing overall QOWL)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3104] "There are 8 items in the full version and 2 items in the short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3105] "There are 13-, and 6-item versions of the original 16-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3106] "This 28-item questionnaire is divided into five sections: fear of dentists (9 items), oral hygiene and appearance (6 items), concern with health (4 items), prevention of dental problems (6 items), and general health (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3107] "This is a 16-item measure. The modified Positive Parenting subscale consists of six items, while the modified Poor Monitoring scale consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3108] "This is a 24-item scale. Need satisfaction and Need thwarting were measured with 12 items each. Autonomy, Competence, and Relatedness in both scales were all measured by four items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3109] "This measure consists of 22 main items (11 items administered both before and after an intervention), as well as a section on demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3110] "This 36-item measure consists of eight Forms of usage items, 13 Motivations of usage items, and 15 items assessing Skills and literacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3111] "There is a 75-item long form and a 45-item short form of the DPQ."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3112] "These two measures comprise a total of 32 items (16 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3113] "This 17-item measure consists of the Compassionate goals (8 items) and the Self-image goals (9 items) scales, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3114] "This measure contains 7 items for an end consumer sample and 8 items for a business sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3115] "This 10-item measure consists of two 5-item scales: Necessity beliefs and Concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3116] "The receptive target vocabulary test contains 32 items, while the expressive target vocabulary test contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3117] "This measure consists of 28 items and two 14-item subscales: Past orientation and Future orientation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3118] "This is a 10-item scale. Four emotions are measured: Lonely (2 items), Anxious/Vulnerable (5 items), Sad (2 items), and Relieved (single item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3119] "This is a 19-item scale. Each type of sexual harassment (Gender harassment, Unwanted sexual attention, and Sexual coercion) is measured with 6 items, and an additional item assesses Sexual assault."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3120] "The COP Survey consists of 39 items. There is a separate 16-item section on demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3121] "This 22-item measure consists of the expanded Risk Communication Process (RCP; 13 items) and the Risk Communication Content (RCC; 9 items) measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3122] "The long form of this measure consists of 42 items and the short form consists of 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3123] "This 16-item measure consists of the Positive and Negative face scales, which are comprised of 10 and 6 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3124] "This measure consists of 55 items divided as follows: Sexual Knowledge (25 items), Sexual attitude (4 items), Birth Control Attitudes Scale (7 items), and Sexual behavior and Birth control use (16 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3125] "After item analysis, 12 items were retained. Two items on erectile dysfunction were combined as one variable; thus, analyses were computed for 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3126] "This measure consists of a 4-item scale of customer-directed effort and a 2-item scale of effort directed toward the internal organization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3127] "This 7-item measure assesses Global (3 items), Social (2 items), and Academic (2 items) adjustment to college."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3128] "The Interpersonal Guilt Measure--45 Items contains 45 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3129] "The e-HLS consists of 19 items distributed across 3 factors: communication (2 items), trust (4 items), and action (13 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3130] "The Personal Involvement in Health Care Related to Site Use Measure consists of two versions: Veteran Users (20 items) and New Users (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3131] "The Study 1 measure contains 3 items, while the Study 2 measure contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3132] "The measure as 28 items. The shorter \"Business\" version has 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3133] "The Competency Assessment Tool--Students and Teachers' Questionnaires consists of a 20-item Students' questionnaire and 13-item Teachers' questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3134] "The Smoking Beliefs Measure consists of a 5-item scale (Study 1) and 7-item scale (Study 2 and 3)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3135] "The scale used at baseline contained 6 items; it was lengthened to a 10-item scale for the remaining waves of data collection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3136] "This 6-item measure consists of the 4-item AB and the 2-item BI scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3137] "This 14-item measure consists of the 3-item Mortality Salience index, five items assessing PSA opinions, and the 6-item Manipulative Intent scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3138] "The full P-CAT contains 89 items from an item bank. Ten-item and 20-item P-CAT's were also analyzed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3139] "This 5-item measure consists of the 3-item Facilitating Motivations Scale and the 2-item Inhibiting Motivations Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3140] "This 33-item measure consists of the following subscales: Parenting Knowledge (14 items); Parenting Experience (12 items); and Program Satisfaction (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3141] "The Study 1 measure comprises 3 items. The Study 2 measure contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3142] "The Study 1 measure contains 3 items, while the Study 2 measure consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3143] "The Study 1 measure comprises 3 items, while the Study 2 measure contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3144] "The CIP-Short is comprised of 20 items across 4 scales (5 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3145] "The Rating Scale for Disruptive Behavior Disorders consists of 41 DSM-IV items; with 18 items related to ADHD, 8 items related to ODD, and 15 items to CD."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3146] "The full measure contains 90 items, while the short form consists of 54 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3147] "This 20-item measure consists of two 10-item scales: Cognitive distraction based on appearance (CDBA) and Cognitive distraction based on performance (CDBP)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3148] "The Business and Information System Strategy Survey consists of 35 items in two subscales (Business Strategy Attributes, 18 items; Information System Strategy Attributes, 17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3149] "A total of 26 items are categorized as follows: Education and Vocational Training (4 items); Life Skill (9 items); Psychological Well-being (4 items); Financial Arrangement (2 items); Employment (2 items); Support network (4 items); and Living arrangement (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3150] "This measure consists of 8 items (behaviors) that are each presented twice, for a total of 16 items in the overall questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3151] "The Hunter Syndrome-Functional Outcomes for Clinical Understanding Scale includes 2 versions: a parent version (68 items) and a patient self-report version (54 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3152] "This 21-item measure consists of a 6-item Bar Crowding Scale, a 9-item Safety Signage Index, three items assessing Serving Intoxicated Patrons, and three items assessing Isolation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3153] "The 52-item AHL-C consists of four subscales: Print literacy (Reading test [12 items] and Clause test [12 items]), Numeracy (4 items), Comprehension (12 items), and Familiarity (12 items). Reading fluency encompasses the Print Literacy and Numeracy scales, while Prior knowledge encompasses the Comprehension and Familiarity scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3154] "This 36-item measure consists of two 18-item scales (Avoidance and Anxiety)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3155] "This 8-item measure consists of two 4-item scales, Perceived relationship value and Perceived exploitation risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3156] "This measure consists of 2 items in reference to active and non-active games, for a total of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3157] "A total of seven multi-item scales comprise this 31-item measure: Peer-oriented reasons (3 items); Adult-oriented reasons (3 items); Learning-oriented reasons (9 items); Monitoring motivation (4 items); Homework interest (3 items); Affective attitude toward homework (4 items); and Teacher feedback (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3158] "The Speech, Spatial and Qualities of Hearing Scale--Adapted consists of three versions: Children (33 items), Parents (23 items), and Teachers (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3159] "This measure contains 20 items (Punyanunt-Carter & Wrench, 2006). As presented in Punyanunt-Carter and Wrench (2009), the measure consists of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3160] "The long version of the IFI comprises 35 items, while the short version contains 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3161] "The number of items varies between groups, with a total of 42 items in the Turkish-Bulgarian and 21 items for the Bulgarian youth, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3162] "There are two versions of this instrument, one comprising 21 items and one comprising 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3163] "Normative beliefs are captured with four items assessing Injunctive norms (what others think [2 items]) and Descriptive norms (how others behave [2 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3164] "The Genderism and Transphobia Scale--Chinese Version consists of 32 items in 2 subscales: transphobia/genderism subscale, 25 items; and gender-bashing subscale, 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3165] "This measure comprises 16 items (8 items each for the Instrumental [I] and Expressive [E] scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3166] "This 26-item measure includes a 24-item Learning needs section that is comprised of four categories (General knowledge of CHD, PCI knowledge: Pre-procedural, PCI knowledge: Post-procedural, and PCI knowledge: Post-discharge)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3167] "This 14-item measure consists of two 7-item subscales: Negative Affectivity (NA) and Social Inhibition (SI)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3168] "These two scales comprise a total of 8 items (4 items each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3169] "This measure comprises three scales: Insight into cues for unhealthy snacking (6 items), Capability to change unhealthy snacking (5 items), and Monitoring diary adherence (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3170] "The KIDSCREEN-52 Questionnaire--Persian Version has 52 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3171] "This measure consists of 19 items and the following three variables: Problem-focused coping (5 items); Passive emotion-focused coping (7 items); and Passivity (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3172] "The PSQ-An is a 21-item instrument comprised of 2 parts: a descriptive part (11 items) and a scale part (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3173] "The Workplace Interpersonal Relatedness Scale contains a total of 19 items (for the U.S. sample one subscale was not used, thus for this sample the measure comprised 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3174] "There are 32-item, 16-item, and 12-item versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3175] "While this is a 69-item measure, 22 items are used to assess the following eight variables: Availability of physical activity opportunities, Physical activity structures and Characteristics, Social environment related to physical activity, Physical activity policies, Organizational support for physical activity, Staff wellness programs, and Collaboration with external agencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3176] "There is a 20-item long form and a 4-item short form of the FFS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3177] "This 6-item scale consists of two 3-item subscales: Cancer Worry and Health Worry."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3178] "This measure comprises 16-item Attitude and 27-item Practice sections (43 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3179] "This 32-item measure consists of eight 4-item scales: Dominant, Hostile-Dominant, Hostile, Hostile-Submissive, Submissive, Friendly-Submissive, Friendly, and Friendly-Dominant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3180] "This measure comprises 18 items. One item assesses contact risk, and 17 items measure privacy risk (16 items concern personally identifiable information included in SNS profiles and 1 item assesses SNS privacy setting)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3181] "This measure comprises 22 total items (Part I = 2 items, Part II = 20 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3182] "This 10-item measure consists of two 5-item scales (Perceived threat to self and Perceived threat to the relationship)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3183] "This measure consists of three 4-item scales (12 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3184] "The PROMIS® Adult V1.0 Item Bank for Depression--Dutch-Flemish Extended version contains 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3185] "This 9-item measure is comprised of a 4-item global awareness scale and a 5-item global identification scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3186] "This 27-item measure consists of three domains. The Peer and Individual domain consists of three subscales including Religiosity (2 items), Belief in moral order (4 items), and Interaction with prosocial peer (4 items). The Family domain also includes three subscales: Family attachment (4 items), Family opportunities for prosocial involvement (3 items), and Family rewards for prosocial involvement (4 items). The Community domain includes two 3-item subscales: Community opportunities for prosocial involvement and Community rewards for prosocial involvement."                                                                                                                                                                                                                                                                                      
## [3187] "This 24-item measure consists of eight 3-item subscales, including Confrontive coping, Self controlling, Seeking social support, Accepting responsibility, Escape-avoidance, Planful problem solving, and Positive reappraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3188] "This instrument comprises 12 primary items, seven of which also include additional probes and follow-up questions, for a total of 84 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3189] "The final survey includes 37 items and 9 background and demographic items. Included in the survey are the following three scales: Adapting Wisely (5 items), Following Program Instructions (7 items), and Norm Setting Knowledge (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3190] "This is a 43-item measure. As 10 items failed to contribute meaningfully to the factors of this measure, it is recommended that these items be dropped from future use of the PCEOL."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3191] "This measure contains 31 items, including two main scales, the Content Quality Scale (11 items divided into two subscales) and the Technical Quality Scale (14 items). Two additional questions on participants' willingness to implement the practices described in the video and their confidence in using these practices are included."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3192] "This measure includes one scenario followed by 8 questions (4 for victim and 4 for perpetrator) for participants in the hindsight condition, or the same 8 questions (4 for victim and 4 for perpetrator) in the foresight condition, with slightly modified instructions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3193] "There are 12 items in the general knowledge subscale and 8 items in the curability subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3194] "From this 26-item measure, the following scores are obtained: Total impact (19 items), Financial support (3 items), General impact (10 items), Disruption of social relations (9 items) and Coping (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3195] "The parent-report version of this measure comprises a total of 19 items and the teacher-report version comprises a total of 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3196] "The male and female versions consist of 21 items and 19 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3197] "This 12-item scale is comprised of two of the original three subscales (Avoidance [7 items] and Revenge [5 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3198] "This measure comprises 40 items divided into 5 subscales: familiarity with the EBP process (10 items), attitudes about the EBP process (14 items), feasibility to engage in the EBP process (3 items), intentions to engage in the EBP process (6 items), and current engagement in the EBP process (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3199] "The 48-item Late-Life Function and Disability Instrument consists of two components, a 32-item Function component comprised of three dimensions (Upper extremity, Basic lower extremity, and Advanced lower extremity), and a 16-item Disability component comprised of two dimensions (Frequency and Limitations)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3200] "There are 19 items in Assessment #1, 24 items in Assessment #2, and 18 items in Assessment #3."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3201] "Each of the four scales consists of 2 items, for a total of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3202] "The 128-item EMQ is divided into 3 sections: Gross Motor (GM: 49 items), Fine Motor (FM: 48 items), and Perception-Action (PA: 31 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3203] "This measure contains 34 items, divided into three scales: Jamaican Orientation Scale (16 items), European American Orientation Scale (9 items), and African American Orientation Scale (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3204] "The scale is comprised of 16 items: items 1 to 8 refer to non-interpersonal violence and items 9 to 16 refer to interpersonal violence (IPV). However, only the 8 items referring to Interpersonal Violence (LITE-S-IPV) were considered in the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3205] "The 25-item WOS consists of the following five subscales: Job demands (6 items); Job control/autonomy (7 items); Skill variety (5 items); Job complexity (3 items); and Job uncertainty (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3206] "This 29-item measure consists of the following three scales: Proactivity (9 items); Adaptivity (11 items); and Resilience (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3207] "This measure comprises 10 items, divided into two 5-item subscales (Faith in Intuition and Need for Cognition)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3208] "This measure consists of 8 items (Closeness index = 4 items; 1 item each for duration, sexual activity, marital intentions, and maximum age during the relationship)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3209] "These measures comprise 43 items assessing youth and family characteristics and 4 items assessing partner characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3210] "There are three components in the scale. Part I consists of 11 items, including 8 positive items and 3 negative items. Part II is mainly comprised of 4 items, while the question of relevance in Part III is a single global item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3211] "The 4-Item Dynamic Gait Index contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3212] "This measure comprises three 10-item scales (30 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3213] "This 6-item measure consists of two 3-item scales: Perceived self-efficacy and Perceived response efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3214] "Based on item content and feedback from expert reviewers, the final 28 items were divided into three categorical subscales: Aggressive driving (7 items); Negative emotional driving (9 items); and Risky driving (12 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3215] "The most comprehensive version (follow-up for youth who did receive a neuropsychological assessment) contains 58 items, while the shortest version (baseline for youth who did not receive a neuropsychological assessment) consists of 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3216] "There are two scales, one comprising 67 items and one comprising 61 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3217] "This measure consists of 19 items divided into three subscales: oral health (5 items), functional well-being (4 items), and socio-emotional well-being (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3218] "This measure consists of a 10-item summary scale, but underlying components can also be measured with 8-item Physical and 4-item Cognitive subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3219] "The full version consists of 42 items and the short version consists of 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3220] "This measure consists of 32 items in 8 subscales (Domineering/Controlling, Vindictive/Self-centered, Cold-Distant, Socially Avoidant, Nonassertive, Overly Accommodating, Self-Sacrificing, and Intrusive-Needy) containing 4 items each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3221] "This measure consists of 28 total items (7 each for prepositions, conjunctions, adverbs, and negations). Ten items are receptive and require children to point to a picture matching the verbal stimulus, while the other 18 items are of several expressive formats, including verbally producing the target structure, finishing sentences, and repeating stimuli."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3222] "This 24-item measure consists of the following scales: SE-AID, 6 items; SS-AID-Family, 7 items; SS-AID-Residential service staff, 6 items; and SS-AID-Roommates with disabilities, 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3223] "This measure consists of 20 items measuring attitudes/beliefs, and 1 item used to detect social desirability, for a total of 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3224] "This 67-item is comprises of four subscales: Social capital (13 items), Physical capital (17 items), Human capital (22 items), and Perceived community capital (15 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3225] "This 9-item measure consists of the following three subscales: Vigor (3 items), Dedication (3 items), and Absorption (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3226] "This measure consists of 4-item defendant and victim responsibility scales (8 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3227] "Each of the 13 items (life domains) is rated for general importance and relative importance, for a total of 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3228] "This 18-item measure consists of the following five scales: amount of responsibility attributed to the State and military (6 items), to the PKK (3 items), to the Turks (3 items), the Kurds (3 items), and to Foreign countries (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3229] "The Student Career Construction Inventory--Portuguese Version (60 items in total) is comprised of a 35-item Career Adaptability Scale and a 25-item Vocational Development Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3230] "This 12-item measure consists of two 6-item scales: Growth and Fixed mindsets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3231] "This measure contains 26 items grouped into four factors: emotional support (6 items), instrumental support (7 items), informational support (7 items), and appraisal support (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3232] "This measure comprises 23 items grouped into the following subscales: Peer Modeling (7 items), Social Reinforcement (8 items), and Peer Attributions (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3233] "This 20-item measure is comprised of two 10-item subscales: Emotion-Intimacy and Sexual scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3234] "There are 100-item long and 50-item short forms of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3235] "The Communication and Symbolic Behavior Scale-Developmental Profile--Chinese Version consists of an Infant–Toddler Checklist containing 24 items, and a Caregiver Questionnaire containing 45 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3236] "This 14-item measure consists of seven 2-item scales: Autonomy, Relatedness, Competence, Behavioral intentions, Cognitive social identity, Affective social identity, and Evaluative social identity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3237] "This measure consists of 14 items and two scales: Goal Clarity (5 items) and Financial Planning (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3238] "This 30-item measure consists of 10 items assessing Ratings of RTI Knowledge and 12 items measuring Application of RTI Knowledge (data interpretation ability). The other eight items pertain to respondent demographics and school-related information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3239] "This measure consists of 29 items, grouped into 4 categories: General attitude toward group work (6 items), Peer review and grading (6 items), Group composition (9 items), and Other topics (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3240] "The 32 items in this measure are used to represent four categories: Positive aspects of driving relevant for self (Pro-self; 9 items), Positive aspects of driving relevant for others (Pro-other; 7 items), Negative aspects of driving relevant for self (Con-self; 10 items), and Negative aspects of driving relevant for others (Con-other; 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3241] "This 27-item measure consists of nine 3-item scales: Remuneration, Job & work design, Development, Selection, Job security, Communication, Performance appraisal, Promotion, and Retention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3242] "This 41-item measure consists of four sections comprised of the following scales: Personal Control (2 items), Optimistic Bias (2 items), Worry (2 items), Personal Disease Risk (15 items), Environmental Health Risk (9 items), and a test of knowledge (4th section [11 items])."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3243] "These scales assess participants' degree of exposure for each of 75 items in the MACE-X and 52 items in the MACE and MAES."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3244] "This 30-item measure is comprised of three 10-item scales: Disability, Handicap, and Impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3245] "The Spanish ASEX comprises a total of 6 items, one of which is specific to males, and another specific to females, for a total of 5 items in each of the male and female versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3246] "The PKU-QOL exists in four versions: Child PKU-QOL (40 items), Adolescent PKU-QOL (58 items), Adult PKU-QOL (65 items), and Parent PKU-QOL (54 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3247] "There is a longer 14-item form of the measure (WEMWBS) and a 7-item short form (SWEMWBS)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3248] "The Non-Participation Questionnaire has 22 total items, 10 items for participants who decided not to take part in research, and 12 items for participants who decided to stop taking part in the project."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3249] "The child questionnaire comprises 19 items, while the parent questionnaire contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3250] "The 70-item battery is made up of four instruments: (1) Analysis and Record of Acts of Speak (7 initial speech acts), (2) Pragmatic Observation of the Game (22 items), (3) Questionnaire for Parents (20 items) and (4) Guide for Parents (21 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3251] "This measure consists of 32 items (Version A consists of an additional 8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3252] "The Exchange-Orientation Scale is comprised of two tests, the 23-item Test of E-Orientation and Marriage Adjustment and 20-item Test of E-Orientation and Friendship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3253] "This measure consists of 66 items. The number of items for each age group is as follows: 9 items for 0–1 year (0–12 months), 12 items for 1–2 years (13–24 months), 13 items for age 2–3 years (25–36 months), 13 items for 3–4 years (37–48 months), 8 items for 4–5 years (49–60 months) and 11 items for 5–6 years (61–72 months)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3254] "This measure comprises two parallel 30-item versions (ATEBI-Music and ATEBI-Visual Arts). However, the model displaying best fit consisted of 16 items for each version, with 6 items measuring outcome expectancy and 10 items related to teaching efficacy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3255] "The State Trait Inventory of Cognitive and Somatic Anxiety--Italian Version consists of 42 items (two independent 21-item scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3256] "The Injury Attributions Questionnaire contains 6 scenarios and 8 items (4 items each, for both a PTI and IT version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3257] "This measure consists of a 25-item safeguarding patients’ autonomy (SPA) section and a 14-item acting on behalf of patients (ABP) section (39 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3258] "The interview guide for Focus Group A contains 8 items. The interview guide for Focus Group B contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3259] "The full and short versions of this measure contain 240 items and 125 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3260] "The SCI contains 187 items distributed across 9 scales: Overall Sense of Control (16 item), Positive Sense of Control (11 items), Negative Sense of Control (5 items), Domain-specific Sense of Control (25 items), Mode of Control Scales where 49 words are rated, reflecting each of four quadrants. The final scale is a Desire for Control scale (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3261] "The leader version of this measure contains 21 items, while the HR/L&D version comprises 19 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3262] "This 12-item measure consists of two 6-item subscales: Shame and Guilt."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3263] "The SAS-F-24 contains 24 items and 21 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3264] "The Kessler's 10-item Psychological Distress Scale--Danish Version contains 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3265] "This measure comprises 6 items (two 3-item subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3266] "There are 10 items for the original PCM; 5 items for the \"Reduced PCM.\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3267] "Each scale has 3 items, for a total of 6 items across the 2 scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3268] "The Hearing Protection Assessment-5 Questionnaire contains 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3269] "The Self-Perceived Burden Scale includes 10-item and 25-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3270] "This measure consists of 10 items and the following three scales: Running involvement (6 items), Perceived event prestige (3 items), and Intention to return (1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3271] "The MOSE has 47 items across 33 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3272] "The HCP version of this measure comprises 10 items, while the client version contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3273] "This measure consists of 44 items assessing impairment, as well as 14 items on a symptom-frequency scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3274] "Analysis suggested that, rather than including 44 items, the total aDSWAL-QoL should be rescaled to a 42-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3275] "This measure consists of 18 items comprising three 6-item factors: Aggression, Conventionalism, and Submission."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3276] "The total scale consists of 212 items, while 116 items apply to both mothers and fathers separately. For each of 29 situations, participants are asked to rate the frequency of the following seven parenting practices (subscales): Warmth, Reasoning, Indi?erence, Detachment, Revoking Privileges, Verbal Scolding, and Physical Punishment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3277] "This 25-item measure consists of the following scales: Work interfering with family (WIF; 8 items), Work–family centrality (WFC; 5 items), Job satisfaction (3 items) and Organizational commitment (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3278] "The HIV Stigma Scale--12-Item Short Version has 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3279] "Measures included in this scale are as follows: Attitude (7 items); Normative Pressure (2 items); Control (2 items); Behavioral Intention (1 item); and Sensation Seeking (4 items). Media Exposure, Exposure to Alcohol and Sex in Media, and Daily TV Time are also assessed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3280] "The Questionnaire about Visual Liking/Multisensory Experience Liking/Arousal comprises 3 items, the Questionnaire about the Importance of Each Individual Sense comprises 5 items, and the interview comprises 8 items, for a grand total of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3281] "This measure comprises 11 items at baseline, 18 items at Year 1, 27 items at Year 3, 43 items at Year 5, and 64 items at Year 9."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3282] "The long version comprises 21 items, while the short form contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3283] "A total of 111 items are included in this measure. There are 90 items included in the Visual Perception (VP) domain, with 15 items for each subtest, and 21 items included in the Visual Motor Integration (VMI) domain. The VP domain consists of six subtests: Visual Discrimination (VD), Visual Memory (VM), Spatial Relations (SR), Form Constancy (FC), Figure-Ground (FG), and Visual Closure (VC). The VMI domain consists of two subtests: Path Tracing (PT), and Picture Copying (PC)."                                                                                                                                                                                                                                                                                                                                                                        
## [3284] "This measure consists of 18 items, though a 14-item, 5-factor structure was proposed by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3285] "The BAT includes 14 themes as placeholders for 151 rotating visual (126 items) and musical (25 items) stimuli."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3286] "This 27-item measure consists of the following variables: Friend’s discussion and encouragement of condom use (7 items); HIV/AIDS knowledge (8 items); Awareness of testing services (4 items); Agency factors influencing testing (4 items); and Perception of current risk (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3287] "This measure consists of four different Facebook profile pages, along with 24 items, which are used to measure the following scales: Respect (8 items); Likability (6 items); Facebook involvement (6 items); Facebook norms (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3288] "The Ice-cream Story Task consists of 5 total items: test question (1 item), justification of answer (1 item), and control questions (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3289] "The long version PBQ--U.S. version has 36 items; the short version of the PBQ--U.S. version has 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3290] "This measure consists of 22 items comprising the following scales: Self-efficacy (7 items), Attainment value (3 items), Intrinsic value (5 items), Utility value (4 items) and Cost (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3291] "Test I for pupils aged 6-8 years contains 25 items, while Test II for pupils aged 9-12 years consists of 32 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3292] "The TOP has 20 items, with an additional 10 items for individual treatment planning and review."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3293] "The Follower Identification has 6 items while the Follower Satisfaction Scale has 1 item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3294] "This measure consists of both a 22-item (20 factor items and 2 global items) Older Adult version and a 19-item (17 factor items and 2 global items) Caregiver version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3295] "This 22-item survey includes eight demographic questions, a single-item self-assessment of EVD-related knowledge, a 7-item Willingness-to-treat scale, and six open-ended questions assessing clinical management education received, perceptions of the duty to treat EVD patients, and issues or concerns participants had regarding treating EVD patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3296] "This 26-item measure includes four a priori subscales: General Benefits (9 items), Race Benefits (5 items), General Barriers (8 items), and Disparity Barriers (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3297] "The 25-item VIPA consists of 2–5 items describing each of seven roles: Medical expert, Communicator, Collaborator, Manager, Health advocate, Scholar, and Professional."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3298] "The PhoPhiKat-45 Questionnaire contains 45 items. A shorter version contains 30 items (PhoPhiKat-30)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3299] "This 26-item measure consists of a 14-item Initial worksheet and survey, as well as a 12-item Post worksheet and survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3300] "The CaregiverVoice Survey contains 76 items: FAMCARE-2 (19 items) and VOICES-SF (57 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3301] "This 22-item measure consists of the following constructs: Attitudes toward e-collaboration (4 items); Subjective norms (3 items); Perceived behavioural control (2 items); E-collaborative intentions (3 items); Past behaviour (1 item); Past experience (6 items); and Self-esteem (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3302] "The final measure consisted of 11 items comprising Deep (6 items) and Surface (5 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3303] "The L2 Motivational Self System Questionnaire has 48 items. The measure also included 7 questions to elicit demographic information, such as age, region of origin, and parents’ level of education."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3304] "The teacher questionnaire has 20 items; the student questionnaire has 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3305] "There is a 20-item long form and a 12-item short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3306] "This 61-item measure consists of eight subscales: Extrinsic motivation (9 items), Intrinsic motivation (9 items), Self-confidence in English (5 items), English anxiety (10 items), Attitudes toward learning English (9 items), Desire to learn English (9 items), Intention to continue L2 learning (3 items), and Motivational intensity (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3307] "This measure comprises 34 items divided into three subscales: Family (12 items), Service system (12 items), and Community/Political (10 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3308] "The European Health Literacy Survey consists of 47 health literacy items and the additional 39 items for a total 86 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3309] "This measure consists of 28 items and a short version comprised of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3310] "The 20-item Mindful Eating Questionnaire has 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3311] "Each of the 3 scales comprises 4 items (12 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3312] "The 12-item Citizenship Measure contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3313] "The 55-item Advance Care Planning Engagement Survey has 55 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3314] "The 15-Item ACP Engagement Survey contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3315] "The 9-Item ACP Engagement Survey contains 9 items rated on a 5-point Likert scale (with '5' indicating \"I already did it\")."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3316] "The 4-Item ACP Engagement Survey contains 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3317] "This measure comprises four scales (35 items in total): Perceived Risk of Lung Cancer Scale (3 items), Perceived Benefits of Lung Cancer Screening Scale (6 items), Perceived Barriers to Lung Cancer Screening Scale (17 items), and Self-Efficacy for Lung Cancer Screening Scale (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3318] "This 49-item measure consists of 33 consequences items and 16 items focused on the long-term consequences of a false-positive screening mammography (Part II)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3319] "This measure contains 43 items in total (Part 1 comprises 6 items, Part 2 contains 14 items, and Part 3 comprises 23 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3320] "Exposition to intercultural situations is assessed with 20 items, sense of responsibility for the adaptation of health care for migrants is measured by 5 items, and ability to provide culturally competent health care to migrant patients is assessed by 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3321] "This diagnostic tool comprises 83 items distributed across Cognitive (25 items), Practical (28 items), and Affective (30 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3322] "Each of the two scales comprises 12 items, for a total of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3323] "The Assessment of Cognitions, Emotions, and Behaviors Involved in Gaming has 140 items relative to 28 variables (5 items per variable)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3324] "The ViDa1 Questionnaire contains 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3325] "The 19-item Audit of Diabetes-Dependent Quality of Life--Chinese Version contains 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3326] "This measure comprises four scales (20 items in total): Permeability of the border around work (6 items), Permeability of the border around family (6 items), Flexibility of the border around work (4 items), and Flexibility of the border around family (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3327] "This measure comprises four 5-item subscales (20 items in total): Valuing people at work, Empowerment at work, Valuing people at home, and Empowerment at home."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3328] "The Music Self-Perception Inventory--Forms A and B have 84 items in total (42 items per form)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3329] "This measure comprises 28 items divided into 5 behavioral dimensions: going to bed (5 items), falling asleep (6 items), maintaining sleep (6 items), reinitiating sleep (6 items), and returning to wakefulness (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3330] "The PCQL Child Form consists of 84 items, and the PCQL Adolescent Form and Parent Form each consist of 87 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3331] "The 30-Item EMpowerment of PArents in THe Intensive Care has 30 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3332] "This 31-item measure consists of the following subscales: Productivity and Efficiency (5 items), Adaptability (7 items), Capacity (7 items), Market Standing (7 items) and Projected Future Growth (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3333] "The 92-item Prodromal Questionnaire--Italian Version contains 92 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3334] "The Robot-Dog Questionnaire consists of 11 items. The Robot-Dog Questionnaire 2?Owners consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3335] "The Beck Scale for Suicide Ideation--German Version has 21 items, with 19 items included in BSS score. The first 5 items comprises the BSS-Screen."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3336] "Initial item selection processes resulted in 60 items covering research methods concepts and 60 items covering learning concepts. However, following student ratings of difficulty and confidence, two lists of 52 and 55 items, respectively, were produced."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3337] "This bank contains 22 items in the long form and 7 items in the short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3338] "The initial Neurotoxicity Scale contained 33 items, with a revised version containing 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3339] "The Emotion Regulation Task contains 16 items (including 13 items assessing emotions that were experienced during and following exposure to film clips)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3340] "This measure comprises 18 items divided into three 6-item factors (Personal sacrifice burden, Heartfelt sadness and longing, and Worry and felt isolation)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3341] "The 22-Item Eyberg Child Behavior Inventory contains 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3342] "The 22-Item Eyberg Child Behavior Inventory--Norwegian Version has 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3343] "This tool consists of 35 items. Total scores for 29-item, 19-item, and 14-item sets are calculated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3344] "This 27-item measure consists of two subscales: Interviewer (9 items) and Interaction (18 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3345] "This 45-item questionnaire is comprised of three sections which are further divided into the following subscales: Reasons for Attending University (15 items; Ambition, Lack of other opportunities, Social factors, and Perceived status and expectations); Academic Aptitude (15 items; Academic aptitude struggles and Other struggles [Financial, Emotional, Support]); Teaching Expectation (15 items; Expectation of Teaching being facilitating [student-focused]; Expectation of Teaching being information transmitting [teacher-focused]; and Expectation of Learning being similar to college [high-school])."                                                                                                                                                                                                                                                
## [3346] "The self-applied version consists of 28 items. The parent-report version consists of 26 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3347] "This 11-item measure consists of two subscales: the General Self-Stigma Subscale (8 items) and the Treatment Stigma Subscale (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3348] "The Pediatric Symptom Checklist--17 Item Version contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3349] "The GQ-5 contains 5 items, while the GQ-6 contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3350] "The Mobile Banking Adoption Survey has 10 items. In the development study, the 10 items were in response to each of 3 scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3351] "The Stigma Scale of Epilepsy--Turkish Version has 5 questions with 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3352] "The DSM-5 Level 2 Anger Scale--Children 11-17 and Parents of Children 6-17 Forms; Turkish Versions consists of a 6-item Child Form and 5-item Parent Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3353] "The Schedule for the Assessment of Drug-Induced Movement Disorders consists of 8 sub-scales: a 9- item scale for dystonia, an 8-item scale for Parkinsonism, two 7-item scales for dyskinesias during activity and in rest, a 5-item scale for ataxia, a 2-item scale for akathisia, a 3-item scale for tremors and a 4-item scale for sedation, depression, psychosis and anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3354] "The Child Discipline Behavioral Intentions Vignettes consists of 8 vignettes, with 8 items for children and 24 items for parents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3355] "The full revised measures has 89 items and the short form has 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3356] "This measure comprises a 15-item glossary (clinician-rated version) and two 13-item versions: a self-rated version for patients and a version for parents/legal guardians. There is also a score sheet for the glossary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3357] "This measure comprises a 15-item glossary (clinician-rated version) and two 13-item versions: a self-rated version for patients and a version for parents/legal guardians. There is also a score sheet for the glossary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3358] "Part A consists of 5 items, Part B contains 3 items, Part C includes a single items, Part D comprises 9 items, and Part E contains 6 items (including one multi-part question)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3359] "The 30-item MVPIC consists of 25 items pertaining to the respondent’s relationship with his child/children and five items pertaining to parenting-related changes since deployment. Ten items pertain to Positive experiences and 20 to negative (Challenging) experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3360] "This 18-item measure consists of the following scales: Collective identity (5 items), Change self-efficacy (3 items), Change leadership (7 items), and Employee commitment to change (3 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3361] "The instrument contains 363 items, administered in modules of around 40 items per sampling."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3362] "This measure comprises four modules: Social awareness (40 items), Social meaning (12 items), Social reasoning (6 vignettes), and Self-control (choice-delay and frustration-tolerance tasks)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3363] "This measure comprises 10 items in total, divided into two indices (Non-professional sources, 4 items; Professional sources, 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3364] "This measure consists of 53 items. It includes all 18 of the DSM-IV criteria for ADHD. In addition, 8 criteria for oppositional defiant disorder (ODD) and 12 criteria for conduct disorder (CD) are included, along with 7 criteria from the Pediatric Behavior Scale (Lindgren & Koeppl, 1987) that screen for anxiety and depression. The performance section of the VADPRS is an 8-item scale with four items relating to academic performance: (a) overall academic performance, (b) reading, (c) mathematics, and (d) written expression. Another four items evaluate relationships: (e) peers, (f) siblings, (g) parents, and (h) participation in organized activities."                                                                                                                                                                                         
## [3365] "This measure consists of 11 items and two scales, the Responsibility Goal Scale (5 items) and the Intimacy Goal Scale (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3366] "This 29-item measure consists of 15 items assessing perceived barriers to elder abuse reporting, and 14 items measuring perceptions of the most important reasons why elder abuse is underreported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3367] "The Norwegian 15-item Dispositional Resilience Scale has 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3368] "The measure contains a total of 132 items (22 items plus 110 follow-up items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3369] "There is a 15-item long form and a 6-item short form of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3370] "The Screening Tool for Asylum-Seeker and Refugee Mental Health has 9 items comprising two ‘immediate screen-in’ items, and a 7-item scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3371] "The SHALOM Spiritual Questionnaire--Hebrew Version contains 40 items: 20 items for the Experiences questionnaire and 20 items for the Values questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3372] "The worker version of this instrument consists of 41 items; the student version consists of 38 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3373] "The General Self-Efficacy Scale--12 Item; Spanish Version contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3374] "The VAL-ED contains 72 items, with two parallel forms (each with 72 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3375] "The final CCS consists of 15 items mirrored at the Community and the Personal level (30 items in total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3376] "The Clinical Competence Scale contains 19 items. The overall measurement model including interview and peer review items contains 28 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3377] "The Child and Adolescent Disruptive Behaviour Inventory--Urdu Version consists of two forms CADBI-Parent (41 items) and CADBI-Teacher (42 items), each comprised of five subscales including Oppositional Defiant Disorder toward Adults, Oppositional Defiant Disorder toward Peers/Siblings, Attention Deficit Hyperactivity Disorder - Hyperactivity/Impulsivity, Attention Deficit Hyperactivity Disorder-Inattention, and Academic and Social Competence."                                                                                                                                                                                                                                                                                                                                                                                                          
## [3378] "This composite measure contains 22 items (11 items per each of 2 separate scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3379] "The ABI-F consists of 73 items. The ABI-S consists of 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3380] "There are three versions of this measure: two 15-item versions (entire sample and nonstudent subsample) and one 8-item version (student subsample)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3381] "This 24-item measure consists of the following scales: Behavioural beliefs (9 items); Normative beliefs (8 items); and Control beliefs (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3382] "This measure consists of Benefit (10 items) and Risk (14 items) versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3383] "The scales each contain 4 items (8 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3384] "The Utopia Appraisal Task contains the following tasks for 33 items: Utopia Appraisal (12 items), Current Appraisal (13 items), emotion (10 items), and imagination writing tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3385] "The measure contains 24 items (full scale), or 9 items (short-form)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3386] "The full scale contains 36 items; the short version contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3387] "Each version of the SLA-D includes 26 items. The SLA-MB consists of 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3388] "The English version consists of 10 primary items (with additional probes) and the Mandarin Chinese version consists of 11 primary items (with additional probes)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3389] "This measure comprises 15 item, each reported from three different perspectives (victim role, aggressor role, observer role), for a total of 45 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3390] "The Multidimensional Psychological Flexibility Inventory contains 60 items. The short form of the MPFI consists of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3391] "The educator version contains 35 items; the student version contains 44 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3392] "The two scales each comprise 5 items, for a total of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3393] "The Kessler Psychological Distress Scale--Arabic Version includes 6-item (K6) and 10-item (K10) versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3394] "This 30-item measure consists of three 10-item scales. A 9-item g-FLUX scale can also be utilized."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3395] "The final measure consists of the 14-item Food scale and the 13-item Clothing scale. Each scale is also comprised of two control questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3396] "The Mother's School Involvement Version (STPM) consists of 21 items, and the Father's School Involvement Version (STPF) consists of 22 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3397] "This 21-item measure is divided into two parts. The first part of the questionnaire involves collecting relevant demographic details (4 items). The second part consists of 17 Likert-scale items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3398] "This measure comprises 16 items (2 items were removed from the original set of 18 following factor analyses)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3399] "This 54-item questionnaire includes three main sections: curricula domains, kindergarten teacher characteristics (11 items), and teaching approaches (8 items). The curriculum section consisted of four main domains: academic (10 items), social (11 items), cognitive (9 items), and emotional (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3400] "The Childhood Oxford-Liverpool Inventory of Feelings and Experiences--US Version contains 43 items, along with a companion parent-report measure, the Childhood O-LIFE (CO-LIFE) with 43 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3401] "The Child Post-Traumatic Cognitions Inventory--Korean Version contains 25 items for the original version and 10 items for the short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3402] "The checklist portion of the measure consists of 23 items, while the scale portion consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3403] "The MQs used in the Australian and German studies have 8 items. The MQ used in the United Kingdom study has 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3404] "This is a 30-item measure. A short version comprised of 10 items can also be utilized."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3405] "This 10-item measure consists of two 5-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3406] "The inventory is comprised of 179 items in the Functional Skills scales and 19 items in the Caregiver Assistance scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3407] "The number of items per scale are as follows: the Persistence Scale, 8 items; the Flexibility–Rigidity Scale, 9 items; the Self-Control Scale, 9 items; the Self-Realization Scale, 23 items; the Hopelessness Scale, 17 items; and the Emotional Vulnerability Scale, 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3408] "The 'Mind the Gap' Scale features two forms: Adolescents form (22 items) and Parents form (27 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3409] "The Self-Report Coping Scale--French-Canadian Versions consists of the following: Long-version (34 items), short version (20 items) and the parent version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3410] "The measure contains a total of 10 items (5 items per scale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3411] "The full AMDS contains 103 items. The short version comprises 54 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3412] "The General-Demand Orientated Care Questionnaire consists of two parts: DOC-G (19 items) and DOC-S (featuring six sections, with 3 to 9 questions per section)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3413] "The VASE contains 24 items. The VASE-R contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3414] "The measure contains 33 items, with 30 items contributing to the total score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3415] "This 10-item measure consists of two 5-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3416] "There is a 20-item adolescent version and 105-item parent-teacher version of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3417] "The measure comprises a total of 45 items, but 2 items are not to be included when computing a Total Scale score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3418] "The Quality of Life in Later Life Questionnaire is comprised a 64-item version and a 27-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3419] "This 25-item measure consists of five 5-item subscales. Four subscales cover problem areas (Emotional, Conduct, Hyperactivity, and Peer problems) and the ?fth subscale measures Positive prosocial behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3420] "MOST version 2 contains 24 items. MOST-Change (which corresponds to MOSTv1) contains 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3421] "The NADA-T contains 13 items; the NADA-S contains 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3422] "The Portuguese RPQ contains 22 items (1 item was removed from the original measure, following psychometric analyses)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3423] "The Hopkins Adult Reading Test comprised a total of 70 items, with two short forms, each with 35 items, HART-A and HART-B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3424] "The measure has 24 items. The abbreviated version has 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3425] "The APPC includes 56 items (patient version) or 58 items (nurse version)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3426] "There are 64 items for raising perception of the father and 59 items for mothers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3427] "The Canadian Health Care Evaluation Project Questionnaire contains 38 items in the patient version and 40 items in the family caregiver versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3428] "The Psychological Contract of Safety Scale consists of two scales: the 12-item employer obligations scale and the 15-item employee obligations scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3429] "The Defining Issues Test--Turkish Version contains four stories with 12 items each, for a total of 48 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3430] "The SCSMACS contains 59 Likert-type scale items distributed across three subscales: the 8-item Beliefs about Lesbian, Gay, and Bisexual (LGB) People Scale (BALGBS), the 5-item LGB Advocacy Self-Efficacy Scale (LGBASES), and the 46-item Lesbian, Gay, and Bisexual Advocacy Activity Scale – Revised (LGBAAS-R)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3431] "The 15-Item Dispositional Resilience Scale--Italian Version contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3432] "The Meal Quality Screener is comprised of the following sections: 8 major food categories (115 items), method of preparation (20 items), Added condiments, sauces, and fats (39 items), and one open-ended item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3433] "The WHOQOL-100 contains 100 items. The WHOQOL-BREF contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3434] "There is a 23-item calibrated bank and a 9-item short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3435] "The main 132-item measure consists of eleven 12-item scales. The measure can be accompanied by the Variable Response Inconsistency (VRIN; 21 items), True Response Inconsistency (TRIN; 16 items) validity scales, as well as the 14-item Unlikely Virtues index of social desirability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3436] "The Effective Lifelong Learning Inventory contains 90 items. The ELLI Standard Release Version 2 contains 74 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3437] "The Parent Partner Fidelity Tool is comprised of 28 items for three versions of the test. The parent/caregiver version is comprised of 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3438] "The Parenting and Family Adjustment Scales--Adapted for Developmental Disabilities contains 27 items across two scales: Parenting Scale (16 items) and Family Adjustment (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3439] "This 28-item instrument consists of the 19-item Sexual Consent Attitudes Scale and the 9-item Sexual Consent Behaviors Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3440] "The Attitudes to Science Teaching Scale contains 49 items. A shortened version contains 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3441] "This 15-item scale has two sets of items, one for in-service (7 items) and one for pre-service (8 items) teachers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3442] "The Children Rejection Sensitivity Questionnaire comprises 12 vignettes followed by 36 items (3 items for each vignette)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3443] "This 40-item measure consists of 20 positive and 20 negative items assessing Cognitive and Emotional components of empathy within the same task set. A 19-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3444] "This 22-item measure consists of two 11-item subscales: Desire and Pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3445] "This measure consists of 49 items and the following four modules: IPF module (10 items), aHUS module (12 items), generic module (16 items), and patient expectations module (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3446] "The final 28-item questionnaire has three parts. The first part collects information on gender, age, opinion of quality of health care given by PHC professionals and confidence in PHC professionals. The second (General) and third (Specific) parts consists of 17 and 11 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3447] "This 30-item measure consists of an 18-item Parenting Scale and a 12-item Family Adjustment Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3448] "This 50-item measure consists of ten 5-item subscales: Economic educational capital, Cultural educational capital, Social educational capital, Infrastructural educational capital, Didactic educational capital, Organismic learning capital, Actional learning capital, Telic learning capital, Episodic learning capital, and Attentional learning capital."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3449] "This instrument consists of 19 items (a four-factor version for international comparative analyses only retains 21 items, per the original NPST)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3450] "The QINAS consists of 23 items. The recommended revised version consists of 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3451] "This 11-item measure consists of a 6-item Science Self-Efficacy Scale and a 5-item Academic Perceived Competence scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3452] "The Drug Use Disorders Identification Test--Hungarian Version contains 11 items. The Drug Use Disorders Identification Test-Extended contains 54 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3453] "This 12-item measure is comprised of the 5-item Consumer Cosmopolitanism (COS) and the 7-item Consumer Ethnocentrism (CET) scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3454] "This is a 20-item measure. An 8-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3455] "The ESDQ has two versions: Self-Rating (51 items) and Partner (53 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3456] "The current version of the SED is a 35-item scale with three subscales: SED, diabetes specific (SED-D: 24 items); SED, medical situations (SED-M: 5 items); and SED, general situations (SED-G: 6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3457] "This 6-item measure consists of two 3-item subscales: Ought-approach (OAP) and Ought-avoidance (OAV)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3458] "Three aspects of school adjustment are rated using a total of 17 items: Truancy (6 items), School satisfaction (7 items), and Self-esteem (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3459] "This 19-item scale measures guanxi across three dimensions, namely employee guanxi in their organizations (6 items), supervisors (6 items), and colleagues (7 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3460] "This 19-item measure was divided into three dimensions, namely employees trust in their organizations (7 items), supervisors (7 items), and colleagues (5 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3461] "The BASIS as reported in Eisen, Grob, & Klein (1986) consists of 17 items; it was subsequently lengthened to 32 items (BASIS-32)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3462] "The Centrality of Events Scale--Turkish Adaptation consists of 20 items. A short 7-item version also exists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3463] "The 9-Item Utrecht Work Engagement Scale--Brazil-Portugal Transcultural Adaptation contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3464] "The instrument comprises a 30-item short form and a 20-item very short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3465] "There is a long, 28-item version of this measure, as well as two short versions (5- and 9-items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3466] "This 12-item subscale consists of two 6-item subscales: Aversion to risky driving subscale and Perceived likelihood of a motor vehicle crash occurring subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3467] "The Mood and Feelings Questionnaire--Danish Version consists of a child self-report part called MFQ-C, which has 33 items, and a parent-report part called MFQ-P, which has 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3468] "The Safety Climate Interview and Scale is comprised of the interview protocol (19 items) and the safety climate scale (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3469] "The Patient Evaluation Scale includes a full version (28 items) and a short-form version (18 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3470] "Perceptions of two vignettes are measured using 18 items (9 items per vignette)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3471] "The survey contains 60 items. Within the 60 items, the Supervisor questionnaire contains 13 items, employee questionnaire contains 32 items, and the customer questionnaire contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3472] "This measure contains 26 items that is used in coordination with the 30-item EORTC QLQ-C30 instrument and the items are numbered as questions 31-56."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3473] "The full PRAQ for clinical practice (PRAQ-practice) consists of 44 items. The PRAQ for outcome measurement (PRAQ-outcome) consists of a subset of 33 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3474] "The LGBAAS-R consists of 46 items distributed across Individual level ( 23 items), School level (15 items), and School level (8 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3475] "The DMS-SF-15 consists of 15 items. The DMS-SF-20 consists of 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3476] "The long form consists of 64 items; the short form consists of 42 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3477] "The Child version of this measure consists of 28 items, while the parental measure consists of 33 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3478] "The adult survey contains 7 items. The youth survey contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3479] "The DSM-5 Level 2 Sleep Disorders Scale--Turkish Version is comprised of a 9-item Child Form and an 8-item Parent Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3480] "The questionnaire is comprised of 13 items in the Western sample and 11 items in the Indian sample."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3481] "The ADKnowl includes 23 item-sets (104 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3482] "This is a 23-item measure. The short form consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3483] "The full form NIRO contains 27 items, while the short form contains 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3484] "The PMUM includes full (27 items) and short (9 items) versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3485] "This measure consists of 22 items (11 items of Perpetration and 11 items of Victimization)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3486] "The Chinese CAPES is comprised of two scales: 24-item Intensity and 18-item Self-Efficacy scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3487] "This 8-item measure consists of two 4-item subscales: Self-efficacy to manage work-family conflict and Self-efficacy to manage family-work conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3488] "This 14-item measure consists of two 7-item subscales: Anticipated work-interfering-with-family conflict and Anticipated family-interfering-with-work conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3489] "The Matched-Pair Communication Instrument contains one 19-item questionnaire for doctors and one 19-item questionnaire for patients."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3490] "The Dutch PG-SGA is comprised of two components: Patient-Generated (55 items) and Professional (134 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3491] "The IPC Survey is comprised of 29 items and an 18-item short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3492] "The questionnaire consists of the 30-item EORTC QLQ-C30 and 24-item EORTC QLQ-CX24."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3493] "The questionnaire consists of the 30-item EORTC QLQ-C30 and 24-item EORTC QLQ-CX24."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3494] "The 5C Scale contains long (15 items) and short (5 items) versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3495] "The HAQ-CP is comprised of three questionnaires (Child and Parent = 15 items) and Therapists (11 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3496] "The ASPD Scale contains 22 items and the SPD Scale contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3497] "The AQA-L contains 42 items and the AQA-S contains 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3498] "This measure comprises 21 items, but a factor analysis yielded a 14-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3499] "The test consists of 80 items (speaker pairs) presented in two blocks (40 items with male speakers, 40 items with female speakers)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3500] "This 16-item measure consists of four 4-item subscales: Psychological detachment, Relaxation, Mastery experience, and Control during leisure time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3501] "The full initial test included 44 items. The authors performed an analysis on a reduced 26-item version in the current study, so that they could create a version applicable to three different treatment groups."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3502] "This 9-item scale consists of three 3-item subscales: Autonomy, Competence, and Relatedness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3503] "The Child and Adolescent Mental Health Service Satisfaction Scale includes 2 outpatient versions, CAMHSSS (39-item and 20-item), and one for inpatients and day-patients, CAMHSSS-Unit (39 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3504] "The Bisexual Microaggression Scale for Women contains 38 items and the Bisexual Microaffirmation Scale for Women contains 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3505] "The UWES-J contains 9 items. The UWES-J contains 17 items, however, the fit of the shortened version was superior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3506] "The CP QOL-Teen is comprised of a 71-item caregiver proxy version and a 57-item adolescent self-report version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3507] "The survey asks participants to indicate if they weigh themselves. If yes, frequency (9 options, including a write-in option) is noted for various locations (i.e., home, work or fitness center/gym). Respondents choose from 10 reasons why they self-weigh. They also select from a list of 14 possible 'actions' to indicate what they do if they find their weight is over or under a desired number on the scale. Participants select from a list of 7 possible reasons why they choose not to weigh themselves. Finally, they respond to 5- and 7-point Likert-type questions regarding their perceptions of psychological consequences (9 questions) of weighing, as well as the frequency of behaviors (10 questions) to monitor body size and shape."                                                                                                          
## [3508] "The measure contains 23 items in total: 19 item plus four socio-demographic items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3509] "While this measure has 53 items, 4 items were not assigned to any subscale were excluded from the factor analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3510] "The BIS-11T contains 30 items; The BIS-15T contains 15 items; The BIS-Brief-T contains 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3511] "M-Reappraisal (4 items), Suppression (6 items), Proper Voicing (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3512] "This scale consists of 22 items (18 items that are evaluated and 4 filler items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3513] "The male version includes 24 items and the female version includes 29 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3514] "This measure has three parts: (1) questions on demographic and background variables; (2) 24 questions on nursing care activities; (3) 17 questions about the reasons for omitting or delaying nursing care activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3515] "PAC: Total, 55 items; Formal, 15 items; Informal, 40 items. CAPE: Total, 55 items; Formal, 15 items; Informal, 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3516] "The youth/adolescent version contains 50 items, and the adult version contains 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3517] "This measure consists of 20 items. A 7-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3518] "This 6-item measure consists of two 3-item subscales: Internal and External."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3519] "This 12-item measure consists of three 4-item subscales: Friends and family, Work colleagues, and Healthcare workers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3520] "The BAPPS is comprised of the BAPPS-P (24 items) and the BAPPS-S (19 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3521] "This measure consists of 53 items encompassing the following three subscales: Friends and family (17 items), Work colleagues (19 items), and Healthcare workers (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3522] "The BPSE-R is comprised of two forms: Preprimary (18 items) and Early Primary (22 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3523] "The Italian MSLSS is comprised of a 40-item long version and 30-item abbreviated version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3524] "The FFQ for Buenos Aires and Lima had a total of 63 items; there were 55 items for the FFQ in Medelin, 60 items for Montevideo, 58 items for Santiago, 67 items for Sao Paulo, and 68 items for Teresina."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3525] "The Parent/Carer version includes 18 items, and the Children's version includes 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3526] "This measure consists of 36 items for all pregnant women and 43 items for working pregnant women."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3527] "This 20-item measure consists of four 4-item subscales along with four filler items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3528] "The student survey contains 21 items. The supervising nurse survey contains 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3529] "The translated measure contains 10 items (following the removal of 1 item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3530] "This 24-item measure is comprised of three symptom scales – Symptom Experience (11 questions), Body Image (3 questions) and Sexual/Vaginal Functioning (4 questions), four symptom items (lymphoedema, peripheral neuropathy, menopausal symptoms and sexual worry), and two functional items (sexual activity and sexual enjoyment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3531] "As versions of the SCORE, the SCORE-40 contains 40 items while the SCORE-15 contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3532] "The combined measure (i.e., self-report & caregiver versions) contains 44 items. However, if administered separately, the adolescent version is a shortened and modified 7-factor, 25-item version. The caregiver version is a modified 23-item version with six dimensions of the original IPQ-R."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3533] "The measure contains 40 items. The original full item-bank contained 138 items. The authors encourage researchers to continue to refine the 40-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3534] "The Afrikaans version contains 14 items. The Setswana version contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3535] "This measure consists of 31 items: 23 questions assessing 4 PTSD symptom criteria, 2 questions assessing depersonalization and derealization, and 6 questions assessing trauma-related functional impairment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3536] "The original questionnaire consists of 39 items; the brief version consists of 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3537] "The ARQ:PR/SR comprises a 26-item Parent version and a 20-item Adolescent self-report version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3538] "This is an 18-item scale, though only 13 items contribute to the total score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3539] "The questionnaire contains 43 items for the English and Spanish versions, and 40 items for the Chinese version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3540] "There are 10-item and 6-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3541] "The measure contains 14 items. However two items were not included in the final score tabulation with the French sample. The authors note future research will attempt to revise those 2 items for the French version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3542] "The F-SIM contains 126 items, divided into 55 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3543] "The Chinese B-YAACQ is comprised of 24-item and 18-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3544] "The EAPRS-Abbreviated and EAPRS-Mini consists of 113 items and 38 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3545] "The optimal dynamic risk scale (8 items). The dynamic risk scales for: Non-Aboriginal men (11 items); Aboriginal men (8 items); Non-Aboriginal women (6 items); Aboriginal women (9 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3546] "The reduced version contains 10 items. The expanded version contains 16 items. The brief 10-item version is the suggested version for assessing work addiction in Brazilian workplaces."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3547] "The full measure contains 19 items. The 'short' version aligning with FMS items of the TGMD, version 3 (Webster & Ulrich, 2017) contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3548] "The EQ-Short contains 22 items; The SQ-Short contains 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3549] "The MCISCQ-Parent includes an 11-item scale (Fathers) and a 10-item scale (Mothers)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3550] "This IS contains 15 items and the IS-9 contains 9 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3551] "This measure consists of a 24-item child version and a 30-item parent version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3552] "Following calibration, 106 items remained for Picture Naming and 93 items remained for Expressive Verbs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3553] "This instrument contains 17 items in the long form; 12 items in the short form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3554] "This measure consists of 137 items. When abbreviated scales are used, the MSQLI contains 80 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3555] "This measure consists of 32 items, which includes 8 demographic items, 23 items covering the five subscales, and 1 global item capturing teaching staff perceptions of overall satisfaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3556] "This measure consists of 24 items comprised of 11- and 13-item subscales, respectively, with slight phrasing differences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3557] "This 30-item measure consists of 16-item and 14-item scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3558] "The patient version consists of 17 items and the professional version consists of 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3559] "The COH-INT consists of 29 items. The COH-EXT consists of 39 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3560] "The Measures of Attitude and Subjective Norms Toward Organ Donation consists of a total of 38 items that are spread across 5 scales as follows: the Direct Measure of Attitude (10 items), the Direct Measure of Subjective Norm (7 items), the Indirect Measure of Attitude–Favorable Outcome (13 items), the Indirect Measure of Attitude–Unfavorable Outcome (4 items), and the Indirect Measure of Subjective Norm (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3561] "The SET-Q contains 50 items. The SET-SF contains 21 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3562] "The ESFS consists of 8 items. The final model including the ESFD consists of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3563] "The test contains 16 items, with 3 test forms (48 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3564] "This measure consists of 9 items, each in reference to one's mother, father, romantic partner, and close friend (total of 36 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3565] "Two modules for the CROBE-DHH resulted in 11 items for children age 5–7 and 15 items for children 8–10 years."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3566] "Part 1 contains 77 items. Part II contains 23 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3567] "This measure has 17 items and also includes an 8-item shortened version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3568] "The TRS-EAC is comprised of two scales: Early Academic Skills (35 items) and the Early Academic Enablers (46 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3569] "The measure contains 24 items (4 items per each of 6 subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3570] "The final version of the ISSIQ-A is composed of 25 items. The Functions of NSSI section consists of 31 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3571] "The SATAQ-4R-Female contains 31 items. The SATAQ-4R-Male contains 28 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3572] "This measure contains 17 items. An alternative version of the measure contains 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3573] "The main portions (the 2nd sections) of the two questionnaires are comprised of 12 items for dentists and 10 items for psychiatrists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3574] "This measure consists of a 12-item and a 4-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3575] "The LEOS contains 37 items; The SEOS contains 36 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3576] "The WHOQOL SRPB consists of 132 items, with 100 items derived from the WHOQOL-100 and 32 derived from the 8 SRPB facets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3577] "This scale consists of 47-item, 30-item, and 20-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3578] "This measure consists of a total of 43 items, though 42 items are used for analyses (the first item in the test is excluded from analyses because it is a dummy item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3579] "This measure consists of 18-item and 14-item versions based on the choice to retain items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3580] "This measure has 257 items. The final test instruments include 80 items for KBA, 53 for KSD and 51 for KSM. The SSKSM test consists of 73 items and 13 complex situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3581] "This measure includes 34 items for the adult version and 28 items in the child version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3582] "The patient version of the revised DRS contains 10 items, while the caregiver version contains 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3583] "Both the 17-item and 3-item versions of the UWES were translated to Lithuanian."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3584] "The item-based feigning indicator included 60 items and 33 item pairs, for a total of 79 different IOP items (some of the individual test items included in the indicator were also part of one or more item pairs). The final latency feigning indicator included 63 items, 4 of which received double weights."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3585] "This measure consists of 31 items, each answered twice to reference both junk food and healthy food (62 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3586] "The WB-Pro contains 48 items. The Global well-being short versions contain 5- and 15 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3587] "This is a 20-item scale. An 8-item short version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3588] "This measure consists of 18-item, 9-item, and 6-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3589] "This measure has 20 items in the PSLS-AS-Mother version and19 items in the PSLS-AS-Father version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3590] "The SHSE-L has 25 items and the SHSE-S has 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3591] "The TIBS-A includes 15 items and the TIBS-C includes 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3592] "This measure includes a long (18-items) and a short (10-items) version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3593] "This measure consists of 31 items, each measured twice to inquire about occurrence and value (62 items in the total score)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3594] "This measure consists of 23 items. A short version is comprised of 8 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3595] "The VGS contains 21 items, with a 15-item Harm to Self scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3596] "The LSAS consists of fear (24 items) and avoidance (24 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3597] "The MAPPSS has 8 items and the MAPSS-SF has 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3598] "This is a 20-item (Kenya) and 22-item (India) measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3599] "This measure consists of 37 items. A 15-item short version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3600] "This measure consists of 22 items–4 sociodemographic/economic items and 18 items assessing the scales constructs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3601] "The INSPIRE contains 27 items. The Brief INSPIRE contains 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3602] "The proxy-report contains 70 items. The self-report contains 57 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3603] "The HASKI-self contains 73 items. The HASKI-clin contains 40 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3604] "This measure consists of 18 items. Its short form consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3605] "This is an 11-item scale. The long version is comprised of 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3606] "This measure consists of 12 items. A short version comprising 6 items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3607] "This is a 10-item scale. A short version comprising 4 items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3608] "This measure consists of 13 items. A short version comprising 4 items is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3609] "The MLPQ includes a full 28-item version and short 10- and 4-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3610] "There is a 10-item Mania scale, plus two parallel 10-item Depression scales, Forms A and B."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3611] "The NGS consists of 16-item and 7-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3612] "This questionnaire consists of 48 items across three scales (Pre-Event, 22 items; Event, 12 items; Post-Event, 14 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3613] "This measure consists of 15 comparative video clips, a 16-item rating scale to assess teacher-student interactions, and a 17-item rating scale to assess differentiated instruction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3614] "The short form contains 9 items, while the ultra short form consists of 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3615] "This instrument contains 20 items (5 items on each factor)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3616] "The Reduced Load Access consists of 5 items. The Reduced Load Culture and Integration Scale consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3617] "The UWRS includes a 28-item item bank with 4- and 8-item short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3618] "There is a total of 23 items across the questionnaire (17 items) and the interview guide (6 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3619] "This measure has 67 items (57 items across the scales and 10 overall index items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3620] "The final version of the questionnaire consists of 55 items translated into 22 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3621] "The iSHARE Questionnaires consist of two separate questionnaires: the 15-item iSHAREpatient and the 15-item iSHAREphysician."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3622] "This measure consists of 26 items. A 25-item version was also created for Hong Kong participants."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3623] "The Student Questionnaire consists of 7 items and the Teacher Questionnaire consists of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3624] "The final form of the checklist consists of 42 items for all children and 7 items for children with speech; thus, the checklist includes a total of 49 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3625] "This measure consists of a total of 52 items, though the main portion (Parts 3 and 4 combined) is comprised of 47 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3626] "This measure consists of a total of 244 items. However, only a portion of items are presented during the time of testing as based on user progression. Twenty items are presented for the Form Section, 15 items are presented for the Meaning Section, and 10 items are presented for the Use Section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3627] "The CPBQ-0 contains 61 items. The CPBQ-1 contains 69 items. The CPBQ-2 contains 74 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3628] "This is a 25-item scale. The 20 items that loaded on factors are included, as well as five additional items from the 31-item AYCE that were judged to be of independent clinical interest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3629] "Not including the open-ended item, the final Grid instrument contains 19 items (one item on the 20-item Grid was eliminated following a post-test)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3630] "The full version includes 39 items and the short version in cludes 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3631] "This measure has 100 items in the Pseudo-word-G-3-4 version and 105 items in the Pseudo-word-G-5-6 version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3632] "This measure consists of a 23-item bank, a 5-item static screener, and a computerized adaptive test that requires an average of 6.2 items to be administered."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3633] "The 24-item scale (6 items per subscale) is recommended. The authors note that 30-item (10 items per subscale) and 12-item (4 items per subscale) versions are also acceptable."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3634] "This measure consists of 17 items (16 items across the three dimensions of responsible tourism perceptions, and 1 item assessing overall perception)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3635] "This measure consists of 28 items. A 12-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3636] "There are 8 CST screening questions embedded within the full original 17-item questionnaire. In Greenbaum et al. (2018), the CST screen was modified to 6 items (with one split question, resulting in 7 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3637] "This measure consists of 10 items (8 items comprising the factors and 2 filler items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3638] "The items for reasons to seek and not to seek PPD screening consisted of 37 items and 44 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3639] "The youth scales consists of 29 items, while the adult scales consists of 11 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3640] "This full version includes 40 items, while the short-version includes 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3641] "The trait version consists of 15 items, while the state version is comprised of 5 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3642] "The full form contains 21 items, while the short form contains 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3643] "The TXP-A comprises 29 items while the TXP-C includes 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3644] "This is a 38-item measure. Three of the initial 41 items (BI1, BI3, and BI8) were removed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3645] "The initial version of the A-ToM comprised 17 social items and 8 physical items (25 items total). The final version contains 12 items (6 social and 6 physical)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3646] "The Chinese Y-BOCS-II consists of a 67-item symptom checklist and 10-item severity scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3647] "This measure consists of a long (18-item) and a short (8-item) version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3648] "This measure includes 32 items assessing views about aging and 17 items assessing the experience of health-related changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3649] "This measure consists of two 12-item versions and one 16-item version, though the 12-item version (Version 3) is recommended for use."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3650] "This measure consists of 34 items: 15 questions assessing knowledge about epilepsy, 5 questions assessing awareness of epilepsy, 5 questions addressing practices regarding epilepsy, and 10 questions investigating attitudes towards epilepsy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3651] "This measure consists of 102 items (17 items rated 6 times)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3652] "This measure includes a 17-item (AFQ-Y) and an 8-item version (AFQ-Y8)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3653] "The Youth Report Version of the Adapted TESI consists of 24 items. Parent Report Version of the Adapted TESI consists of 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3654] "The Female Perpetrator and Victimization scales consists of 35 items. The Male Perpetrator and Victimization scales consists of 33 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3655] "This measure consists of 30 items. An 8-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3656] "This measure includes a 15-item version and a 5-item short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3657] "The Teacher Survey includes 122 items while the Parent Survey includes 42 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3658] "The KT consists of 15 items and the SEI consists of 39 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3659] "This measure includes 17 items (there are also 10 items for personal data)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3660] "The SWELL-CE contains 59 items for SA patients and 53 items for NSA patients. The SWELL-CE14 contains 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3661] "Participant self-assessments consisted of 5–9 questions measuring the basic understanding of materials received and 1 question assessing the usefulness of the material covered (total of 10 items). In terms of the facilitator-focused observer-rated measures, items varied based on the content delivered during a given program day."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3662] "This measure includes a 44-item item bank, as well as 8- and 4-item short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3663] "This measure includes a 42-item item bank, as well as 8- and 4-item short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3664] "This measure includes a 39-item item bank, as well as 8- and 4-item short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3665] "There are two versions of this measure–a 22-item version and a 10-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3666] "This is a 5-item scale. A 4-item version has also been proposed by the authors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3667] "The French BPFS-C consists of 24-item long and 11-item short versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3668] "This measure comprises a 37-item bank and 8- and 4-item short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3669] "The PROMIS® Pediatric Item Banks--Spanish Version consists of two PAC banks (22 total items), three SWB banks (125 total items), two EOS banks (45 total items), and one FAM bank (47 total items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3670] "This measure consists of 30 items, with 5 items each across the following domains: Skills and talents, Physical impairments, Intellectual functioning, Emotional functioning, Social relationships, and Spiritual/existential concerns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3671] "This measure consists of 124 items. Based on simulation studies, it can be expected that a 10-item PROMIS PF CAT will be able to measure PF with high precision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3672] "This is a 17-item measure. A reduced 9-item version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3673] "This is a 47-item measure, including the 8 items for socio-demographics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3674] "This measure consists of 36 items in total, though the main portion of the instrument is comprised of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3675] "This 16-item measure is comprised of the 8-item DECI and the 8-item DECE scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3676] "This measure consists of a 4-item observation tool and a 6-item checklist."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3677] "This measure consists of 12 items, with each content dimension measured by 3 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3678] "This measure consists of a 26-item long version and a 10-item short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3679] "This measure consists of 12 items (3 items per each emotion assessed)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3680] "This instrument is comprised of 35-item Infant and Toddler versions, as well as a 41-item Preschool version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3681] "This measure is available for use in two different lengths: 30 items or 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3682] "This measure consists of 12 items–8 items assessing Persuasive bullshitting and 4 items assessing Evasive bullshitting."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3683] "This measure consists of 58 items. Concerning the removal of the 14 items that did not factor, that determination will not be made until data from the larger sample are collected—because they may add new theoretical place domains and dropping them could “compromise the integrity of the data,” (Osborne, Costello, & Kellow, 2008)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3684] "The Long Form contains 18 items and the Short Form contains 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3685] "This measure consists of 25-item and 24-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3686] "The long and short forms consist of 32 items and 8 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3687] "This measure consists of 35 items. There is also a Brief version that consists of 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3688] "The LE-PANAVA and LE-PANA-M consists of 5 items and 1 item, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3689] "The questionnaire consists of fear (24 items) and avoidance (24 items) subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3690] "The MKP-RMC consists of 46 items in both knowledge and practice sections (23 items in each)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3691] "This measure consists of 6-item and 3-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3692] "The short form contains 21 items. The long form contains 45 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3693] "This measure includes a 14-item and brief 6-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3694] "This measure consists of the 19-item Societal Anti-Muslim Discrimination Index and the 9-item Interpersonal Anti-Muslim Discrimination Index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3695] "The female version contains 17 items. The male version contains 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3696] "This instrument contains a 21-item version designed for interactive mHealth apps, and a 18-item version designed for standalone mHealth apps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3697] "There are two versions: the 19-item (Long) and 6-item (Brief) versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3698] "This measure consists of 70-item and 28-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3699] "This measure has 189 items, with 63 items each for assessing SRT in a respondent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3700] "This is a 45-item measure with each of the three constructs consisting of 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3701] "This are 19-item version (long version) and 12-item (short) versions. The short version provided stable factor structure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3702] "This measure consists of 30 items, with 26 items comprising eight constructs and four additional items used to collect users' experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3703] "This instrument is comprised of the 37-item Child EOT Questionnaire, the 38-item AYA EOT Questionnaire, and the 38-item Parent/Caregiver EOT Questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3704] "The SEQ-Insider measure consists of 18 items and the SEQ-Patient consists of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3705] "This measure consists of 20 items. However, final CSEs scores were calculated using 19 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3706] "The 5-module survey included 25 items (not including demographic items). The first module contained 9 items, which were analyzed separately to create a summary stigma measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3707] "The T1DAL includes parent and partner versions for five age bands: Parents of young children age < 8 (27 items), of children age 8–11 (22 items), of adolescents age 12–17 (30 items), and of young adults age 18–25 (20 items); and Partners of adults age 18+ (25 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3708] "This measure consists of a total of 14 items (7 items assessing authentic pride and 7 assessing hubristic pride) which are measured twice (once as a state measurement and again as a trait measurement)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3709] "This measure is an 18-item self-report inventory. Each of the 18 items is completed three times: once for the frequency of the racist event in the past year, once for the frequency of the racist event during one's entire life, and once for the appraisal of the stressfulness of the racist events (only 17 items are completed for appraisal)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3710] "This is a 16-item measure, however, a 12-item version (excluding the 4-item Conformity subscale) is also provided."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3711] "The self-reported version consists of 33 items, while the parent version is comprised of 34 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3712] "This is a 16-item measure, with the ability to become 8- and 4-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3713] "The teacher form consists of 58 items, while the parent and student forms consist of 51 and 46 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3714] "This instrument contains 16 items, with 4 items distributed across each of the 4 factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3715] "This instrument consists of 40 items (5 questions x 8 trials)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3716] "The career firefighter self-report survey consisted of 67 questions and the volunteer firefighter version consisted of 60 questions; however, the seven additional items administered to career firefighters were not used in the development study (except for one item which was described by the authors)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3717] "This measure consists of 14-item and 18-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3718] "This is a 10-item measure for the Latin American countries and an 8-item measure for Chinese populations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3719] "The survey consists of 97 items, with an additional optional 112 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3720] "This instrument contains 80 items in its full version and 20 items in its short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3721] "The long version consists of 21 items. The short form consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3722] "This test contains 20 items (10 items in Form A, and 10 items in Form B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3723] "This measure consists of 16-item peer norm and 16-item collective norm scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3724] "This measure consists of 36 items (6 items per subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3725] "The original CPTI contained 64 items across 7 subscales. An additional subscale containing 9 items was added later."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3726] "Scope-of-scanning is assessed with 24 items and frequency-of-scanning is measured using 27 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3727] "The 7C scale includes a a full version of 21 items and a short version of 7 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3728] "This measure consists of 12 items (6 items per dimension)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3729] "This measure consists of 42 final items which resulted from the removal of 1-2 items from each subscale at the factor analysis stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3730] "This measure consists of 8 items which resulted from the removal of 2 items from the initial 10-item scale at the factor analysis stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3731] "This measure consists of 9 items, which resulted from the removal of 1 item from the initial 10-item scale at the factor analysis stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3732] "This measure consists of 9 items, which resulted from the removal of 1 item from the initial 10-item scale at the factor analysis stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3733] "This measure consists of 16 items, which resulted from the removal of 1 item from the initial 17-item scale at the factor analysis stage."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3734] "This measure consists of 33 items, though the aggregate scales are comprised of 28 items (there are five stand-alone items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3735] "The long form contains 80 items. The short form contains 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3736] "There are two versions: Child (17 items); Adolescent with Siblings (26 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3737] "The authors offer support for 16-item, 18-item, and 20-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3738] "This is a 25-item measure for both versions, 20 items related to transition practices and 5 open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3739] "This instrument contains 12 items. A 10-item version is also available that omits compassionate self-instructions or gestures made in specific compassion meditations when such meditation instructions are not needed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3740] "This measure consists of 39 items. A slightly shorter version of the measure consists of 35 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3741] "This measure consists of 36 items, 12 items for each subtype."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3742] "This instrument contains 17 items (10 items in Part 1, and 7 items in Part 2)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3743] "This measure consists of 40 items (vignettes). The 12-item B-HCBS is comprised of four, 3-item subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3744] "This instrument contained 51 items (36 items assessing Daily Green Action and 15 items assessing Six-Month Green Action)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3745] "The DNT consists of 43 items, while the shortened version (DNT15) contains 15 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3746] "Psychometric analyses were run on 23 items in the Polish sample. However, there are 26 total items that can be analyzed for possible inclusion in future studies with other samples."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3747] "The Arabic PAI includes a 21-item modified version and a 25-item revised version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3748] "This measure includes a 15-item version for girls and a 7-item version for boys."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3749] "In addition to the 15 demographic items in the beginning of the survey, there are 68 items across the four main sections (83 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3750] "This instrument is available in both a 28-item and a 24-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3751] "This measure consists of 18 items assessing telehealth usability and 8 questions collecting demographic-, privacy- and disease-related information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3752] "This measure includes 111 items (3 items each for the 17 Requirements scales and 20 Resources scales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3753] "This is a 24-item measure. A subset of 13 items was also supported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3754] "In total, this measure consists of 120 items. However, the main portion of the measure, which is comprised of the six indices, consists of 43 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3755] "This measure consists of 65 items, but can be abbreviated to include 25 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3756] "This is a 56-item measure, comprised for 28 items each for sexual fantasies and behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3757] "This measure consists of 14 items. There are also 10-item and 4-item shortened versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3758] "There are 33 items, however 28 items were used for analysis."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3759] "This measure consists of 12 items spread across four dimensions (3 items each): Affect, Loyalty, Contribution, Professional respect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3760] "The pre-screen is a 46-item initial assessment instrument, and the PACT full-assessment is a 126-item in-depth assessment instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3761] "This measure consists of 18 items, though only 16 items are scored."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3762] "This measure consists of 10 items for the youth report and 15 items for the parent and teacher reports."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3763] "The full version includes 33 items and the short form includes 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3764] "The A-STAM measure (patient version) contains 38 items the A-STAM (clinician version) contains 42 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3765] "The CAAI includes a 35-item and 19-item versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3766] "This measure includes 3 sections. The first section includes 14 items, the second section includes 38 items, and the last section contains a list of 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3767] "This is a 15-item measure. A short form, consisting of 4 items, was also developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3768] "This measure consists of a 9-item Pregnancy Scale and a 10-item Postpartum Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3769] "The revised ECNA tool contained 17 items measuring individual factors and 12 items measuring organizational factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3770] "This measure includes a 20-item version and 10-item short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3771] "The Chinese FROGS consists of 18 items. The Chinese mini-FROGS consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3772] "This measure consists of 24 items. Its short form consists of 6 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3773] "There is a 19-item extended version and a 10-item short version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3774] "The SLS-J includes 30 items and its short form (SLS-J-short) includes 18 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3775] "This measure includes 28 items that assess young children’s participation and 46 items that assess environmental impact on participation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3776] "There are 30 items pertaining to dysphagia (30 items) and includes a dysphagia symptom battery (DSB) assessing the frequency of swallowing-related specific symptoms with 14 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3777] "The HILL includes 29 items and the HILL-Shortened includes 13 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3778] "This measure consists of 104 questions: Part 1 (12 items), Part 2 (8 items), and Part 3 (84 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3779] "The ATI consists of 33 items. A shortened version is comprised of 16 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3780] "The PRS includes a 30-item long version and 16-item short-version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3781] "Each subtest consists of the same 36 items, for a total of 216 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3782] "This measure consists of 23 items. A 6-item App-specific scale (Section F) is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3783] "This measure consists of 15 items. A 5-item short form is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3784] "The patient and provider versions are comprised of 17 items and 7 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3785] "The total measure consists of 68 items. An average of 17 items per participant is required to achieve and maintain a 0.3 standard error of measurement in the SAD severity estimate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3786] "The HL-3S consists of 10 items in each of 3 tests (30 items total)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3787] "This instrument is comprised of a 15-item and 10-item interview guide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3788] "The long form consists of 26 items, while the short form features 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3789] "The full measure consists of 305 items, with participants completing an average of 24 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3790] "This measure consists of 31 items: 30 items, plus one socio-demographic question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3791] "The final item sets thus contained 17 items for the TIS‐Therapist and 12 items for the TIS‐Booklet."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3792] "This 21-item scale consists of 12 items for persons not working (Scale A), and 9 items for persons working part-time or full-time (Scale B)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3793] "This measure has two versions, a long version with a total of 31 items, and a short version with 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3794] "The midterm model of the CCS included 26 items. The final model includes 32 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3795] "This measure consists of 47 items with a subset of 10 items comprising a measurement model."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3796] "The EIPS is comprised of two versions, the Pre-transition EIPS (20 items) and the Post-transition EIPS (17 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3797] "This measure consists of 12 items with an optional 6-item component."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3798] "The 10-item measure consists of the 5-item Work-Family Conflict (WFC) scale and the 5-item Family-Work Conflict (FWC) scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3799] "This measure consists of 31 items. The authors also constructed a 21-item brief form along with four separate short forms: one content-balanced 6-item short form with two items from each subdomain, and three subdomain-specific short forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3800] "The Sleep Scale–Short Version consists of 9 items. The Psychological Functioning at Work Scale consists of 17 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3801] "This measure consists of 27 items for the Father Form, 29 items for the Mother Form. Also included with the measure are two \"built-in\" criterion-related sub-scales which include a 6-item Depression scale and an 8-item Social Desirability scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3802] "The Mother Form is comprised of 35 items and 41 items are present in the Father Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3803] "This instrument is comprised of a 34-item GP survey and a 40-item CP survey. Of these, 20 items are identical for both GPs and CPs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3804] "This is a 7-item scale. A very brief 2-item version is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3805] "This measure consists of 39 items. However, due to poor psychometrics a a short version including 11 items is proposed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3806] "This measure consists of a 24-item Family Outcomes section and a 17-item Helpfulness Indicators section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3807] "The final adapted C-FASM included a 10-item method checklist and a 15-item function checklist of NSSI, and other characteristics of NSSI."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3808] "Although 19 items are rated during the SIPS/SOPS, only 5 items categorized under the heading of positive symptoms domain are considered for at-risk criteria. The SIPS-B consists of 4 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3809] "This measure is comprised of a 22-item questionnaire for adults, and a 30-item questionnaire for children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3810] "The student-report engagement scale has 33 items and the teacher-report engagement scale has 20 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3811] "The final EC version includes 15 questions, and the SA version includes 8 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3812] "This is a 23-item measure, which includes a 9-item measurement model and 7 additional demographic questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3813] "This measure consists of 47 items that are spread across 33 questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3814] "The full version of this measure consists of 39 items while two shorter versions are comprised of 25 and 13 items, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3815] "This measure consists of 20 items. A shortened version consists of 12 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3816] "This measure consists of 20 items. Its short version consists of 10 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3817] "There are 8-item (PEU8) and 4-item (PEU4) versions of this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3818] "This measure consists of 10 question expressed across 17-items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3819] "The MENA-IM consists of the original 20-item version and 11-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3820] "This measure consists of 25 items: CCGIS-B (10 items); CCGIS-KS (6 items); CCGIS-AB (5 items); CCGIS-PE (4 items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3821] "This is an 8-item measure. A shortened 5-item version is available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3822] "This instrument has a 36-item version and a 12-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3823] "This measure consists of a 35-item version and a 21-item version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3824] "The FMA-UE consists of 63 items. The FMA-LE is comprised of 43 items. Altogether, there are 106 items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3825] "The older adults’ and caregivers’ versions contain 22 questions and 19 questions, respectively."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3826] "This shortened scale is comprised of 10 items from the original 24-item measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3827] "This measure consists of 25 items, though 17- and 15-item versions have also been developed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3828] "The TAHFT includes a 14-item full version and 8-item brief version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3829] "Items are split into three sets for the pilot: set 1 (181 items, including practice items) consists of items from all levels, set 2 (55 items, including a demonstration item and practice items) consists of Levels 1–5 items, and set 3 (62 items, including two demonstration items and practice items) representing all item levels, with 40% of the items overlapping between sets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3830] "This measure consists of 10 items. However, use of the 9-item version is recommended."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3831] "This measure consists of 18 items (6 items for each subscale)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3832] "This measure includes the following: Emotion recognition (four 20-item alternative forms), Social perspective taking (8 items), Social problem-solving (4 vignettes), and Self-control (delay of gratification and frustration-tolerance tasks)"
table(records_wide$NumberOfTestItems) %>% sort() %>% tail(20)
## 
##  This measure consists of 8 items.          This is a 9-item measure. 
##                                272                                281 
## This measure consists of 18 items.         This is a 14-item measure. 
##                                281                                290 
##  This measure consists of 6 items.  This measure consists of 5 items. 
##                                290                                292 
##  This measure consists of 4 items. This measure consists of 20 items. 
##                                293                                297 
##          This is a 3-item measure.         This is a 16-item measure. 
##                                305                                306 
##         This is an 8-item measure. This measure consists of 12 items. 
##                                316                                342 
##          This is a 5-item measure.         This is a 15-item measure. 
##                                344                                349 
##         This is a 20-item measure.          This is a 4-item measure. 
##                                355                                370 
##          This is a 6-item measure. This measure consists of 10 items. 
##                                375                                404 
##         This is a 12-item measure.         This is a 10-item measure. 
##                                410                                479
records_wide$NumberOfTestItems[which(!is.na(numbers %>% map(~ .[1])) & 
                                       is.na(item_numbers %>% map(~ .[1])) & 
                                       is.na(consists_of_numbers %>% map(~ .[1])) &
                                       is.na(just_numbers %>% map(~ .[1])) &
                                       is.na(words)
                                     )]
##  [1] "10 statements are presented for each of three categories: individualism, collectivism, and familism."                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2] "The Revised Response Empathy Rating Scale consists of nine components: (1) Intention to enter client's frame of reference, (2) Perceptual inference and clarification, (3) Accuracy-plausibility, (4) Here and now, (5) Topic centrality, (6) Choice of words, (7) Voice quality, (8) Exploratory manner, and (9) Impact (facilitation vs. blocking, distraction)."                                                                                                                                                          
##  [3] "16 open-ended questions form the Narrative Evaluation of Intervention Interview."                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4] "60 line items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5] "50."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6] "72."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7] "50."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8] "119 in default version. Any number in customized versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9] "The Beck-Triplett Measure of Delay Discounting has six different delays for the time between committing to pay a certain amount for $1,000 and actually getting the $1,000."                                                                                                                                                                                                                                                                                                                                                 
## [10] "Items assessing partner blame (6), Items assessing minimization and avoidance of conflict discussion (4), items assessing denial of personal contribution to relationship difficulties (3)."                                                                                                                                                                                                                                                                                                                                 
## [11] "2 trials"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12] "170."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13] "226."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14] "21 statements (with no omission of symptom indicators)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15] "On the final form, there are four levels of severity for each of the following four behaviors: (1) Verbal Aggression, (2) Physical Aggression, (3) Physical aggression Against Self, and (4) Physical Aggression Against Other People."                                                                                                                                                                                                                                                                                      
## [16] "10 Targets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17] "6 Scales and Forms: Intrapersonal, Interpersonal, Stress Management, Adaptability, General Mood, Predictive Model"                                                                                                                                                                                                                                                                                                                                                                                                           
## [18] "13 Scales and Forms: Alcohol and Drug History, Diet and Exercise, Education, Employment, Ethnicity, Family and Developmental History, Religion, Financial History and Status, Marital and Family Life, Medical History, Presenting Problems, Psychological and Social Stressors, Religion"                                                                                                                                                                                                                                   
## [19] "40 codes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20] "10 unique assessment forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21] "8 topics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22] "23 tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23] "36 symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [24] "The Apples Test is constructed of a page of complete and incomplete images (150 in all on a standard A4 page) of apples."                                                                                                                                                                                                                                                                                                                                                                                                    
## [25] "205 (162 if excluding the optional Life's Difficulties items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [26] "30 alternative-weighting items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27] "The PAS-R lists the eight ICD-10 personality disorders (paranoid, schizoid, dissocial, emotionally labile [separated into impulsive and borderline], histrionic, anankastic [obsessive-compulsive], anxious and dependent) and their main characteristics in a checklist format."                                                                                                                                                                                                                                            
## [28] "The Sex Role Behavior Scale-2 contains M, F, and MF scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29] "There are separate clusters of items for mothers (9 clusters) and for fathers (7 clusters)."                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30] "Two test forms are available: Form S2 (variable form II) and Form S3 (global form). For S2 the number of subtests can be chosen."                                                                                                                                                                                                                                                                                                                                                                                            
## [31] "Employees were asked to break their career stages down into successive time intervals according to job and/or organizational changes. These intervals had to be coded according to the following categories: (1) first job, (2) new job with a new employer or becoming self-employed, (3) same job with a new employer, (4) new job with the same employer (promotion, demotion, rotation), (5) career interruption (sickness, training, pregnancy, other), (6) same job as before career interruption and (7) job-seeking."
## [32] "66 (note, however, that interviews need only focus only on those sections that are relevant to the specific case. In most cases this means that many items would not be asked or scored)."                                                                                                                                                                                                                                                                                                                                   
## [33] "97 (note, however, that interviews need only focus only on those sections that are relevant to the specific case. In most cases this means that many items would not be asked or scored)."                                                                                                                                                                                                                                                                                                                                   
## [34] "Sections in the QOLC cover (1) Housing and household, (2) Knowledge and education, (3) Relationships, (4) Dependency, (5) Inner experience, (6) Mental health, (7) Leisure, (8) Employment, and (9) Religion."                                                                                                                                                                                                                                                                                                               
## [35] "The complete CSSA consists of: six interview items plus three additional pages for data collection: (1) an expanded genogram, (2) a reconstructed week, and (3) an open-ended history of help-seeking."                                                                                                                                                                                                                                                                                                                      
## [36] "Forms: Teacher Record Forms (K-12), Student Record Forms (6-12), College Record Forms."                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [37] "This measure assesses the following information: (1) sick role experiences/panic symptoms, (2) observation of parental sick-role/panic symptoms, (3) encouragement of sick-role/colds, (4) frequency of uncontrolled behavior, and (5) number of chronically ill household members."                                                                                                                                                                                                                                         
## [38] "The OVB system is used to categorize these verbal behaviors and consists of behavior categories for both managers (15 categories) and subordinates (11 categories)."                                                                                                                                                                                                                                                                                                                                                         
## [39] "The measure yields six variables: (1) the amount of information, (2) the number of constituent parts of the picture, (3) the number of relevant and irrelevant descriptions, (4) efficiency of description, (5) appropriateness, and (6) sentence structure."                                                                                                                                                                                                                                                                
## [40] "Young people rated four types of family relationships by one year: with (1) mother or female guardian, (2) father or male guardian, (3) siblings, and (4) extended family members."                                                                                                                                                                                                                                                                                                                                          
## [41] "There are four core elements of this index: (1) resource availability, (2) education, counseling and other health programs, (3) school dietitians’ perception and their characteristics, and (4) the actual school lunch menu"                                                                                                                                                                                                                                                                                               
## [42] "This semi-structured interview includes a number of questions and prompts regarding (1) family functioning, (2) experience of divorce, (3) description of the sibling relationship, and (4) coping and the view of the sibling relationship."                                                                                                                                                                                                                                                                                
## [43] "Logs asked facilitators to (1) identify classroom management issues; (2) rate their perceived level of student engagement and lesson effectiveness; (3) identify any technical assistance needs; and (4) provide any additional comments, especially tips for handling challenging situations."                                                                                                                                                                                                                              
## [44] "The Verbal Activity Scale consists of a nine-point scale which ranged from underactivity (1) to overactivity (9)."                                                                                                                                                                                                                                                                                                                                                                                                           
## [45] "The purpose of this semi-structured interview guide is to: (1) Ascertain how psychologists help their patients with depression; (2) Gain a comprehensive understanding as to the kinds of CBT techniques therapists use that are acceptable to their patients; and (3) Discover whether therapists employ any techniques that have been developed from local traditions."                                                                                                                                                    
## [46] "The observation sheet comprises various categories of driver behavior, which can be grouped into error categories (38 total errors)."                                                                                                                                                                                                                                                                                                                                                                                        
## [47] "13 discrete steps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [48] "75 statements are rated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [49] "Two versions of this measure were created, one for abused women with children accessing a shelter (8 risk factors) and one for abused women with children who accessed a protection order (6 risk factors)."                                                                                                                                                                                                                                                                                                                 
## [50] "Five response options are used to rate three skill development stages [(1) Emerging Knowledge and Skills; (2) Integrated Knowledge and Skills; and (3) Intuitive/Tacit Knowledge and Skills] across nine practice areas."                                                                                                                                                                                                                                                                                                    
## [51] "The Eating Disorder Assessment for DSM‐5 number of questions administered varies across individuals."                                                                                                                                                                                                                                                                                                                                                                                                                        
## [52] "The Dichotomous Thinking in Eating Disorders Scale-11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [53] "The Beery VMI-6 consists of one core task, Visual-Motor Integration (VMI), and two supplemental tasks, Visual Perception (VP) and Motor Coordination (MC)."                                                                                                                                                                                                                                                                                                                                                                  
## [54] "The Shipley-2 includes three subtests: Vocabulary, Abstraction, and Block Patterns."                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [55] "A summary score for disruptive behavior counts is calculated by averaging the total number of disruptive time periods observed (10 time samples) for each of the three types of disruptive behaviors: General disruptive behavior, Verbal aggression, and Physical aggression."                                                                                                                                                                                                                                              
## [56] "Each trial of the Outcomes-IRAP presented a label stimulus (two single words, 'Failing' and 'Succeeding'), and a target stimulus (12 short statements)."                                                                                                                                                                                                                                                                                                                                                                     
## [57] "The Turkish Prosody Rubric rates reading prosody on four (4) elements."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [58] "The self-report version of the ZAN-BPD rates nine criterion-based scales in four core symptom areas: Affective (3 symptoms), Cognitive (2 symptoms), Impulsive (2 symptoms), and Interpersonal (2 symptoms)."                                                                                                                                                                                                                                                                                                                
## [59] "Cronbach's alpha value for this scale was .744."                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [60] "This measure consists of four sets of word-prompt outlines (12 words in each), which are organized in three columns."                                                                                                                                                                                                                                                                                                                                                                                                        
## [61] "The Learning Outcomes for Mathematics Tests consists of tasks related to cognitive components and mathematics competency: (1) knowing facts, procedures and definitions domain (6 computing tasks), (2) applying domain (4 common arithmetic word problems), and (3) reasoning domain (2 novel tasks)."                                                                                                                                                                                                                      
## [62] "This measure consists of items divided into six factors: (1) perseverance, (2) effort (earlier discussed as the acquisition of skills and abilities), (3) career progress, (4) career contingencies, (5) unique ethos and (6) identity."                                                                                                                                                                                                                                                                                     
## [63] "Eight anger regulation strategies are differentiated into one to four sub-categories (20 total) that represent observable behaviors and serve as indicators."                                                                                                                                                                                                                                                                                                                                                                
## [64] "The Timed Grammaticality Judgment, Oral Elicited Imitation, and Metalinguistic Knowledge Test Battery contains two different versions of each: an OEIT with uncontrolled time pressure versus an OEIT with controlled time pressure considering sentence length (34 statement sentences each); a TGJT with written stimuli versus a TGJT with aural stimuli (34 statement sentences each); and a MKT (17 multiple-choice items)."                                                                                            
## [65] "The RISB Psychoticism Rating Scale for Sentence Completions consists of guidelines of how to score indicators of high P (14 traits) and low P (11 traits) personality traits."                                                                                                                                                                                                                                                                                                                                               
## [66] "The RISB Extraversion Rating Scale for Sentence Completions consists of guidelines of how to score indicators of high E (9 traits) and low E (6 traits) personality traits."                                                                                                                                                                                                                                                                                                                                                 
## [67] "The RISB Neuroticism Rating Scale for Sentence Completions consists of guidelines of how to score indicators of high N (9 traits) and low N (4 traits) personality traits."                                                                                                                                                                                                                                                                                                                                                  
## [68] "The Test of Gross Motor Development--2; Short Form consists of six skills."                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [69] "The C3A is comprised of four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [70] "6 subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [71] "Homogeneity (β = .23, p < .01) and interactivity (β = .67, p < .001) were positively and significantly related to entitativity. Entitativity (β = .24, p < .001) and homogeneity (β = .36, p < .01) were positively related to cohesion. Further, entitativity appeared to be distinct from cohesion."                                                                                                                                                                                                                       
## [72] "9 sequences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [73] "This instrument is comprised of six (6) hypothetical negative outcomes that happen to others"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [74] "This task consists of neutral messages (9), followed by a final message instructing participants to sing."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [75] "3 rows of dots."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [76] "94 codes."
records_wide$NumberOfTestItems[which(!is.na(records_wide$NumberOfTestItems) & is.na(numbers %>% map(~ .[1])) & is.na(item_numbers %>% map(~ .[1])) & is.na(words))]
##   [1] "The Army Group Examination Alpha contains eight subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [2] "Group Examination Beta has eight subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [3] "The scale is composed of twelve separate tests: peed of Movement, Freedom from Load, Flexibility, Speed of Decision, Motor Impulsion, Self-Confidence, Non-compliance, Finality of Judgment, Motor Inhibition, Interest in Detail, Co-ordination of Impulses, and Volitional Preservation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [4] "This test consists of seven handwriting exercises."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [5] "Each student in a classroom Behavior Adjustment Rating Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [6] "The Goodenough Draw A Man Test asks children to draw one picture of a man."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [7] "The Herring Revision of the Binet-Simon examination consists of thirty-eight tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [8] "Six songs are included in this test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [9] "Hoke's Mental Test for Parents consists of a single paragraph with multiple word-completion blanks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [10] "This Prognostic Test of Stenographic Ability contains six subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [11] "This test contains a story that is to be read aloud by the teacher and written in their own words by students."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [12] "The Home Practices Inventory is three pages long."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [13] "This test consists of a series of actions/activities to be performed at each age level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [14] "The Ohio Scholarship Tests contains four tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [15] "The CBS includes eight nominal, mutually exclusive categories: resistance, agreement, appropriate request, recounting, cognitive-behavioral exploration, affective exploration, insight, and therapeutic changes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [16] "Twenty seven final items were retained for the measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [17] "The questionnaire comprised four basic questions assessed in three different ways as well as essential demographic information."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [18] "The measure contains a free speech and a simple mental arithmetic task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [19] "The survey consists of demographic items (i.e. age, gender, and duration of paid employment) and six different categories of chance events the development study aimed to investigate. These categories were single positive (SP) and negative (SN), multiple-related (concatenated) positive (MCP) and negative (MCN), and multiple independent positive (MIP) and negative (MIN) chance events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [20] "Two forms make up this measure, and each form consists of two profiles. Each profile displays two names, one masculine and one feminine name, along with six personality values under each name."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [21] "The UHR–Psychosis Scale consists of five Eppendorf Schizophrenia Inventory items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [22] "The Legitimacy and Stability of Gender Hierarchy Scales contain six legitimacy and six stability items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [23] "The scale contains seven three-part questions that investigate sexual, emotional, and social betrayals perpetrated by romantic partners, friends, and family members."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [24] "The Stenquist Mechanical Aptitude Tests contains two tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [25] "The Thurstone Employment Tests contains typing, spelling, clerical and intelligence tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [26] "The Traube Language Scales contains three scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [27] "Varied according to instrument"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [28] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [29] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [30] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [31] "Adaptive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [32] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [33] "Adaptive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [34] "infinite item generation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [35] "The number of test items varies from form to form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [36] "The interview contains three parts assessing different facets of a partner's controlling behaviors, including areas of control, perceptions of overall control, and perceptions of the link between a partner's aggression and controlling tendencies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [37] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [38] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [39] "Item databank."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [40] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [41] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [42] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [43] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [44] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [45] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [46] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [47] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [48] "The measure consists of three polar adjective pairs and three behavioral intention items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [49] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [50] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [51] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [52] "Item databank."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [53] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [54] "The PRIME-MD Diagnostic System contains a one-page screening instrument referred to as the Patient Questionnaire and a Clinician Evaluation Guide."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [55] "The PROM-R presents seven stories to be evaluated and rated by respondents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [56] "The MAS-R presents six moral issues. Respondents are also asked to rate the degree to which each of the following sources influenced their moral judgment: (a) self-interest; (b) family; (c) teachers, friends, and the media; (d) society's welfare; and (e) equality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [57] "The Riverside Situational Q-Sort contains items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [58] "The SROM presents two moral dilemmas to respondents and a series of items corresponding to eight sociomoral norms: affiliation (marriage and friendship), life, law, legal justice, conscience, family affiliation, contract, and property."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [59] "The Physician Readiness to Manage Intimate Partner Violence Survey (PREMIS)instrument consists of five sections: Respondent Profile, Background, Intimate Partner Violence (IPV) Knowledge, Opinions, and Practice Issues. Within each of the four latter sections of the PREMIS instrument, several items have been combined to create scales (some items need scoring or reversing prior to scale creation). The Background Section contains the two composite items, Perceived Preparation and Perceived Knowledge. In the Knowledge Section, correct items are scored and a composite created. Eight scales are derived from the Opinion Section. Finally, the Practice Issues Section contains several items that may be considered separately or as a composite item. The PREMIS toolkit consists of Physician Readiness to Manage Intimate Partner Violence (PREMIS) instrument, codebook, and SPSS syntax and scoring information document."
##  [60] "The SRCAP is a brief structured interview that retrospectively assesses childhood experiences of physical abuse by asking whether a family member engaged in any of a list of six childhood experience items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [61] "The WRAI consists of three subsections: Anger, Problems, and Force."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [62] "There are forty-four standardized assessments in the IED II. The assessments cluster into five domains: physical development, language development, academic/cognitive, daily living, and social-emotional. At some ages, the five domains can be broken out into subdomains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [63] "The measure takes about an hour to complete."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [64] "The scale consists of five cartoon faces with a midpoint denoted by a neutral face and two levels each representing differing levels of acceptability (smiling faces) and unacceptability (frowning faces)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [65] "Participants responded to six trials, with two trials of each type."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [66] "Not reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [67] "The test consists of a baseline phase and three comparison phases, each with increasing difficulty relative to baseline in a different way."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [68] "Varies between tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [69] "The PACI consists of three parts: Instruction Booklet, Rating Scales, and Answer Sheets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [70] "Subjects write a number representing number of drinks in each of seven boxes, one for each day of the week."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [71] "Both the relative's and the patient's scales consist of five forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [72] "The Mattis Organic Mental Syndrome Screening Examination is comprised of a sample of several WAIS subtests, a Benton geometric figure and some items from the Eisenson Test of Aphasia."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [73] "A total of three problems of greatest concern are identified at pretreatment and then rated for severity weekly during treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [74] "Nine variables are included in this instrument: age, prior referrals, prior parole violations, runaway behavior, offense type, school, peer associations, alcohol or drug abuse, and family dynamics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [75] "This measure consists of six hypothetical social situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [76] "The Brief Abuse Screen for the Elderly consists of one page."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [77] "The scale contains eight drawings of social situations with children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [78] "The DIG addresses capacity across eight hypothetical problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [79] "The interview is comprised of two specialized clinical vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [80] "The CTIP consists of three computerized subtests that measure reaction time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [81] "The Conners' ADHD/DSM-IV Scales (CADS) consist of the items of the CRS-R that best differentiate children with Attention-Deficit/Hyperactivity Disorder from nonclinical children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [82] "The LAMB consists of six subtests—Paragraph Learning, Word List Learning, Single Figure, Complex Figure, Digit Span, and Supraspan Learning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [83] "The MCCB consists of ten individually administered tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [84] "Scales and Forms: Perceiving Emotions, Facilitating Thought, Understanding Emotions, Managing Emotions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [85] "Scales and Forms: Attentional Variables, Control Variables, Interpersonal Characteristics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [86] "Four social-emotional rating scales (Examiner, Parent, Self Rating and Teacher) provide essential information about the child's activity level, attention, impulse control, and other emotional characteristics, which may interact with test performance and functional performance at home and school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [87] "The CLOX Executive Clock Drawing Task is a two-part drawing measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [88] "The scale measures seven PTSD symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [89] "Thirteen measures of compliance or adherence were developed based on the information obtained from the interview."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [90] "The Daily Phone Diary asks participants to report each activity they did from the start of their day to the point of the phone call. The Daily Phone Diary yielded four variables: activity type, duration, companions, and quality of interaction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [91] "Participants respond to three scenarios presented in counterbalanced order: one featuring a salary negotiation, one regarding asking a freelancer for help under a deadline, and one concerning disagreeing with a colleague in a team meeting. Each scenario includes a beginning and then three endings featuring low, medium, and high assertive behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [92] "The FPS-R consists of six faces."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [93] "The measure consists of three categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [94] "The Child-Adult Medical Procedure Interaction Scale—Revised is a system for coding child distress, approach-avoidance, fear, pain, child cooperation and parents perceived ability to help during routine immunizations. As an observational system it does not have a set number of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [95] "The coding system includes five adult motoric behaviors or position codes, seven adult vocal behaviors, and two infant behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [96] "Participants are first asked to describe the most stressful or bothersome event that has occurred to them in the past day using an open-ended format. Next, the participant rates the perceived stressfulness of this event. Coping is then assessed with eight specific coping strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [97] "For each respondent and each of five relationship aspects, there are responses to the situation of four hypothetical children."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [98] "The interview protocol includes seven primary questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [99] "Participants report the degree to which they feel the following groups overlap with one another: Women & psychology students; men & psychology students; women & engineering students; men & engineering students; psychology students & women; psychology students & men; engineering students & women; engineering students & men."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [100] "The Figural TTCT contains three picture-based exercises; the Verbal TTCT contains six word-based exercises."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [101] "The Comprehensive Assessment of Team Member Effectiveness—Short Version is composed of _ items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [102] "This measure consists of a single global item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [103] "The Intellectual Achievement Responsibility Scale contains forced-choice items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [104] "The test consists of four affective categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [105] "The TST is administered in four trials--one baseline trial and three EF trials, all under timed conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [106] "The Behavioral Approach–Avoidance and Distress Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [107] "Sixty-four true/false items constitute the Empathy Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [108] "Respondents record the details of each social interaction, including the time length, rating of intimacy, satisfaction level, location, and the nature of the interaction. A separate record is used for each encounter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [109] "This instrument consists of the following sections: Background variables, Personality Characteristics, Drinking Motivations and Expectations, and Social Context Characteristics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [110] "This measure consists of seven dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [111] "The Haptic Intelligence Scale consists of six subtests: Digital Symbol, Object Assembly, Block Design, Object Completion, Pattern Board, and Bead Arithmetic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [112] "This test is untimed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [113] "Participants are instructed to respond aloud to each of nine prerecorded stimulus situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [114] "Subjects are presented with six pairs of forced-choice alternatives in the form of stick figure illustrations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [115] "There are seventy-three statements in the Accountability Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [116] "The questionnaire asks respondents to briefly describe up to five of their academic goals for their freshman year."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [117] "The Sociomoral Reflection Measure is a production task measure of moral reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [118] "The S-Anxiety scale consists of twenty statements that evaluate how respondents feel \"right now, at this moment.\" The T-Anxiety scale consists of twenty statements that assess how respondents feel \"generally.\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [119] "The items of the URES are grouped into ten subscales with three dimension. Each of the three types of forms ((Real Ideal, Expectations) include one hundred items to measure the ten subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [120] "The WFPT consists of four hundred black and white figures to which the subject responds \"like\" or \"dislike.\""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [121] "As many trials as desired."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [122] "This test consists of three series and eight trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [123] "Varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [124] "The reliability and validity of the test has been statistically supported. Contact the publisher for details."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [125] "There are nine stories, each accompanied by four to six illustrations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [126] "During the test, candidates played four roles in succession."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [127] "Fifteen scales remain in the final version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [128] "The NeoPD Board Game does not have test items per se, but rather is a game based on the Prisoner's Dilemma interaction scenario."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [129] "Parents are asked to think about the times they used discipline during the day, and to write about at least three of them. They are to write exactly what the child did that required discipline, exactly what they said and did in the situation, how the situation turned out for both the parent and the child, and how they felt about the situation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [130] "This measure consists of one initial question: “What attracted you to her?” Responses to the question are assigned to one of six categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [131] "This measure is a four-part survey."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [132] "Six target pictures of flour worms were used."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [133] "The interview is composed of three sections (administration of some sections depends on the subject's responses)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [134] "The Process of Family Adjustment to Transgender Emergence Questionnaire contains consists of five pages of questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [135] "Instructors are asked to rate seven key areas of critical thinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [136] "The measure requires participants to bet on one of four alternatives that can result when throwing two dice."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [137] "The Iowa Gambling Task is a card-sorting task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [138] "In most cases there are two or three interview questions for each personality disorder criterion."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [139] "Eight target stimuli were used for each Child IAT."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [140] "The measure consists of two stories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [141] "This measure consists of four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [142] "Ten cartoon sequences comprise this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [143] "The Cognitive Complexity Scale consists of a matrix across the top of which participants list three persons in their own social environment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [144] "The Emotional Disclosure Protocol asks participants to rate their own reactions to having crafted an essay describing a previously-experienced traumatic event. The ratings of their own essay concerned the degree to which (a) it was personal, (b) it revealed their emotions, and (c) they had shared it with other people."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [145] "The Act-Rule Relations Interview consists of four hypothetical stories, each accompanied by six standard questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [146] "The Impulsiveness-Venturesome-Empathy Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [147] "The scale consists of nine male and nine female countour drawings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [148] "The PAW comprises eight vignettes, each one describing a typical problem that a manager might encounter with a subordinate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [149] "This measure requires participants to describe a situation in which they imagine themselves encountering an unwanted sexual experience. Nine coding categories are used to code aspects of the hypothetical narratives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [150] "The Ravinder Sex Role Salience Reptest consists of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [151] "There are a total of six Functional Multiteam System Leadership Items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [152] "The Michigan Gender Identity Test consists of two trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [153] "The test contains five affective and six normative commitment items for supervisors and coworkers."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [154] "There are forty-four standardized assessments in the IED II. The assessments cluster into five domains: physical development, language development, academic/cognitive, daily living, and social-emotional. At some ages, the five domains can be broken out into subdomains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [155] "Five categories are used to code the content of half-page descriptions regarding how participants reacted to being laid off and whether they tried to get even for the layoff."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [156] "Test items vary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [157] "This measure consists of two closed-ended and one open-ended HPV vaccination-related question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [158] "This composite measure consists of two knowledge and ten psychosocial measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [159] "The Organizational Climate Scale consists of descriptions of nine hypothetical organizations differing in the degree to which they would satisfy the personality needs and vocational interests of individuals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [160] "The QPI consists of eight content areas (Classroom Organization and Planning, Teaching Strategies, Teaching Communication Skills, Promoting Social Interactions, Providing Positive Behavioral Guidance, IEPs and Measuring Progress/Data Collection, and Interactions With Children and Interactions With Families) with each content area having four to six unique indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [161] "The measure consists of four scenarios each addressing one of four cultural learning orientations: individualistic, competitive, communal, and vervistic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [162] "The questionnaire consists of nine open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [163] "This test evaluates children's reasoning abilities on six basic principles of deductive reasoning and three content dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [164] "The TTQ consists of nine vignettes, three each representing three different severity levels (i.e., mild, moderate, severe) of anxiety experienced in various social situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [165] "The Structural Family Interaction Scale-Revised contains eight subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [166] "This measure consists of a list of five common physical problems, as well as a sixth item, “other physical complaints.”"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [167] "The Abridged Cambridge Neurological Inventory Soft Signs Assessment consists of a set of motor skills to be performed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [168] "The survey consisted of the following sections: (a) basic demographics, (b) views on DCM, and (c) experience when conducting DCM."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [169] "The three interpersonal subscales, self-sacrificial care, self-silencing, and external self-perception were examined in the current study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [170] "For this measure, participants are asked to create a personal social network diagram using three concentric circles, each circle representing a level of closeness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [171] "The Hopkins Verbal Learning Test--Revised includes six forms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [172] "Six different test forms are available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [173] "There are three test forms that vary as regards the precision of the person parameter estimation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [174] "There is one test form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [175] "Each dimension is measured by means of six subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [176] "Three test forms are available, differing in the number of triangles and the regularity with which the lines change."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [177] "Since the scales of the DSI have been obtained by factor analysis, construct validity as understood in classical test theory can be regarded as given."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [178] "There are three standard test forms with five practice and by default eight measurement runs each available:"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [179] "The CAP Special Cognitive Abilities consists of a number of tests, including tests of hidden animals, recognition memory, verbal comprehension, perceptual speed, verbal fluency, and block design."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [180] "The Series consists of four equivalent batteries; each of which consists of four tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [181] "This measure consists of a task (therefore there are no items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [182] "The Negative Interaction measures contains four indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [183] "The unidimensional nature of the scale was replicated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [184] "The PORT is made up of seven tasks (mostly drawings)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [185] "The Asthma-Related Symptoms Measure includes six symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [186] "Items include four known pieces of news footage (e.g., the World Trade Center collapse)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [187] "One session at a time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [188] "Selective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [189] "One at a time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [190] "One at a time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [191] "Participants indicate at which age they started to use cannabis and in which frequency. Thereafter subjects indicate if, and if so at what age, their consumption frequency had changed significantly and how long this period lasted. In total, participants can indicate five different periods of distinct cannabis use frequency, covering the period since first use until present day."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [192] "The number of items vary by test. The tests include Access, Excel, Outlook, Powerpoint, Windows, and Word."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [193] "The number of questions varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [194] "Test lengths vary based on job level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [195] "The EDSERIES battery is comprised of seven subtests: Reading, Language Arts, Mathematics, Science, Social Studies, Quantitative Skills and Verbal Skills. Future Plans and School Interests sections are also included in the battery."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [196] "The Kuhlmann–Anderson Tests includes eight separate subtests are administered at each of the seven KA test levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [197] "The ATTA consists of four norm-referenced abilities along with fifteen criterion-referenced creativity indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [198] "The Clinton Assessment of Problem Identification Skills for Instructional Supervisors consists of two forms, each containing three scenarios which require open-ended responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [199] "The Child Adult Medical Procedure Interaction Scale— Revised comprises codes for parents’ utterances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [200] "The Current Concerns Interview is an open-ended measure and the total number of items differ for each participant according to how many concerns are expressed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [201] "This questionnaire consists of six close-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [202] "Participants were asked whether they had felt each of six emotions with regard to their school work over the past week. Three of the emotions represented a threat appraisal, and the other three represented a challenge appraisal."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [203] "The Visual Analogue Scales for Smoking includes five scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [204] "This measure consists of sixty scrambled sentences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [205] "Questions are arranged under six headings: Work, Self, Interpersonal Relations, Affects, Reality Testing, and Impulse Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [206] "This measure consists of five blocks of questions addressing five symptom groups. Participants were then asked how frequently their parents exhibited each of six behaviors when the participant experienced the symptom group as a child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [207] "The intrusion interview consists of a series of questions asked in a fixed order."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [208] "Respondents indicate how well three adjectives describe their feelings toward perpetrators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [209] "Participants are asked about six event types that are assaultive or non-assaultive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [210] "The total number and content of items in the Catastrophizing Interview—Sleep is conditional on the answers given to previous items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [211] "Item count dependent upon iterative process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [212] "The five SPRS ratings are gaze, vocal quality, speech length, discomfort, and conversation flow."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [213] "The measure consists of six events that may signify a transition into \"old age\" and respective \"old age\" related roles."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [214] "Selective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [215] "One session at a time."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [216] "This measure consists of four fictitious threat scenarios. Each scenario is conjoined with five vigilant and five cognitive avoidant coping strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [217] "There are many sub-tests with varied numbers of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [218] "This measure consists of four sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [219] "This measure consists of cards with two-dimensional designs drawn on them and three-dimensional block designs that correspond to the pictures on the cards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [220] "The final measure included five student items and four teacher items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [221] "The Design Rhythm Tests consists of four tests: (A)Six pictorial border designs in color; (B) Six abstract border designs; (C) Twelve pairs of abstract border designs; and (D) Veneer-board blocks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [222] "The measure consists of three categories (A-C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [223] "The Motor Leads in the Homologous Paired Movements of the Two Hands task is composed of a single verbal prompt, with the neuromuscular responses being the subject of the measurement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [224] "The instrument consists of separate modules, one for each disorder (depression, anxiety, PTSD, and substance abuse)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [225] "The Attitudes to Food Questionnaire has a variable number of test items, which depends upon the participant's reponses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [226] "The Non-Language Test includes an Imitation test, an Easy Learning test, a Learning test, a Drawing Completion test, a Reversed Drawing test, and a Picture Reconstruction test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [227] "Each scale in the Index of Inappropriateness and Sexual Intimidation consists of five descriptions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [228] "These measures are comprised of three separate reports/checklists."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [229] "This is a one-page measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [230] "Tests included in the battery are as follows: reading; spelling; pronouncing; memory; description of pictures; drawing; lists of words, grouped according to sound or spelling; mathematical problems; and physics problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [231] "This measure consists of five literary passages."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [232] "The test consisted in requiring subjects to fill words in blanks which were left in the verses of Stevenson's poem \"The Dumb Soldier.\" Participants are provided with the first stanza while five blanks are left in each of the other stanzas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [233] "The measure consists of seven scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [234] "Forms: Student Form, Parent Form (English and Spanish), Teacher Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [235] "The Comprehensive Test is comprised of six timed subtests: Vocabulary, Spelling, Language Mechanics, Reading Comprehension, Math Computation, and Math Application. The Survey Test is of a math subtest and verbal subtest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [236] "All versions of the test have excellent psychometric characteristics, with extensive validity evidence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [237] "The DAS-II is appropriate for diverse populations as it can predict achievement on the basis of ability equally well for African American, Asian, Hispanic, and White/Non- Hispanic children. More information about the cultural fairness of DAS-II is available in the Technical Manual."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [238] "Wechsler Fundamentals: Academic Skills is composed of four subtests: Word Reading, Reading Comprehension, Spelling, and Numerical Operations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [239] "The final measure consists of two subscales, Self-efficacy Pain and Self-efficacy Symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [240] "Nine maternal behavior scales were used in this study."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [241] "The measure consists of one vignette."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [242] "Five variables are measured."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [243] "Contentment was assessed using three different measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [244] "This is a verbal task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [245] "The Abbreviated Scale of Premorbid Social-Personal Adjustment comprises a range of classifications of the degrees of nominal membership and active involvement in social interaction that has characterized the earlier life of the participant through the period of young adulthood."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [246] "This measure consists of a single rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [247] "In the questionnaire, participants read short descriptions of seven specific cognitive biases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [248] "This questionnaire is comprised of five sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [249] "The Social Support Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [250] "The Primary Examination is consists of eight tests, and the Advanced Examination consists of ten tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [251] "This measure is presented as a grid, with eight rows and four columns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [252] "The Adapted Career Development Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [253] "The Five-Factor Model Rating Form is a simple, one-page, facet-level description of the FFM."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [254] "The Patterning of Daily Life–Time Index contains three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [255] "The tasks included in this measure are as follows: making a speech in front of male and female confederates, initiating and maintaining a conversation with a confederate, expressing disagreement to a confederate, and solving simple mathematical problems on a chalkboard."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [256] "The Modern School Achievement Tests are a battery of ten tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [257] "The Work History Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [258] "The Longitudinal Interval Follow-Up Evaluation (LIFE) consists of a semistructured interview, an Instruction booklet, a coding sheet, and a set of training materials. It is divided into the following sections: Psychopathology, Nonpsychiatric Medical Illness, Psychiatric Treatment History, Psychosocial Functioning, Overall Severity (Global Assessment Scale), and Narrative Account."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [259] "The Subordinate Performance Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [260] "This is a composite index made of four smaller indices."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [261] "The Social Integration Scales consist of the External Social Integration Scale and the Internal Social Integration Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [262] "The Family Water Attitudes Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [263] "the Willingness to Engage in Group-Serving Behavior Measure contains five combined items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [264] "The Forgiveness in Married Couples Scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [265] "This questionnaire consists of multiple measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [266] "Participants first describe the initial lapse episode in detail, with the interviewer then asking a series of structured questions for clarification. Next, participants respond to a series of questions assessing lapse situation characteristics. Finally, participants describe what occurred in the hours before the lapse event."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [267] "The Behavioral Avoidance Test for Obsessive Compulsive Disorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [268] "Four variables are scored."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [269] "The Fear Thermometer is a single rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [270] "The Body Image Assessment procedure uses nine cards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [271] "The Drug, Alcohol, and Tobacco Expectancy Questionnaire contains four expectancies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [272] "The Smoker’s Coping-Response Assessment Tool includes eight scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [273] "The Irrational Belief List consists of five statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [274] "The Chinese Adolescents' Smoking Risk Factors Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [275] "This scale consists of multiple measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [276] "The Language Testing and Assessment Course Questionnaire consists of five parts addressing the background information of the instructors and courses (Part I), teaching content (Part II), teaching methodology (Part III), student perceptions of the courses (Part IV), and teaching materials (Part V)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [277] "Pre-High School Personality and Behavior Measure contains measures of deviance, rebelliousness, academic orientation, frequency of cigarette, alcohol, and marijuana use, and access to drugs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [278] "The measure consists of a single yes/no item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [279] "For each of two parental behaviors, children rate their agreement with statements about three attribution dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [280] "Providing evidence of convergent and discriminant validity, the IMS-S was strongly related to measures of sexism yet unrelated to measures of social evaluation. The EMS-S was modestly related to both sexism and social evaluative concerns. Providing evidence of predictive validity, participants who were either internally or externally motivated to respond without sexism rated sexist jokes more negatively in a situation discouraging sexism compared to participants low in both sources of motivation."                                                                                                                                                                                                                                                                                                                                                                                                                              
## [281] "The Level of Exposure to Environmental Tobacco Smoke Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [282] "Respondents are asked to first think of the time when he/she started to regularly consume a certain psychoactive substance. For each psychoactive substance, five indices are calculated from the raw data."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [283] "The ADI-R consists of five sections: opening questions; questions on communication (both early and current); those on social development and play (again both early and current); enquiries about repetitive and restricted behaviors (all scored for both current and ever judgments); and a number of questions concerning general behavior problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [284] "Interpersonal Perception Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [285] "For this questionnaire, respondents list any any notable events (good or bad) happened to them."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [286] "The three Reconciliation Measures each contain multiple items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [287] "Participants were presented with seven hypothetical situations in which they had to ponder information and make decisions regarding a preferred course of action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [288] "Participants were asked to imagine themselves in four scenarios depicting a goal and were asked to report when they would initiate goal-directed action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [289] "This measure scores the occurrence and duration of five acts of violence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [290] "The current study used the Trauma Exposure and War-Related Psychological and Behavioral Problems sections of the Penn/RESIST/Peradeniya War Problems Questionnaire."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [291] "This measure consists of two sets of five semantic differentials, labeled “Smoking” and “Not Smoking.”"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [292] "The Perceived Support Received Index contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [293] "This measure consists of three tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [294] "The Bullying Scenarios scale contains eight pairs of items, each describing an incident in which the participant was bullied."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [295] "The questionnaire includes a series of detailed questions about pain, including location, severity, cause and duration, and frequency (intermittent or persistent)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [296] "Alcohol Intake Sheets are used by alcoholic clients to monitor and record their own daily alcohol consumption."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [297] "Ingroup Identification Scale for Ashkenazi-Mizrachi Israelis contains for items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [298] "The Illness Representations Interview consists of a series of questions that are tailored for each participant according the the answers given, so there is no set number of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [299] "The Team Cohesiveness Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [300] "Four issues are negotiated in this task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [301] "Clients are asked to list the two most disturbing problems or complaints for which they are seeking help. Therapists are also asked to independently write down what they consider each client’s two main target complaints to be."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [302] "The SCI-Japanese Version consists of four coping subscale measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [303] "The Szondi Test consists of forty-eight photographs of different faces."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [304] "The coding system has four major utterance categories (task, procedure and process, socioemotional, and miscellaneous) and three subcategories within the task utterances."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [305] "The Ingroup Bias Measure consists of one feeling thermometer."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [306] "This questionnaire consists of a form that provides mutually weighted choices for psychiatrist and psychiatric technician in each of ten areas of therapist function."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [307] "The Movement Rating Scale contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [308] "Participants are scored on five verbal responses: hedges, hesitations, verbosity, tag questions, and perceived directness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [309] "The subject is asked to place his/her hands on two marks on the desk and to hit the space bar on the computer each time they hear a dog bark. Four scores are analyzed, including total omissions, commissions, mean response latency, and variability in response latency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [310] "Each child hears six stories, in a fixed order, and after each story the experimenter asks the child various questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [311] "The Modified Parental Discipline Techniques Instrument consists of six vignettes describing common situations of misbehavior of children requiring parental intervention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [312] "The IFAE contains three similar sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [313] "Activity involvement is grouped into nine predetermined, mutually exclusive, and exhaustive categories, including athletic, performance/fine arts, social, community, academic clubs, professional development, press, leadership/political, and religious."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [314] "The questionnaire-pack consists of four sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [315] "This graphic rating measure consists of two scales completed following hypothetical sales interviews: subject and experimenter. The Subject scale consists of six columns that contain five possible reactions to the sales interview. The Experimenter scale consist of five columns that contain five possible reactions from the potential prospect."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [316] "This measure includes: Three case vignettes, a continuous judgment scale of details of reporting history, and demographic features of the respondent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [317] "The measure consists of three parts (Parts A-C)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [318] "Three parallel forms of this questionnaire were used with varying item counts: (a) child self-report, (b) caregiver’s report of child’s behavior, and (c) teacher’s report of child’s behavior. The measure is comprised of three subscales: Reactive aggression, Proactive aggression, and Relational aggression subscale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [319] "The Abuse Probability and Child Sexual Behaviors Questionnaire consists of four situations, along with demographic questions, including age, gender, level of education, type of employment, years of experience with abuse cases, and number of sexual abuse cases dealt with professionally."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [320] "After hearing a vignette, participants are asked what the group should do (judgment) and why (reasons). Reasons are probed for clarification, where necessary, and participants are asked for any additional reasons. Following this, the opposite position is presented and probed. Responses are probed for clarification, and reasons for the response are elicited."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [321] "This coding scheme consists of six general categories which are divided into sub-categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [322] "The subjects were asked not only to specify the number of ergonomic interventions which were realized in the organization, but also to describe each of these interventions in detail."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [323] "This instrument contains three components: evaluation of the children’s satisfaction, evaluation of the treatment-related objectives of the programme, and evaluation of the specific impact of the use of puppets on the development of the psychosocial expression skill."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [324] "The The Emotion Word Tests contains two tests: Emotion Word Synonyms Test and the Emotion Word Association Test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [325] "This instrument consists of five main questions and additional probing questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [326] "The questionnaire comprises three parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [327] "All possible triads of eight attitude statements were presented to participants, giving six replications of each paired comparison."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [328] "A Food-Environment Belief Score is created for each individual from seven food-related environmental belief items. A Food-Environment Behaviour Score is created for each individual from six food-related environmental behavior items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [329] "The questions focus on two target behaviors: intentions to purchase organic apples and intentions to purchase organic ready-to-cook pizza instead of their conventional alternatives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [330] "This revised measure consists of items distributed across four subscales: Body Dissatisfaction, Compensatory Behavior, Binge Eating, and Weight Preoccupation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [331] "The inventory included three dimensions classified as engagement (behavioral, cognitive, and physical coping) and four dimensions classified as disengagement (anger, avoidance, helpless, and hangout coping). The participant was presented with general descriptions of coping intentions, together with three to four examples for each intention. After reading the general instructions, the participant was then asked to indicate his or her use of the coping intention for each of four problem types."                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [332] "The Patient Primary Health Care Involvement Interview consists of three initial questions and nine follow-up questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [333] "The Suicidal Behavior Measure contains three initial questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [334] "The Chronic Fatigue Syndrome Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [335] "This measure contains several yes/no items about mammography history, including open-ended answers regarding dates."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [336] "The item count varies based on responses to the questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [337] "The semi-structured interview guide consists of seven demographic questions, seven primary interview questions, and fourteen possible probe questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [338] "This self-administered survey consists of four sections: individual characteristics and attributes, fruit and vegetable intake prior to beginning college, the competing food choice construct, and questions regarding current fruit and vegetable intake."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [339] "Fourteen dimensions were created: Absence of Dissension, Lack of Arbitrariness, Communication Down, Formalization, Group Unity, Informal Leadership, Job Competence, Planning and Organizing, Production Drive, Pride in Work Group, Public Relations, Safety Enforcement, Social Nearness, and Sympathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [340] "This semi-structured interview consists of eight primary questions and additional potential probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [341] "The survey asked for current smoking status, age, sex and age of starting smoking. Relapsers were asked where they had obtained their first cigarette, their mood and intentions immediately before first lapse. Respondents were also asked if they still wanted to stop smoking and whether they thought they would be able to stop smoking in the future."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [342] "This measure consists of three sections. The first section contains questions about age, sex, nationality, and existing purchasing behavior with regard to animal products. It then asks respondents to rate the importance of eight farm animal welfare issues. The second section provides information about the existing pig slaughtering techniques used in the UK. Respondents are asked whether they would support government legislation to make it compulsory for slaughterhouses to use a particular \"humane\" system. They are then asked the amount of money they would be willing to pay, as an increase in their weekly food bill, to support this legislation. The third section asks eight, related, attitudinal questions, including questions about the morality of the pig slaughtering techniques. Finally, respondents are asked to give some rationale for their responses."                                                  
## [343] "The Modified Child Sedentary Activity Questionnaire contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [344] "The Picture Preference Task - Fire Setting Behaviors consists of two categories of pictures. There are six fire-related and six non-fire-related pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [345] "The measure asks children to self-monitor their pain four times daily, while Mothers record their children's stomach pain episodes once per day."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [346] "The Peer Interpersonal Assessment consists of nine descriptors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [347] "Fourteen categories of caffeine were measured."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [348] "To measure positive emotion expressivity, coders rate the extent to which individuals display smiles, laughter, head nods, forward leans, positive touches, and warm voice tones."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [349] "The interview explores four main areas: the onset, process and impact of the illness on patients and their families (practically/socially/emotionally) and patient experiences when seeking medical help (expectations/experiences/opinions/suggestions). At the end of the interview, patients are encouraged to share any additional information relevant to their experiences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [350] "This test is composed of thirty statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [351] "The Parental and Peer Relations and Substance Use Measure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [352] "Eleven specific questions address the life context and nature of the pivotal or transformative experience; participants’ behavioral, cognitive, and affective responses to the event or relationship; and the process of coming to understand how and why the experience was transformative."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [353] "The Scales of Social Status consists of four situations used for rank ordering."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [354] "The Academic Aptitude Test, Graduate Level contains five parts: I) Vocabulary, (II) Reading Comprehension, (III) Verbal Reasoning, (IV) Quantitative Reasoning, and (V) Numerical Ingenuity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [355] "The Patient Perceptions of Nurse-Delivered Cardiovascular Prevention Questionnaire contains fourteen statements related to different aspects of care and two additional questions, whether they would recommend nurse-led care to other patients and their satisfaction with received prevention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [356] "This measure consists of two tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [357] "Five behaviors were coded."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [358] "The survey consists of three sections, each of which is on a separate page."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [359] "The Perceived Barriers to Receiving Mental Health Care Measure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [360] "The final outcome is a set of ten person categories each comprising two statements, giving a total of twenty statements which are randomly listed in the questionnaire. The questionnaire is two-sided: the twenty statements on one side related to a significant relative and the twenty statements on the other to a significant non-related person."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [361] "The measure consists of three parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [362] "The measure consists of four sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [363] "The Evaluation factor is represented by six scales of bipolar adjectives, the Potency factor is represented by three scales, and the Activity factor is represented by three scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [364] "The task consists of four steps."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [365] "Respondents are given four blank graphs on a single sheet of paper."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [366] "This measure consists of five parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [367] "The Profile of Music Perception Skills consists of nine tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [368] "The measure consisted of a written examination, performance test, service rating, and rating of experience and training."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [369] "The measure includes several open-ended questions regarding couples' conflict, conflict resolution, and the occurrence of physical violence between partners."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [370] "The Oath-Taking Competency Task consists of an identification task, a difference task, a definition task, a morality task, and the Peabody Picture Vocabulary Test--Revised."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [371] "Participants assess seven sources of news media according to four constructs (credibility, accuracy, objectivity, and authority)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [372] "The Confusion Assessment Method contains nine criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [373] "This measure consists of two tests (mimeograph and multilith)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [374] "This instrument consists of five exposure statements."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [375] "The Mini-Cog involves the repetition and recall of three words, as well as a clock drawing task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [376] "The K-ABC contains Simultaneous and Sequential processing scales, the Mental Processing Composite (Simultaneous + Sequential), and the Achievement Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [377] "For the Initial Letter Fluency Task, participants generate as many words as they can that begin with a certain letter. For the Excluded Letter Fluency Task, participants generate as many words as they can that do not contain a certain letter."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [378] "Psychological abuse was an index of three measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [379] "The PB-IAT uses paired concepts to measure association strengths by reaction time differences in five consecutive blocks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [380] "The components comprising the HPS are: good form on the Rorschach, Portcus Maze Quantitative score, role perception score based on the Thematic Apperception Test, level of manifest anxiety based on the Manifest Anxiety Scale, the report of a close relative of the patient regarding his solitary and oppositional behavior, Index of Social Position, and length of previous psychiatric treatment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [381] "The six tasks comprising this measure are as follows: Compiling individual bills, Sorting the charity collection, Looking up telephone numbers, Sorting conference labels, Proof reading the hotel leaflet, and Opening and closing the garage doors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [382] "This measure consists of three scales of inferred Striated Muscle Tension, Autonomic Arousal, and Feelings of Anxiety."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [383] "Not Reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [384] "Ten imagined scenes are rated for similarity to actual memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [385] "The Strange Situation Procedure consists of eight episodes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [386] "The measure consists of a hypothetical scenario that describes an interaction between the child and an alien in the forest. During their interaction, the alien asks the child why humans are affectionate with each other. The child is then prompted to generate possible reasons that people express affection."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [387] "The Pitfall Intention Explanation Task with Clue Questions consists of a single-frame cartoon that shows a character’s intention and seven serial open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [388] "Fifty-one apertures are projected onto a wall in a random order."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [389] "This measure consists of two open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [390] "The measure consists of four Verbal Autobiographical Fluency tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [391] "The Post-Therapy Questionnaire assesses participants' attitude toward the experiment, their progress in self-reinforcement therapy, and their estimation of their own improvement. The questionnaire also asks participants to indicate the number of dates during treatment and whether this is a change in frequency."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [392] "The collected data fall within seven categories of cognitive activities/subscales: Orientation to time, Orientation to place, Orientation to person/member identities, Appropriate responding, Associative learning, Episodic recall, and Use of scheduling aids."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [393] "The questionnaire was short and consisted of five core items, some with subparts, and included one write-in question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [394] "The COS represents a summary rating of four \"dimensions\" (Mobility, Occupation, Social Integration, and Engagement)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [395] "The measure assesses the following four handicaps: mobility, physical independence, orientation, and social integration."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [396] "This measure consists of a single rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [397] "The protocol is comprised of seven sections (Child’s diagnosis, Support from immediate family members in your home, Support from extended family members, Support from friends, Finances/Sources of income, Support from workplace, and Community supports)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [398] "Three types of multi-item composite measures were developed to measure three different forms of online victimization—online harassment, cyberstalking, and online threats of violence—(a) fear of OIPV by a current/former intimate partner, (b) fear of OIPV by a friend/acquaintance, and (c) fear of OIPV by a stranger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [399] "Each response is coded according to five structural (accessible service, timeliness, client incentives, clinician feedback, and comfortable atmosphere) and five therapeutic process strategies (therapeutic relationship, empowerment, achievable gains, client expectations, and broad-based needs)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [400] "This semi-structured interview consists of two open-ended prompt questions, each containing a series of follow-up questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [401] "The Cultural Tastes Profiles contain two measures assessing preferences for TV programs and music."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [402] "This measure consists of five visual-analogue scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [403] "Children were asked to evaluate the possibility of reconciliation between the two figures in each of the six stories through questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [404] "There were three trials for each task, resulting in total of six trials for each child."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [405] "Children are presented with a series of six stories with two illustrated cards per story."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [406] "Participants are asked to nominate up to three classmates who are best described by physical, verbal, and relational aggression criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [407] "The measure consists of two memory tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [408] "The measure consists of eight stories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [409] "The Residential Calendar is a schematic representation of a month."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [410] "The WCST consists of four stimulus cards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [411] "Fourteen emotions were assessed to obscure the target emotions: gratitude and anger."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [412] "The Choice Explanation for Individual Differences Scale consists of four two-part questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [413] "The Choice Explanation for Sexual Orientation Scale consists of one two-part question."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [414] "The Environmental Explanation for Sexual Orientation Scale has one two-part item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [415] "The Genetic Explanation for Sexual Orientation Scale has one two-part item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [416] "The measure consists of short descriptions of six activity categories and a list of prototypical activities within each category."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [417] "For this task, children are required to list as many emotion words as they can."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [418] "Opposite each classmate's name are four circles--one containing a question mark and the others containing a smiling, a sad, and a neutral schematic face. Children are asked to tick the face which shows how much they like to \"play with\" each person at school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [419] "The Helping Scenarios and Helping Intention Scale consists of three helping scenarios and likelihood of helping rating scale for one of three featured targets."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [420] "The Anabolic-Androgenic Steroid Dependence Interview Module contains seven diagnostic criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [421] "The measure consists of a vignette presented in four different versions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [422] "Five critical images depicted themes of dependence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [423] "The checklist consists of nine simple questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [424] "There are nine web-based tasks consisting of questions to be answered using a simulated website."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [425] "The Semi-Structured Interview Protocol--Rural Experiences with Mental Illness was divided into three sections, with semi-structured items/discussion prompts/list prompts in each section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [426] "Within the Measure of Participation in Conversation, there are two subscales encompassing Interaction and Transaction, while the Measure of Support in Conversation has two subscales including Acknowledging Competence and Revealing Competence. The Revealing Competence subscale is composed of three elements that are scored separately and averaged to give the score for this subscale. The elements are: (a) Ensuring the adult understands, (b) Ensuring the adult has a means of responding, and (c) Verification."                                                                                                                                                                                                                                                                                                                                                                                                                      
## [427] "The audit tool assesses the management of fleet safety against five core categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [428] "Two main observation categories are used: turns and interaction breakdowns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [429] "Eight pictures are rated for this measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [430] "The Role of Information in Strategic Decision-Making by Executives Semi-Structured Interview consists of thirty-two issue items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [431] "The Motivations in Social Virtual World Uses (Second Life) Measure consists of two sections: The first part was on respondent demographic/situational factors, such as age, gender, education level, experience in SL, and real-life living area. The second part included two open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [432] "This measure consists of a single task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [433] "This coding system describes four categories of interaction behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [434] "Questionnaire Measuring Game Acceptance and Learners’ Evaluations of Game Elements"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [435] "Twenty-nine alcohol policies are rated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [436] "This interview measure gathers information in five areas: Understand, Fill in the gaps, Outcomes, Understand, Feasible Outcomes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [437] "The Banning CP and Disciplinary Alternatives questionnaire has three parts: The first part contains questions to collect demographic information. The second part includes (a) teachers’ understanding about the laws and policy on banning CP, and (b) teachers’ perceptions on the strategies for zero CP and alternative disciplines in schools. The third part contains concerns of the effects after banning CP in schools, such as effects on students, effects on parents, effects on teachers, and effects on school administrators. There is an open-ended question at the end of the questionnaire for extra comments on banning CP."                                                                                                                                                                                                                                                                                                     
## [438] "The measure consists of eight checklist items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [439] "The Plan-a-Day Scheduling Task consists of two practice problems and eight assessment problems of increasing difficulty."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [440] "The IFS consists of the following eight subtests: MP = Motor Programming; CI = Conflicting Instructions; MIC = Motor Inhibitory Control; BDS = Backwards Digit Span; VWM = Visual Working Memory; SWM = Spatial Working Memory; AC = Abstraction Capacity; VIC = Verbal Inhibitory Control."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [441] "Three tasks are administered. The following scores are recorded: distractor scores (the number of distractors that were touched and used by participants), accomplishment score (the percentage of task steps completed), commission errors (the total number of errors made on the NAT, excluding omissions), completion time (the number of seconds participant spent working on the tasks)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [442] "In the semi-structured interviews, participants are asked three main questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [443] "The STARR Method Interview consists of an incident report card with three incidents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [444] "The measure consists of four open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [445] "The Clock Drawing Test: Rouleau Scale consists of drawing two clocks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [446] "This measure assesses four basic instrumental activities of daily living tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [447] "The questionnaire consists of four open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [448] "This measure is a five-level scale with five mutually exclusive levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [449] "The Moral Reasoning Inventory consists of two dilemma scenarios with eight moral reasoning statements each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [450] "The questionnaire comprises a series of seventeen statements related to assaults."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [451] "The SCCS coding taxonomy consists of six mutually exclusive social communication behavioral dimensions: hostile/coercive, prosocial/engaged, assertive, passive/disengaged, adult seeking, and irrelevant."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [452] "Recipients of domestic violence services are interviewed using four open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [453] "The Harvard Beat Assessment Test consists of four subtests"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [454] "The Lie Vignettes consists of lie vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [455] "This open-ended interview is guided by seven main areas of focus."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [456] "The Palliative Care Research Priorities Survey consists of quantitative and qualitative items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [457] "The Blacked-Out Violent Impulsive Behaviour Questionnaire consists of three multiple-part items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [458] "The procedure provides two scales: a Risk-Taking Scale (RTS) of the extent of the risk-taking behavior the participant displays within the game, and a Moral Decision-making Scale (MDS) of empathy and pro-social behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [459] "Information is obtained concerning the frequency, intensity and duration of nine emotion episodes (fear, anger, sadness, disgust, shame, guilt, depressed, joy or relaxed)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [460] "The measure consists of four topic guide themes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [461] "This measure consists of three open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [462] "The questionnaire consists of seven structured and semi-structured questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [463] "This interview guide consists of four open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [464] "The measure consists of four areas (each consisting of multiple parts)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [465] "The interview consists of three open-ended questions along with seven probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [466] "This measure assesses six domains of academic functioning."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [467] "The Verbal Fluency Test of Enjoyable Experiences consists of four trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [468] "The Conversational Speech Samples Procedure requires participants to describe affectively positive and negative past events."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [469] "This interview consists of five open-ended questions (with some being comprised of multiple parts)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [470] "The Therapist Negligence Questionnaire consists of one of eighteen possible scenarios followed by a series of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [471] "The Allocentric Cognitive Mapping Task consists of one mapping task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [472] "The four basic questions comprising the RAP interview are each followed by a series of structured prompts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [473] "The MSE is comprised of three phases: questions about the defendant's general psychological history, questions about the alleged offense, and a present mental state examination."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [474] "The Dementia Screening Indicator includes seven simple items—age, educational attainment, history of stroke, presence of diabetes mellitus, difficulty managing money or medications, low BMI, and depressive symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [475] "Coders rate observed anger for each of four phases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [476] "Subjects are instructed to memorize the contents of pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [477] "This is a seven-symptom (item) scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [478] "This pictorial rating scale consists of three faces (happy, sad, and neutral)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [479] "The number of sentence-word combinations (set size) presented before the recall cue varies from two to six, with three trials of each set size."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [480] "This measure consists of four diagnostic criteria of six symptoms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [481] "There are six somatic probes utilized in the RPDS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [482] "The Personality Disorder and Professionals’ Evaluation of Treatment Features Vignets Measure consists of eight vignets, containing six client variables."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [483] "Thirteen verbal variables are included."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [484] "Five video scenes are viewed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [485] "Content validity: Supporting content validity, experts reviewed the items before their inclusion in the instrument. Construct validity: Supporting construct validity, the scale was associated negatively with perceptions of employability and positively with career distress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [486] "This measure consists of seven blocks of trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [487] "Functioning is assessed in six domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [488] "Nine hypothetical situations are rated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [489] "The measure consists of two sets of yes/no questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [490] "Ten dimensions of parenting are assessed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [491] "This measure consists of six coding categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [492] "The Face, Legs, Activity, Cry, Consolability Scale-Chinese Version contains five criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [493] "The survey measured nine variables (variety, price, quality, promotions, shelf placement, store placement, nutrition information, healthier alternatives and single fruit sale) to assess the healthfulness of retail food stores on seven healthy and five less healthy foods that are markers of diet quality."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [494] "The Modified Affect Labeling Task consists of six picture viewing trials of homogeneous valence (three pleasant, three unpleasant) under three conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [495] "This measure comprises six subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [496] "The stimulus materials consist of forty-nine pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [497] "Using the Coding System for the Evaluation of Emotions, raters coded the presence and intensity of six emotions in each video."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [498] "The measure consists of three scales: Maternal Sensitivity, Feedback, and Joint Attention."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [499] "This measure consists of pegboard and diagram tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [500] "Four content categories were coded: Expression, Appeal, Interaction, and Discourse."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [501] "Stimuli are nine sets of items and nine nonsense words."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [502] "The number of items on the SPEF-R varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [503] "The relived emotion task comprises six trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [504] "Five dimensions assess spouses’ problem-solving skills, communication, denial, dominance, and conflict."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [505] "The final interview is guided by four main questions, which are accompanied by probing questions if deemed necessary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [506] "This measure consists of two domains consisting of four and three primary target behaviors, respectively. These primary target behaviors comprise a list of sub-behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [507] "The measure consists of a written prompt, followed by verbal interview questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [508] "The Fathers and Healthcare Interview consists of five healthcare decisions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [509] "Participants are asked how much a stressor has affected four domains of their lives (mood, school/work, interpersonal relationships, and thinking and judgment)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [510] "The Alzheimer’s Disease Cooperative Study--Clinical Global Impression of Change consists of seven rated items and two, fifteen-area structured interview guides."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [511] "There are eight rated aspects of the Kitchen Skills Assessment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [512] "The Ascription of Responsibility Scale has three test items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [513] "The measure consists of the Telling time and the Making change tasks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [514] "The Academic Diligence Task consists of five, four-minute blocks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [515] "The Online Fat Talk Scale has nine scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [516] "This measure contains two statements, each evaluated for occurrence of elderspeak and appropriate elderspeak correction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [517] "The Member-Leader Scoring System--Revised consists of eighteen affective and four thematic categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [518] "The Bullying Perpetration and Bullying Victimization Scales have one global item and three specific items for each scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [519] "The Maternal Engagement/Disengagement Scale consists of four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [520] "The measure consists of nine subtests (tasks)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [521] "The Conflict-Management Styles in Small Group Conflict Coding Scheme is comprised of seven categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [522] "The Group Emotionality Rating System--Revised consists of five rating codes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [523] "Null."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [524] "Forty-two indices are grouped into the following five process categories of assimilation: external distress, pain, noticing, decentring and action."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [525] "The Life Space Assessment--Chinese Version consists of five concentric areas."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [526] "There are eight VAS."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [527] "The Selfie Coding Scheme has cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [528] "Participants are scored according to two global ratings of nervousness."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [529] "The Child Behavior Vignettes—Edited Version has five vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [530] "The Decision-Making Trial and Evaluation Laboratory Questionnaire assesses eight factors in four dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [531] "This tool allows researchers to categorize lyrical and/or visual sexually explicit content in three categories as follows: “mild (least sexually explicit),” “moderate,” or “heavy (most sexually explicit).”"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [532] "This measure consists of nine indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [533] "The Write Start! Writing Assessment Tool asks children to write one caption for a photo of themselves playing at school."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [534] "Item count not available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [535] "The Global Assessment Scale is a single scale (item)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [536] "The SMART Goal Rubric contains four domains, comprising the Global Domain score, and a overall Global IDP score."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [537] "Possible dementia is rated on seven stages of cognitive decline."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [538] "Participants are rated according to three target simulations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [539] "Children are asked to place a Lego figure where they would most like to be in reference to three animals."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [540] "Based on participants' responses to the second question, this measure can either consist of two or seven yes/no items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [541] "The measure consists of eight binary items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [542] "The Pride and Guilt about Environmental Behavior Scale uses six emotional terms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [543] "This measure consists of six vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [544] "The Behavioral Use of Positive Guidance Measure uses one global code for an entire videotaped session."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [545] "The Iowa Gambling Task--Modified consists of four decks of cards."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [546] "The Full Outline of Unresponsiveness Score--Chinese Version consists of four categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [547] "For each event that participants report, participants are asked to assess four domains: (a) type of trauma; (b) symptoms related to the event; (c) treatment received after the event; and (d) emotional support received during the event."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [548] "The websites are rated according to five constructs: Site credibility, Structural credibility, Social categorization, Outgrouping, and Moral disengagement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [549] "The Food Allergy Questionnaire asks participants to rate two pairs of food items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [550] "Both the forward and backward memory conditions consist of eight recognition questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [551] "The measure consists of three main scales (Work, Social life, and Family life), along with two scales measuring Perceived stress and Social support, for a total of five scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [552] "The TCAB consists of six neuropsychological tests: Short Blessed Test; Word Fluency: Animals; Spelling \"World\" Backwards; Cognitive Estimation Test; Serial Seven Subtraction; and the Logical Memory A subtest."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [553] "The Memory Impairment Screen by Telephone consists of four target words."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [554] "This measure contains four actual questions, along with a computed index of similarity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [555] "The Semantic/Pragmatic Error rating is derived from the number of errors that disrupt meaning of sentences."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [556] "Action planning is measured with four yes/no items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [557] "This measure consists of four verbal reasoning tasks: Planning, Scheduling, Making a decision, and Building a case."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [558] "This measure consists of seven different criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [559] "The number of items on the SEMI interview can vary, depending on clinician needs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [560] "This measure consists of six tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [561] "This measure is composed of two slider controls, one for arousal and one for pleasure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [562] "Participants are asked to respond to four open-ended probing questions that correspond to two vignettes. Twelve further questions are asked."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [563] "This index of hazardous drinking is constructed from the responses to each of five indicators of hazardous drinking."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [564] "N/A."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [565] "The Ill-Structured Problem-Solving Test has two open ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [566] "This measure consists of three domains: Behavior, Symptoms, and Injuries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [567] "This paper presents a guide for the counselor to use in interpreting the individual profile of the Kuder Preference Record— Vocational (Kuder PR-V)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [568] "The Social Engagement Scale has nine activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [569] "This measure consists of five pairs of bipolar adjectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [570] "This measure consists of three components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [571] "The Mental Disability Military Assessment Tool consists of four categories, which are composed from ten subcategories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [572] "This measure contains six figural fragments to be completed by respondents."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [573] "This measure is composed of four death-related comic strips and eight filler comic strips."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [574] "The Selective-Attention Test consists of four tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [575] "Each block includes three decision-making trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [576] "The Facebook Use Measure has five total items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [577] "The Observational Measure of Maternal Parenting Behavior measures five parental behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [578] "This measure consists of one open-ended question in reference to a particular étude."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [579] "This measure assesses three core CBT skills: motivational interviewing (MI), goal setting (GS), and behavioral task assignment (BTA)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [580] "The Autism Diagnostic Observation Schedule consists of eight examiner-presented tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [581] "The Handoff Global Rating Scale consists of four domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [582] "This measure assesses three main domains: daily living and self-care; work, study and housekeeping; and social contacts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [583] "Subjects are requested to think of one possible original use for each of five objects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [584] "The Perceptions of Symptom Severity Questionnaire consists of nine vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [585] "The Threat Detection Questionnaire has five scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [586] "There are three measures, each comprised of several items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [587] "The Mini-Cog--Thai Version has three components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [588] "This measure consists of five different groups of two sentences each."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [589] "Drawings are rated according to ten assessment criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [590] "Observers are asked to count the frequency of five joint attention behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [591] "SVMC is graded at each hip, knee, ankle, subtalar, and toe joint."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [592] "This measure presents four situations, each with five possible reactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [593] "This measure consists of four components (Eye, Motor, Brainstem, and Respiration)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [594] "The Advanced Care Planning--Audit consists of nine sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [595] "The Multiple Sleep Latency Test includes a minimum of four tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [596] "Each drawing is rated on three dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [597] "The Acceptability of Aggression Vignettes--Adapted are a set of three vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [598] "MoodRhythm helps patients track five social rhythms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [599] "The Young Adult Daughter Interview Protocol consists of six topics."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [600] "Participants are asked to place a characteristic within each of ten boxes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [601] "The Composite Complex Span consists of three subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [602] "This measure consists of several indicators within five ordered levels for each of the four CEPS-AS dimensions: emotion recognition, self-reflection, cognitive empathy, and affective empathy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [603] "The Spanish Parent–Child Aggression Acceptability Movie Task includes eight movie clips."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [604] "Participants are asked to indicate their frequency of use for each of eight strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [605] "Participant are assessed for whether they use each of five task-analyzed skills correctly."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [606] "Subjects are asked to write down five characteristics that they believe are typical of each of four attitude objects."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [607] "The deployment of eight coping strategies is applied to each of three situations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [608] "The Semantic Differential Questionnaire for Teachers consists of three phrases, each followed by nine pairs of contrasting adjectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [609] "This measure consists of a single graphical scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [610] "The Gendered Structural/Organizational Power Measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [611] "The Modified Six Elements Test--Adapted consists of six tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [612] "For each of two dimensions, participants are rated according to a seven point-scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [613] "Respondents are exposed to six musical improvisations. Participants identify the emotion communicated by each client, from a list of five emotions. Then, they distribute nine points for each of the six improvisations, between the emotions included in their choice. Finally, they estimate the chance that each client had a meaningful therapy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [614] "The Client Language Assessment – Proximal/Distal consists of five dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [615] "This measure consists of three subscales (Problem Solving, Seeking Social Support, and Avoidance)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [616] "The Time Use Diary--Malay Version consists of two sections in which respondents have five response columns."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [617] "The Short Organizational Commitment Questionnaire--Adapted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [618] "This instrument consists of a single visual scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [619] "The Specific Nordic Questionnaire--Persian Version measures nine areas of the body."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [620] "After listening to and reading each of ten stories, participants are asked to answer eight standard questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [621] "Twelve categories of competitive behaviors are noted, along with the type of classroom activity during the occurrence and/or the gender of the child who expresses the behavior."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [622] "This measure contains seven quantitative items, each followed by specific prompts to elicit qualitative comments, and an additional three qualitative items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [623] "This measure consists of six global rating scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [624] "The Confusion Assessment Method--European Portuguese Version consists of nine delirium features."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [625] "There are two versions of this instrument."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [626] "This measure consists of two warm-up questions and five main open-ended questions, each with multiple prompting questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [627] "Participants are asked to provide three estimates of geographical slant: Verbal, Visual, and Haptic."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [628] "This measure assesses five cognitive domains (attention and orientation, memory, verbal fluency, language, and visuospatial skills)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [629] "The Body Shape Test for Pregnant Women consists of nine female bodies with different body shapes varying from very thin to overweight."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [630] "The Acculturation Strategies and Attitudes Measure--Migrant Version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [631] "The Social Affiliation Measures each have four identical items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [632] "This interview guide comprises nine primary questions, two of which include additional follow-up probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [633] "The BQI comprises ten components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [634] "This measure consists of four tasks: Information acquisition, Recall, Recognition, and Visual-spatial orientation tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [635] "This measure comprises four sections (domains): Current Function, System Specific Involvement, Current Clinical Assessment, and Quality of Life."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [636] "The Selective Exposure Measure consists of five documentaries."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [637] "The Mooney Face Test--Online Version consists of three-alternative forced-choice images."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [638] "This measure is composed of six sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [639] "This measure evaluates eight aspects of fall risk."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [640] "This measure consists of six semantic differential items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [641] "The coding scheme centers around five transformational leadership styles: Idealized influence, Inspirational motivation, Intellectual stimulation, Mentoring/providing feedback, and Providing encouragement."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [642] "Mother-child interactions during three discussions and one problem-solving task are scored according to three qualitative rating scales (Supportive presence, Respect for child’s autonomy, and [Lack of] Hostility)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [643] "This measure consists of the following constructs and sub-constructs: Achievement goals (Mastery, Performance-approach, and Performance-avoidance goals); Interest; Self-efficacy; Cognitive strategies (Surface and Complex); Meta-cognitive learning strategies; Classroom structure (Task, Autonomy, and Evaluation/recognition); and Academic achievement (Numeric Series and Finding Similarities subscales)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [644] "The Jansari Assessment of Executive Functions (real-life and virtual reality versions) is a multiple errands task designed to assess nine aspects (constructs) of executive functioning: planning, prioritization, selective-thinking, creative-thinking, adaptive-thinking, multi-tasking, action-based prospective memory (PM), event-based PM, and time-based PM."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [645] "The Brand Social Responsibility Scale consists of four adjectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [646] "The Snack Time Dyadic Coding Scale consists of nine domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [647] "EVALEC includes four tests focused on written word processing (LEVORT, LEXORT, LEXLENGTH, and Orthographic choice). EVALEC also includes tests of phonemic and syllabic awareness, phonological short-term memory, and rapid naming"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [648] "This battery consists of four short puzzle games."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [649] "The CHAT consists of the following four sections: Physical health, Mental health, Substance misuse and Neurodisability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [650] "This measure consists of seven main tasks: CANTAB Paired-Associates Learning, c–g arena, CANTAB Intra-Extra Dimensional Set Shift, Modified DOTS, CANTAB Simple Reaction Time, finger sequencing, and NEPSY visuomotor precision."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [651] "This instrument consists of a single, eight-response alternatives scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [652] "The A-HAT includes three tasks: Writing the Alphabet from Memory, Copying a Paragraph, and Writing to Dictation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [653] "For residents, the ATOSE includes two main categories (Total Engaged Grouping and Total Non-Engaged Grouping), each comprised of three subcategories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [654] "The Paediatric Attachment Style Indicator classifies attachment behavior into three categories: secure, avoidant, or ambivalent."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [655] "This measure consists of a single rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [656] "The Child Response Scale comprises a single seven-point scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [657] "The RSI is a five variable model that includes: intensity of exertion (force), efforts per minute (frequency), duration per exertion, hand/wrist posture (wrist flexion or extension) and duration of task per day."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [658] "This measure is comprised of two visual analogue scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [659] "Three activities are scored."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [660] "The DVS comprises five rating levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [661] "Narratives are categorized into three categories of regulatory strategy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [662] "This battery consists of seven tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [663] "The Affective Reactions Measure contains six adjective pairs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [664] "The Laboratory Temperament Assessment Battery--German Version consists of five episodes for the Puppet game test and three episodes for the Task orientation test."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [665] "The Purchasing Recall Questionnaire contains fourteen food categories and eleven drink categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [666] "The FFQ consists of ninety individual food items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [667] "The coding scheme consists of five categories: self-feeding, responsiveness, active feeding, social behavior and distraction."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [668] "The finished SCVQ consists of eight statements and an open question regarding what the participant found most helpful or unhelpful about the definition."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [669] "This interview consists of six main questions, along with additional prompting questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [670] "This test comprises six scenarios, for each of which respondents provide answers to three open-ended items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [671] "The RCS-E-It includes five levels of complexity: C = need for basic care and support; N = nursing needs; T = nature and intensity of each intervention therapy; M = need for medical intervention and E = need for equipment."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [672] "Three dimensions (role position, support, performance, and global) are rated for each of three environments (work, education, and residential)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [673] "The Cumulated Ambulation Score consists of three activities."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [674] "This measure consists of the Working Memory and Response Inhibition tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [675] "This measure consists of the following scales: Burnout, Social network burnout, Trust, Professional Development, Commitment, Professional Fit, and Access to support."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [676] "Respondents count the number of vowels presented in a paragraph. Both performance and time spent on the task are recorded."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [677] "This measure assesses eight attributes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [678] "The Italian OCS consists of ten subtests: picture naming, semantics, orientation, visual field, sentence reading, number writing and calculation, broken hearts, imitation, recall and recognition, and trails task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [679] "One global score is created based on observations of functional impairment, social and emotional reciprocity, social competence, interests, rigidity, values, self-re\u008fflection, speech and language, body posture, gestures, facial expression, and eye contact during videotaped interviews."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [680] "The Wedgits Problem-Solving Puzzle Task is comprised of a possible three puzzles (tasks), plus one warm-up puzzle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [681] "This measure consists of the following subscales: Family Structure and Resources, Family Social Support, Family Problems, Parent Stress Reactions, Family Beliefs, Child Problems, and Sibling Problems."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [682] "This battery consists of seven tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [683] "The Camarillo Dynamic Assessment Scales consists of nine scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [684] "This measure lists seven forms of written self-expression, each evaluated for five emotions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [685] "Twenty social interaction verbs are used for the coding of child pretend play interactions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [686] "Four variables are rated."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [687] "This measure includes knowledge and behavior modules for the following five psychoactive substances: cannabis, amphetamines, ecstasy, cocaine, and hallucinogens."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [688] "This instrument consists of six primary questions, each of which includes additional sub-items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [689] "Ten scenes from the film test subjects' temporal order memory."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [690] "The Problem-Based Learning Scenarios consists of five scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [691] "The Intertemporal Decision Making Task is comprised of six blocks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [692] "The Triangle Completion Task for Children consists of four trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [693] "The UAB Study of Aging Life Space Assessment features five levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [694] "This measure consists of seven broad categories (problem-solving, changing thoughts, changing goals, changing physiology, social support, religious activity, and experiencing the emotion without trying to change it) of emotion regulation strategies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [695] "The authors created the following quadrant model using two self-reported items: High perceived parent support/Low adolescent motivation; High perceived parent support/High adolescent motivation; Low perceived parent support/Low adolescent motivation; Low perceived parent support/High adolescent motivation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [696] "The RBANS EE is a measure of errors committed during list learning/recall, semantic fluency, and coding subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [697] "The Modified Sørensen Test consists of a force-matching and position-matching fatigue task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [698] "The Profiles of Occupational Engagement in People with Severe Mental Illness--French Adaptation consists of nine dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [699] "The MyLifeTracker is comprised of five areas of importance."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [700] "The Alcohol and Other Drug Use Dual Diagnosis Interview Schedule consists of four core questions with fourteen prompts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [701] "The Gilboa Functional Test consists of five subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [702] "The Figure Copy Task is comprised of three sets of tasks: Pre-, Condition, and Post- Experimental Conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [703] "The Recovery Ecological Monetary Assessment is comprised of six sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [704] "The tool comprises a flow chart algorithm, three fact sheets, four fall risk assessment tools, a summary risk factor checklist, a wall chart, guidelines for talking with patients, a case study, the pocket guide, two referral forms, and a patient brochure on hypotension."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [705] "The Novel Tool Test is comprised of a set of six cylinders and six tools."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [706] "The Culpability Measure consists of four scenarios, followed by five perception items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [707] "The Ecological Task of Cognitive Assessment for Older Adults in Virtual Reality is comprised of five tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [708] "The Assessment of Story Comprehension consists of nine brief, child-relevant stories and eight literal and inferential questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [709] "The Test Your Memory--Greek Version contains eleven tasks or scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [710] "Six behaviors are coded."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [711] "The Complex Span Tasks--Shortened is comprised of six tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [712] "The California Bullying Victimization Scale–Retrospective contains eight specific types of victimization."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [713] "The coding scheme comprises six main categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [714] "Interactions with friends and relatives are measured with five parallel items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [715] "The Measures of Implicit and Explicit Knowledge of a Second Language consists of five tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [716] "Twelve individual work stress items comprise the scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [717] "The Adaptive Composite Complex Span consists of three subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [718] "Ratings of each child's speech are given across four levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [719] "It consists of three subscales: (a) Cooperation–Compliance; (b) Enthusiasm; and (c) Negativity."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [720] "The Reflective Journal Worksheet for Providers contains seven open-ended questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [721] "This measure consists of seven criteria."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [722] "The Implicit Association Test--Hispanic Version is comprised of the following: three male Hispanic names, three male non-Hispanic names, three female Hispanic names, and three female non-Hispanic names, in addition to thesauruses, six words associated with intelligence and six words associated with unintelligence."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [723] "The Spaceflight Cognitive Assessment Tool for Windows is comprised of five tests: Code Substitution (CDS); Code Substitution Delayed Recognition (CDD); Delayed Matching to Sample (MSP); Mathematical Processing (MTH); and Running Memory Continuous Performance (CPT)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [724] "The test comprises three time-based and three event-based prospective memory (PM) tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [725] "This measure comprises five binary measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [726] "The Attention-Deficit/Hyperactivity Disorder Executive Function and Behavior Rating Screening Battery contains three tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [727] "The Comprehensive Falls Risk Screening Instrument consists of five subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [728] "The Communication Function Classification System features five levels for classification."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [729] "The Battery for ECT Related Cognitive Deficits is comprised of seven tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [730] "The Implicit Association Test-Blind/Visually Impaired includes two sets of pictures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [731] "The Munich ChronoType Questionnaire for Shift-Workers is comprised of five variables."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [732] "The PD-Q consists of four main sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [733] "The scenario comprises a photo of a painting and (manipulated, depending on experimental condition used) text."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [734] "This task consists of two conditions, idea and labor."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [735] "The Instrument for the Assessment of Work-Relatedness of NLBP is comprised of three risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [736] "This instrument consists of nine primary items with additional probes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [737] "The questionnaire contains a family version and a patient version."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [738] "The Die-Under-The-Cup Task is comprised of two conditions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [739] "The C-A-T contains four modules."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [740] "The Family Alliance Assessment Scales for Diaper Change Play is comprised of nine interactive dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [741] "The scale comprises six scales describing the behaviors, verbalizations, and affective expressions of jealousy in hierarchical order from an absence of explicit jealousy indices to the most explicit indices of jealousy."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [742] "The PFS is comprised of five scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [743] "The Art Gallery Test is comprised of three subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [744] "Participants are asked to respond to nine scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [745] "This measure consists of six subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [746] "Participants are categorized into two categories: Engaged and Disengaged."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [747] "The EXOdES codes for seven criterion: Observation period (time); gender; age; race/ethnicity; activity setting; activity; and vehicle."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [748] "The GIS is comprised of three scales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [749] "The SCI-K consists of nine probe and additional follow-up questions (five probes for inclusionary criteria and four for exclusionary criteria)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [750] "This measure consists of five scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [751] "The measure consists of ten basic risk factors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [752] "The CSPC consists of a single six-level scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [753] "Participants are presented with a single scenario involving three mutual funds."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [754] "This measure consists of two scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [755] "This measure consists of four seven-point semantic differential scale questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [756] "The IUSCS-CS has items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [757] "The RULE is comprised of two tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [758] "The L-FAI assesses four domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [759] "The IA consists of two sets of questionnaires, one for caregiver and one for patient-based assessments."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [760] "This instrument consists of five subtests, each of which comprises one open-ended problem."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [761] "The measure contains six symptom items and one impairment item."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [762] "The screener has five assessment categories, plus sections for listing patient history, occupational therapist comments, notes, and recommendations."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [763] "The measure contains eight subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [764] "This measure consists of two multi-level items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [765] "There are six final scenarios in total."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [766] "The FOIS-It consists of seven levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [767] "Each of five areas is measured."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [768] "There are five levels required."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [769] "Items are grouped into eight broad sections."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [770] "The test contains six tasks (elements)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [771] "The NEFPAT is comprised of six objectives."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [772] "The CNSVS is comprised of seven tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [773] "This measure consists of two global ratings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [774] "This measure consists of eight indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [775] "This measure consists of five indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [776] "The Mini-Cog involves the repetition and recall of three words, as well as a clock drawing task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [777] "The task begins with two practice trials and is followed by eight test trials."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [778] "The task is rated for four dimensions of prenatal coparenting dynamics under stress."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [779] "Participants listed their top five strivings."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [780] "This measure consists of three photographs, which are applied to each of eight scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [781] "The DUSOI consists of four parameters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [782] "The Chinese NSIQ is comprised of three parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [783] "The NSIQ is comprised of five parts."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [784] "The Italian version consists of five subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [785] "There are four indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [786] "This measure consists of three photographs (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [787] "This is an eight-point classification index."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [788] "Data pertaining to each professional are collected within four sections that incorporate the evaluation of five distinct behaviors."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [789] "The number of test items presented varies based on the respondents familiarity (i.e., user, previous user, or nonuser) with progress-monitoring measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [790] "This measure consists of three crises definitions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [791] "There are four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [792] "The BASS-D consists of seven tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [793] "This measure consists of four simulations (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [794] "This test consists of three parameters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [795] "This measure consists of three parameters."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [796] "This measure consists of six variables (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [797] "The LSS consists of seven levels of sitting ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [798] "This measure consists of seven dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [799] "This instrument consists of four BIATs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [800] "The BPSN consists of seven behavioral and two physiological indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [801] "This interview consists of five main questions, along with sub-questions that are asked based on the interviewees' responses."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [802] "This measure consists of three stories that follow a warm-up story."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [803] "This measure consists of six video clips. A short version comprised of two video clips is also available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [804] "This measure consists of four subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [805] "This measure consists of three scenarios (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [806] "This measure is comprised of three drawing tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [807] "The SHQ consists of two tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [808] "This measure consists of eight vignettes (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [809] "This measure consists of six tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [810] "This measure includes six series consisting of three terms."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [811] "This is a five-domain measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [812] "The SSST consists of four runs."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [813] "This instrument consists of five pairs (rounds) of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [814] "This procedure involves three performance tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [815] "This task consists of eight learning phases (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [816] "This measure has items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [817] "The MLAT consists of six tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [818] "Both versions consists of four components."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [819] "This measure features three kinds of aggressive behaviors and six kinds of restrictive measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [820] "There are six scenarios. Four different versions were used in the study. Each scenario contained one of four default lane configurations for which a sequence of four on-street infrastructure types was shown."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [821] "This instrument is comprised of four main questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [822] "This battery consists of three subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [823] "This measure is comprised of two vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [824] "This instrument consists of two critical blocks (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [825] "This measure consists of eight main questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [826] "The HI-ACE-III assesses five cognitive domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [827] "The measure features seven scenarios."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [828] "The eight categories comprising this measure are considered items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [829] "The MOAS is comprised of a four part rating scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [830] "This measure consists of eight domains (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [831] "This measure consists of seven scored items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [832] "The Nociception Coma Scale--Revised consists of three subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [833] "The Danish FOIS consists of seven levels."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [834] "This instrument consists of three immersive videos."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [835] "This measure consists of four categories."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [836] "This measure consists of six categories, with one eliminated due to expert and practitioner feedback."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [837] "The DIEPSS consists of eight individual items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [838] "The Qmci-Gr consists of six subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [839] "This instrument consists of eight subtasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [840] "This measure consists of four tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [841] "This measure assesses six dimensions."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [842] "This instrument consists of eight images (items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [843] "The P-CPOT consists of five indicators."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [844] "The Qmci-CN consists of six subtests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [845] "This measure assesses eight distinct QoL-domains of LTC service users."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [846] "This measure consists of three main questions with multiple sub-items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [847] "This measure assesses seven domains."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [848] "This measure consists of five main questions along with multiple probing items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [849] "This measure features nine tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [850] "The Mini-EDACS describes five distinct levels of eating and drinking ability."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [851] "This measure consists of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [852] "This measure consists of seven vignettes and eight codes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [853] "This instrument is comprised of seven measures which are assessed for each of three media subscales."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [854] "This measure assesses five cognitive domains (attention, memory, fluency, language, and visuospatial skills)."
unlist(numbers) %>% table() %>% qplot() +scale_x_sqrt(limits = c(1,30))
## Warning: `qplot()` was deprecated in ggplot2 3.4.0.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 99 rows containing non-finite values (`stat_bin()`).
## Warning: Removed 2 rows containing missing values (`geom_bar()`).

good_guess <- coalesce(just_numbers, 
                       item_numbers %>% map_dbl(~ .[1]), 
                       words)
best_guess <- coalesce(just_numbers, 
                       item_numbers %>% map_dbl(~ .[1]), 
                       words, 
                       consists_of_numbers %>% map_dbl(~ .[1]),
                       words_without_item,
                       numbers %>% map_dbl(~ .[1]))
xtabs(~ is.na(best_guess) + is.na(records_wide$NumberOfTestItems))
##                  is.na(records_wide$NumberOfTestItems)
## is.na(best_guess) FALSE  TRUE
##             FALSE 67861     0
##             TRUE    144  3687
xtabs(~ is.na(good_guess) + is.na(records_wide$NumberOfTestItems))
##                  is.na(records_wide$NumberOfTestItems)
## is.na(good_guess) FALSE  TRUE
##             FALSE 64079     0
##             TRUE   3926  3687
records_wide$number_of_test_items <- good_guess
records_wide$number_of_test_items_best_guess <- best_guess
records_wide$number_of_test_items_potential_subscales <- coalesce(item_numbers %>% map_dbl(~ length(.)), consists_of_numbers %>% map_dbl(~ length(.)), numbers %>% map_dbl(~ length(.)), 1) 
records_wide$NumberOfTestItems[which(!is.na(records_wide$NumberOfTestItems) & is.na(best_guess))]
##   [1] "Each student in a classroom Behavior Adjustment Rating Scale."                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [2] "This test consists of a series of actions/activities to be performed at each age level."                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [3] "The measure contains a free speech and a simple mental arithmetic task."                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [4] "Varied according to instrument"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [5] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [6] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [7] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [8] "Adaptive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [9] "Adaptive."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [10] "Adaptive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [11] "infinite item generation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [12] "The number of test items varies from form to form."                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [13] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [14] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [15] "Item databank."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [16] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [17] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [18] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [19] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [20] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [21] "item databank"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [22] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [23] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [24] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [25] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [26] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [27] "Item databank."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [28] "Infinite item generation."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [29] "The Riverside Situational Q-Sort contains items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [30] "The measure takes about an hour to complete."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [31] "Not reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [32] "Varies between tests."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [33] "The Mattis Organic Mental Syndrome Screening Examination is comprised of a sample of several WAIS subtests, a Benton geometric figure and some items from the Eisenson Test of Aphasia."                                                                                                                                                                                                                                                                                                                              
##  [34] "Scales and Forms: Perceiving Emotions, Facilitating Thought, Understanding Emotions, Managing Emotions"                                                                                                                                                                                                                                                                                                                                                                                                               
##  [35] "The Child-Adult Medical Procedure Interaction Scale—Revised is a system for coding child distress, approach-avoidance, fear, pain, child cooperation and parents perceived ability to help during routine immunizations. As an observational system it does not have a set number of items."                                                                                                                                                                                                                          
##  [36] "The Comprehensive Assessment of Team Member Effectiveness—Short Version is composed of _ items."                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [37] "The Intellectual Achievement Responsibility Scale contains forced-choice items."                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [38] "The Behavioral Approach–Avoidance and Distress Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [39] "Respondents record the details of each social interaction, including the time length, rating of intimacy, satisfaction level, location, and the nature of the interaction. A separate record is used for each encounter."                                                                                                                                                                                                                                                                                             
##  [40] "This instrument consists of the following sections: Background variables, Personality Characteristics, Drinking Motivations and Expectations, and Social Context Characteristics."                                                                                                                                                                                                                                                                                                                                    
##  [41] "This test is untimed."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [42] "The Sociomoral Reflection Measure is a production task measure of moral reasoning."                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [43] "As many trials as desired."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [44] "Varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [45] "The reliability and validity of the test has been statistically supported. Contact the publisher for details."                                                                                                                                                                                                                                                                                                                                                                                                        
##  [46] "The Iowa Gambling Task is a card-sorting task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [47] "The Emotional Disclosure Protocol asks participants to rate their own reactions to having crafted an essay describing a previously-experienced traumatic event. The ratings of their own essay concerned the degree to which (a) it was personal, (b) it revealed their emotions, and (c) they had shared it with other people."                                                                                                                                                                                      
##  [48] "The Impulsiveness-Venturesome-Empathy Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [49] "The Ravinder Sex Role Salience Reptest consists of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [50] "Test items vary."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [51] "The Abridged Cambridge Neurological Inventory Soft Signs Assessment consists of a set of motor skills to be performed."                                                                                                                                                                                                                                                                                                                                                                                               
##  [52] "The survey consisted of the following sections: (a) basic demographics, (b) views on DCM, and (c) experience when conducting DCM."                                                                                                                                                                                                                                                                                                                                                                                    
##  [53] "Since the scales of the DSI have been obtained by factor analysis, construct validity as understood in classical test theory can be regarded as given."                                                                                                                                                                                                                                                                                                                                                               
##  [54] "The CAP Special Cognitive Abilities consists of a number of tests, including tests of hidden animals, recognition memory, verbal comprehension, perceptual speed, verbal fluency, and block design."                                                                                                                                                                                                                                                                                                                  
##  [55] "This measure consists of a task (therefore there are no items)."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [56] "The unidimensional nature of the scale was replicated."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [57] "Selective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [58] "The number of items vary by test. The tests include Access, Excel, Outlook, Powerpoint, Windows, and Word."                                                                                                                                                                                                                                                                                                                                                                                                           
##  [59] "The number of questions varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [60] "Test lengths vary based on job level."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [61] "The Child Adult Medical Procedure Interaction Scale— Revised comprises codes for parents’ utterances."                                                                                                                                                                                                                                                                                                                                                                                                                
##  [62] "The Current Concerns Interview is an open-ended measure and the total number of items differ for each participant according to how many concerns are expressed."                                                                                                                                                                                                                                                                                                                                                      
##  [63] "The intrusion interview consists of a series of questions asked in a fixed order."                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [64] "Item count dependent upon iterative process."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [65] "Selective."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [66] "There are many sub-tests with varied numbers of items."                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [67] "The Attitudes to Food Questionnaire has a variable number of test items, which depends upon the participant's reponses."                                                                                                                                                                                                                                                                                                                                                                                              
##  [68] "The Non-Language Test includes an Imitation test, an Easy Learning test, a Learning test, a Drawing Completion test, a Reversed Drawing test, and a Picture Reconstruction test."                                                                                                                                                                                                                                                                                                                                     
##  [69] "Tests included in the battery are as follows: reading; spelling; pronouncing; memory; description of pictures; drawing; lists of words, grouped according to sound or spelling; mathematical problems; and physics problems."                                                                                                                                                                                                                                                                                         
##  [70] "Forms: Student Form, Parent Form (English and Spanish), Teacher Form."                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [71] "The DAS-II is appropriate for diverse populations as it can predict achievement on the basis of ability equally well for African American, Asian, Hispanic, and White/Non- Hispanic children. More information about the cultural fairness of DAS-II is available in the Technical Manual."                                                                                                                                                                                                                           
##  [72] "This is a verbal task."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [73] "The Abbreviated Scale of Premorbid Social-Personal Adjustment comprises a range of classifications of the degrees of nominal membership and active involvement in social interaction that has characterized the earlier life of the participant through the period of young adulthood."                                                                                                                                                                                                                               
##  [74] "The Social Support Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [75] "The Adapted Career Development Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [76] "The tasks included in this measure are as follows: making a speech in front of male and female confederates, initiating and maintaining a conversation with a confederate, expressing disagreement to a confederate, and solving simple mathematical problems on a chalkboard."                                                                                                                                                                                                                                       
##  [77] "The Work History Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [78] "The Longitudinal Interval Follow-Up Evaluation (LIFE) consists of a semistructured interview, an Instruction booklet, a coding sheet, and a set of training materials. It is divided into the following sections: Psychopathology, Nonpsychiatric Medical Illness, Psychiatric Treatment History, Psychosocial Functioning, Overall Severity (Global Assessment Scale), and Narrative Account."                                                                                                                       
##  [79] "The Subordinate Performance Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [80] "The Social Integration Scales consist of the External Social Integration Scale and the Internal Social Integration Scale."                                                                                                                                                                                                                                                                                                                                                                                            
##  [81] "The Family Water Attitudes Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [82] "The Forgiveness in Married Couples Scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [83] "This questionnaire consists of multiple measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [84] "Participants first describe the initial lapse episode in detail, with the interviewer then asking a series of structured questions for clarification. Next, participants respond to a series of questions assessing lapse situation characteristics. Finally, participants describe what occurred in the hours before the lapse event."                                                                                                                                                                               
##  [85] "The Behavioral Avoidance Test for Obsessive Compulsive Disorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [86] "The Chinese Adolescents' Smoking Risk Factors Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [87] "This scale consists of multiple measures."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [88] "Pre-High School Personality and Behavior Measure contains measures of deviance, rebelliousness, academic orientation, frequency of cigarette, alcohol, and marijuana use, and access to drugs."                                                                                                                                                                                                                                                                                                                       
##  [89] "Providing evidence of convergent and discriminant validity, the IMS-S was strongly related to measures of sexism yet unrelated to measures of social evaluation. The EMS-S was modestly related to both sexism and social evaluative concerns. Providing evidence of predictive validity, participants who were either internally or externally motivated to respond without sexism rated sexist jokes more negatively in a situation discouraging sexism compared to participants low in both sources of motivation."
##  [90] "The Level of Exposure to Environmental Tobacco Smoke Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [91] "Interpersonal Perception Inventory"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [92] "For this questionnaire, respondents list any any notable events (good or bad) happened to them."                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [93] "The current study used the Trauma Exposure and War-Related Psychological and Behavioral Problems sections of the Penn/RESIST/Peradeniya War Problems Questionnaire."                                                                                                                                                                                                                                                                                                                                                  
##  [94] "The Perceived Support Received Index contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [95] "Alcohol Intake Sheets are used by alcoholic clients to monitor and record their own daily alcohol consumption."                                                                                                                                                                                                                                                                                                                                                                                                       
##  [96] "Ingroup Identification Scale for Ashkenazi-Mizrachi Israelis contains for items."                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [97] "The Illness Representations Interview consists of a series of questions that are tailored for each participant according the the answers given, so there is no set number of items."                                                                                                                                                                                                                                                                                                                                  
##  [98] "The Team Cohesiveness Scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [99] "The Movement Rating Scale contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [100] "After hearing a vignette, participants are asked what the group should do (judgment) and why (reasons). Reasons are probed for clarification, where necessary, and participants are asked for any additional reasons. Following this, the opposite position is presented and probed. Responses are probed for clarification, and reasons for the response are elicited."                                                                                                                                              
## [101] "The subjects were asked not only to specify the number of ergonomic interventions which were realized in the organization, but also to describe each of these interventions in detail."                                                                                                                                                                                                                                                                                                                               
## [102] "The Chronic Fatigue Syndrome Questionnaire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [103] "This measure contains several yes/no items about mammography history, including open-ended answers regarding dates."                                                                                                                                                                                                                                                                                                                                                                                                  
## [104] "The item count varies based on responses to the questions."                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [105] "The Modified Child Sedentary Activity Questionnaire contains"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [106] "The Parental and Peer Relations and Substance Use Measure"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [107] "The Perceived Barriers to Receiving Mental Health Care Measure"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [108] "The measure includes several open-ended questions regarding couples' conflict, conflict resolution, and the occurrence of physical violence between partners."                                                                                                                                                                                                                                                                                                                                                        
## [109] "The K-ABC contains Simultaneous and Sequential processing scales, the Mental Processing Composite (Simultaneous + Sequential), and the Achievement Scale."                                                                                                                                                                                                                                                                                                                                                            
## [110] "For the Initial Letter Fluency Task, participants generate as many words as they can that begin with a certain letter. For the Excluded Letter Fluency Task, participants generate as many words as they can that do not contain a certain letter."                                                                                                                                                                                                                                                                   
## [111] "Not Reported."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [112] "The measure consists of a hypothetical scenario that describes an interaction between the child and an alien in the forest. During their interaction, the alien asks the child why humans are affectionate with each other. The child is then prompted to generate possible reasons that people express affection."                                                                                                                                                                                                   
## [113] "The Post-Therapy Questionnaire assesses participants' attitude toward the experiment, their progress in self-reinforcement therapy, and their estimation of their own improvement. The questionnaire also asks participants to indicate the number of dates during treatment and whether this is a change in frequency."                                                                                                                                                                                              
## [114] "The Residential Calendar is a schematic representation of a month."                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [115] "For this task, children are required to list as many emotion words as they can."                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [116] "Questionnaire Measuring Game Acceptance and Learners’ Evaluations of Game Elements"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [117] "The Lie Vignettes consists of lie vignettes."                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [118] "The Palliative Care Research Priorities Survey consists of quantitative and qualitative items."                                                                                                                                                                                                                                                                                                                                                                                                                       
## [119] "The Conversational Speech Samples Procedure requires participants to describe affectively positive and negative past events."                                                                                                                                                                                                                                                                                                                                                                                         
## [120] "This measure consists of pegboard and diagram tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [121] "The number of items on the SPEF-R varies."                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [122] "The measure consists of the Telling time and the Making change tasks"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [123] "Null."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [124] "The Selfie Coding Scheme has cues."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [125] "Item count not available."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [126] "The number of items on the SEMI interview can vary, depending on clinician needs."                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [127] "N/A."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [128] "This paper presents a guide for the counselor to use in interpreting the individual profile of the Kuder Preference Record— Vocational (Kuder PR-V)."                                                                                                                                                                                                                                                                                                                                                                 
## [129] "SVMC is graded at each hip, knee, ankle, subtalar, and toe joint."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [130] "The Gendered Structural/Organizational Power Measure."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [131] "The Short Organizational Commitment Questionnaire--Adapted"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [132] "The Acculturation Strategies and Attitudes Measure--Migrant Version."                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [133] "This measure consists of the following constructs and sub-constructs: Achievement goals (Mastery, Performance-approach, and Performance-avoidance goals); Interest; Self-efficacy; Cognitive strategies (Surface and Complex); Meta-cognitive learning strategies; Classroom structure (Task, Autonomy, and Evaluation/recognition); and Academic achievement (Numeric Series and Finding Similarities subscales)."                                                                                                   
## [134] "This measure consists of the Working Memory and Response Inhibition tasks."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [135] "Respondents count the number of vowels presented in a paragraph. Both performance and time spent on the task are recorded."                                                                                                                                                                                                                                                                                                                                                                                           
## [136] "This measure consists of the following subscales: Family Structure and Resources, Family Social Support, Family Problems, Parent Stress Reactions, Family Beliefs, Child Problems, and Sibling Problems."                                                                                                                                                                                                                                                                                                             
## [137] "The RBANS EE is a measure of errors committed during list learning/recall, semantic fluency, and coding subtests."                                                                                                                                                                                                                                                                                                                                                                                                    
## [138] "The Modified Sørensen Test consists of a force-matching and position-matching fatigue task."                                                                                                                                                                                                                                                                                                                                                                                                                          
## [139] "The scenario comprises a photo of a painting and (manipulated, depending on experimental condition used) text."                                                                                                                                                                                                                                                                                                                                                                                                       
## [140] "The questionnaire contains a family version and a patient version."                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [141] "The IUSCS-CS has items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [142] "The number of test items presented varies based on the respondents familiarity (i.e., user, previous user, or nonuser) with progress-monitoring measures."                                                                                                                                                                                                                                                                                                                                                            
## [143] "This measure has items."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [144] "This measure consists of"
qplot(records_wide$number_of_test_items,binwidth = 1) + xlim(0,200) + theme_bw()
## Warning: Removed 7861 rows containing non-finite values (`stat_bin()`).
## Removed 2 rows containing missing values (`geom_bar()`).

table(records_wide$number_of_test_items) %>% sort()
## 
##  163  176  184  193  194  203  206  209  211  214  219  226  228  232  234  237 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  239  241  243  244  254  255  256  257  262  263  265  266  271  273  276  279 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  284  285  286  289  292  295  302  304  308  309  310  319  320  325  328  337 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  338  342  343  348  350  355  363  375  378  380  381  383  386  387  390  401 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  417  418  430  431  435  440  445  448  453  468  469  473  483  484  486  490 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  494  498  500  508  522  550  563  567  646  672  680  702  718  730  740  755 
##    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1 
##  900  920  925  941  999 1192 1994    0  146  152  167  177  183  188  198  199 
##    1    1    1    1    1    1    1    2    2    2    2    2    2    2    2    2 
##  201  202  207  212  217  224  229  230  233  235  246  249  264  275  280  288 
##    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2 
##  290  298  305  331  389  442  466  589  631  671  159  169  172  179  182  191 
##    2    2    2    2    2    2    2    2    2    2    3    3    3    3    3    3 
##  196  197  215  218  223  225  258  260  344  360  400  415  478  619  142  145 
##    3    3    3    3    3    3    3    3    3    3    3    3    3    3    4    4 
##  156  158  170  178  181  185  195  205  800  133  141  147  148  157  161  174 
##    4    4    4    4    4    4    4    4    4    5    5    5    5    5    5    5 
##  175  189  250  324  137  138  149  151  154  164  165  166  190  192  216  111 
##    5    5    5    5    6    6    6    6    6    6    6    6    6    6    6    7 
##  129  143  155  187  220  116  124  131  168  101  123  162  300  113  121  134 
##    7    7    7    7    7    8    8    8    8    9    9    9    9   10   10   10 
##  139  210  117  127  130  107  153  240  105  106  115  119  122  126  136  200 
##   10   10   11   11   11   12   12   12   13   13   13   13   13   13   13   13 
##  114  128  103  144  104  135  140  109  112  118  132  125  180   86   91   97 
##   14   14   15   15   16   16   16   17   17   17   17   19   19   20   21   21 
##  102   89   95   79   99  108  160   82   92   94  110   98   87   93   81   88 
##   21   22   22   24   24   24   25   27   28   28   28   30   31   31   32   32 
##   85   84  150   74   76   77   83   78   96   71   73  120   68   69   67   62 
##   33   38   41   42   44   44   44   46   46   47   49   59   65   65   66   74 
##   90   75   80   61   72   63   59   66   65   70   58   64   57  100   53   49 
##   76   80   83   84   90   92   94   95   98  104  113  117  120  120  142  146 
##   51   56   55   52   54   47   46   43   41   44    1   48   60   45   42   39 
##  149  152  157  162  183  196  201  245  254  262  279  285  286  317  327  330 
##   50   38   37   34   31   35   33   29   36   40   32   27    2   26   28   23 
##  361  377  380  507  548  561  568  647  681  686  693  775  884  889  908  936 
##   19   22   25   21   30   17   13   24   11   14   18   16    7    9   15   20 
## 1117 1188 1219 1248 1281 1330 1444 1538 1569 1781 1799 1922 2008 2166 2204 2396 
##    8    3    5    6   12    4   10 
## 2502 2560 2806 2806 2900 2978 3240
cor(records_wide$first_reliability_match, records_wide$number_of_test_items, use = 'p')
## [1] -0.05919112
ggplot(records_wide %>% filter(number_of_test_items <= 40, number_of_test_items > 0), aes(factor(number_of_test_items), first_reliability_match)) + geom_pointrange(fun.data = "mean_se", stat = "summary") + theme_bw()
## Warning: Removed 12079 rows containing non-finite values (`stat_summary()`).

ggplot(records_wide %>% filter(number_of_test_items <= 40, number_of_test_items > 0), aes(factor(number_of_test_items), if_else(first_reliability_match == .70, 1, 0))) + geom_pointrange(fun.data = "mean_se", stat = "summary") + theme_bw()
## Warning: Removed 12079 rows containing non-finite values (`stat_summary()`).

Transform to PsycInfo ASCII names

records_wide$NameOC <- records_wide$Name
records_wide$Name <- records_wide$NameOC
records_wide$Name <- str_to_lower(records_wide$Name)

records_wide <- records_wide %>% mutate(
  # psycinfo doesn't differentiate dashes
  # Name = Name_orig,
  # Name_orig = Name,
  name_psycinfo = str_replace_all(Name, "(–|—|─|-|-|─|-|‑|‑|-|–|—)", "-"),
  name_psycinfo = str_replace_all(name_psycinfo, "(’)", "'"),
  name_psycinfo = str_replace_all(name_psycinfo, "(\")", "'"),
  name_psycinfo = str_replace_all(name_psycinfo, "(“|”)", "'"),
  name_psycinfo = str_replace_all(name_psycinfo, "(  +)", " "),
  name_psycinfo = str_replace_all(name_psycinfo, "( )", " "),
  name_psycinfo = str_replace_all(name_psycinfo, "(\n)", " "),
  name_psycinfo = str_replace_all(name_psycinfo, "ҫ", "c"),
  name_psycinfo = str_replace_all(name_psycinfo, "™", "(TM)"),
  name_psycinfo = str_replace_all(name_psycinfo, "©", "(C)"),
  name_psycinfo = str_replace_all(name_psycinfo, "®", "(R)"),
  name_psycinfo = coalesce(stringi::stri_trans_general(name_psycinfo, "latin-ascii"), name_psycinfo),
  name_psycinfo = str_replace_all(name_psycinfo, "\\(TM\\)", "™"),
  name_psycinfo = str_replace_all(name_psycinfo, "\\(C\\)", "©"),
  name_psycinfo = str_replace_all(name_psycinfo, "\\(R\\)", "®"),
  # name_psycinfo = coalesce(iconv(name_psycinfo, to='ASCII//TRANSLIT//IGNORE'), name_psycinfo),
  name_psycinfo = str_replace_all(name_psycinfo, "[:space:]+", " ")
)

psycinfo_chars <- c(" ", "-", ",", ";", ":", "!", "?", ".", "'", "(", ")", "[", 
"]", "/", "&", "©", "®", "+", "<", ">", "−", "0", "1", "2", 
"3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", 
"g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", 
"t", "™", "u", "v", "w", "x", "y", "z")
psycinfo_chars_escaped <- c(" ", "\\-", ",", ";", ":", "!", "?", ".", "'", "(", ")", "\\[", 
"\\]", "/", "&", "©", "®", "+", "<", ">", "−", "0", "1", "2", 
"3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", 
"g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", 
"t", "™", "u", "v", "w", "x", "y", "z")

records_wide %>% select(DOI, NameOC, Name, name_psycinfo) %>% 
  saveRDS("../sober_rubric/raw_data/psycinfo_psyctests_names.rds")
records_wide %>% group_by(name_psycinfo) %>%
  filter(n_distinct(Name) > 1) %>%
  arrange(name_psycinfo) %>%
  select(name_psycinfo, Name) %>% 
  nrow()
## [1] 43
# records_wide %>% filter(Name != name_psycinfo, str_detect(name_psycinfo, regex(paste0("^[", paste0(psycinfo_chars_escaped, collapse = ""),"]+$"), ignore_case = T), negate = T)) %>% select(DOI, Name, name_psycinfo) %>% 
  # mutate(notascii = str_extract_all(name_psycinfo, regex(paste0("^[", paste0(psycinfo_chars_escaped, collapse = ""),"]+$"), ignore_case = T))) %>% 
  # View

#merged_ebsco %>% group_by(DOI) %>% filter(n()>1) %>% ungroup() %>% select(DOI) %>% distinct() %>% 
#  inner_join(
#    records_wide %>% filter(name_psycinfo != Name) %>% select(DOI, NameOC, name_psycinfo, Name)) %>% View

Simplify lexically identical

library(fuzzyjoin)
records_wide %>% distinct(Name) %>% pull(Name) %>% str_match_all("([^a-zA-Z0-9 ])") %>% unlist() %>% table() %>% sort()
## .
## \u0081 \u008f     -      ¡      «      »      [      ]      ′      =      ⁄ 
##      2      2      2      2      2      2      2      2      2      2      2 
##      ─      ²      æ      ě      ff      fl      ô      ś      ů      б      ҫ 
##      2      2      2      2      2      2      2      2      2      2      2 
##      х      э       ‪       ̇      _      %      °      <      >      è      ï 
##      2      2      4      4      4      4      4      4      4      4      4 
##      ř      ß      ž      ο      в      г      й      м      у      ч      ь 
##      4      4      4      4      4      4      4      4      4      4      4 
##      я             @      ×      â      č      ò      õ      š      д      р 
##      4      6      6      6      6      6      6      6      6      6      6 
##      ‘      å      ø      п      ú      л      т      ц      #      ā      ş 
##      8      8      8      8     10     10     10     10     12     12     12 
##      е      к      !      fi      ő      а      с       ⁠      +      н      ğ 
##     12     12     14     14     14     16     16     20     20     20     22 
##      ©      ê      ı      “      à      ñ      о      ”      и      ?      ‑ 
##     24     24     26     28     28     28     28     30     30     44     50 
##      ®      ™      ä      ö      ü      −      ã      í      ç      ‐      á 
##     56     56     60     72     82     88    100    106    150    154    156 
##      &      "      ó      é      .      (      )      :      /      –      ’ 
##    158    170    270    318    424    478    478    706   1268   1374   1920 
##      ;      —      '      ,     \n      - 
##   2014   2064   3592   4288  13604  79144
records_wide <- records_wide %>% mutate(
  # psycinfo doesn't differentiate dashes
  # Name = Name_orig,
  # Name_orig = Name,
  Name = str_replace_all(Name, "(–|—|─|-|-|─|-|‑|‑|-|–|—)", "-"),
  Name = str_replace_all(Name, "(’)", "'"),
  Name = str_replace_all(Name, "(\")", "'"),
  Name = str_replace_all(Name, "(“|”)", "'"),
  Name = str_replace_all(Name, "(  +)", " "),
  Name = str_replace_all(Name, "ҫ", "c"),
  Name = str_replace_all(Name, "( )", " "),
  Name = str_replace_all(Name, "(\n)", " "),
  Name = str_replace_all(Name, "(™|©|®)", ""),
  Name = coalesce(stringi::stri_trans_general(Name, "latin-ascii"), Name),
  Name = str_replace_all(Name, "[:space:]+", " ")
)
library(tidylog)
## 
## Attaching package: 'tidylog'
## The following objects are masked from 'package:dplyr':
## 
##     add_count, add_tally, anti_join, count, distinct, distinct_all,
##     distinct_at, distinct_if, filter, filter_all, filter_at, filter_if,
##     full_join, group_by, group_by_all, group_by_at, group_by_if,
##     inner_join, left_join, mutate, mutate_all, mutate_at, mutate_if,
##     relocate, rename, rename_all, rename_at, rename_if, rename_with,
##     right_join, sample_frac, sample_n, select, select_all, select_at,
##     select_if, semi_join, slice, slice_head, slice_max, slice_min,
##     slice_sample, slice_tail, summarise, summarise_all, summarise_at,
##     summarise_if, summarize, summarize_all, summarize_at, summarize_if,
##     tally, top_frac, top_n, transmute, transmute_all, transmute_at,
##     transmute_if, ungroup
## The following objects are masked from 'package:tidyr':
## 
##     drop_na, fill, gather, pivot_longer, pivot_wider, replace_na,
##     spread, uncount
## The following object is masked from 'package:stats':
## 
##     filter
crosswalk <- uk2us::ukus_crosswalk
crosswalk <- setNames(crosswalk$us, crosswalk$uk)
str_replace_all("a labour baulk", crosswalk)
## [1] "a labor balk"
records_wide <- records_wide %>% mutate(
  Name = str_replace_all(Name, crosswalk)
)
## mutate: changed 1,387 values (2%) of 'Name' (0 new NA)
num_spelled <- tibble(
  num = as.character(0:100),
  spelled = c("zero", "one", "two", "three", "four", "five", "six", "seven", 
              "eight", "nine", "ten", "eleven", "twelve", "thirteen", 
              "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", 
              "nineteen", "twenty", "twenty one", "twenty two", "twenty three",
              "twenty four", "twenty five", "twenty six", "twenty seven",
              "twenty eight", "twenty nine", "thirty", "thirty one", "thirty two",
              "thirty three", "thirty four", "thirty five", "thirty six",
              "thirty seven", "thirty eight", "thirty nine", "forty", "forty one",
              "forty two", "forty three", "forty four", "forty five", "forty six",
              "forty seven", "forty eight", "forty nine", "fifty", "fifty one",
              "fifty two", "fifty three", "fifty four", "fifty five", "fifty six",
              "fifty seven", "fifty eight", "fifty nine", "sixty", "sixty one",
              "sixty two", "sixty three", "sixty four", "sixty five", "sixty six",
              "sixty seven", "sixty eight", "sixty nine", "seventy", "seventy one",
              "seventy two", "seventy three", "seventy four", "seventy five",
              "seventy six", "seventy seven", "seventy eight", "seventy nine",
              "eighty", "eighty one", "eighty two", "eighty three", "eighty four",
              "eighty five", "eighty six", "eighty seven", "eighty eight", "eighty nine",
              "ninety", "ninety one", "ninety two", "ninety three", "ninety four",
              "ninety five", "ninety six", "ninety seven", "ninety eight", "ninety nine", "one hundred")
) 
roman_num_spelled <- tibble(num = c("\\bii\\b", "\\biii\\b", " \\biv\\b", "\\bv\\b"), 
                            spelled = c("two", "three", "four", "five"))
num_spelled <- bind_rows(num_spelled, roman_num_spelled)%>% arrange(desc(num))
replace_nums <- num_spelled$spelled
names(replace_nums) <- num_spelled$num

records_wide <- records_wide %>% mutate(
  # shouldn't treat 12 as being close to 1
  Name_comparable = str_replace_all(Name, "(-|,)", " "),
  Name_comparable = str_replace_all(Name_comparable, replace_nums),
)
## mutate: new variable 'Name_comparable' (character) with 69,851 unique values and 0% NA

Get original test for revisions/translations

get_original <- function(your_list) {
  if(is_empty(your_list)) {
    NA_character_
  } else {
    versions <- tibble(OtherVersion = your_list)
    versions <- versions %>%
      unnest_wider(OtherVersion) %>%
      mutate(
        OtherVersionTestName = map_chr(OtherVersionTestName, ~.x[[1]]),
        OtherVersionType = map_chr(OtherVersionTypeList, ~.x$OtherVersionType[[1]])
      ) %>%
      select(OtherVersionTestName, OtherVersionType)
    
    versions <- versions %>% 
      filter(OtherVersionType == "Original")
    
    if(nrow(versions) == 0) { 
      NA_character_ 
    } else {
      versions %>% pull(OtherVersionTestName)
      } 
  }
}
# debug(get_original)


records_wide <- records_wide %>% 
  hoist(OtherVersionList, original_name = list(), .transform = 
          get_original)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 21 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 21 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 24 rows (96%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 23 rows (96%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 21 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 21 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 22 rows (96%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (87%), 2 rows remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (75%), 2 rows remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (71%), 2 rows remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 21 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 20 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 16 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 22 rows (96%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 13 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 7 rows (88%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 10 rows (91%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 17 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 18 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 5 rows (83%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 15 rows (94%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 12 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 19 rows (95%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 11 rows (92%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 14 rows (93%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 6 rows (86%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 9 rows (90%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: no rows removed
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 3 rows (75%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 2 rows (67%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed all rows (100%)
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 8 rows (89%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 4 rows (80%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed 22 rows (96%), one row remaining
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## filter: removed one row (50%), one row remaining
get_original_doi <- function(your_list) {
  if(is_empty(your_list)) {
    NA_character_
  } else {
    versions <- tibble(OtherVersion = your_list) %>% 
      rowwise() %>% 
      mutate(OtherVersionID = attr(OtherVersion, "OtherVersionTestID")) %>% 
      ungroup() %>% 
      unnest_wider(OtherVersion) %>%
      mutate(
        OtherVersionTestName = map_chr(OtherVersionTestName, ~.x[[1]]),
        OtherVersionType = map_chr(OtherVersionTypeList, ~.x$OtherVersionType[[1]])
      ) %>%
      select(OtherVersionID, OtherVersionTestName, OtherVersionType) %>% 
      mutate(OtherVersionDOI = str_replace(OtherVersionID, "9999-", "10.1037/t"))
    
    versions <- versions %>% 
      filter(OtherVersionType == "Original")
    
    if(nrow(versions) == 0) { 
      NA_character_ 
    } else {
      versions %>% pull(OtherVersionDOI)
      } 
  }
}
# debug(get_original)


records_wide <- records_wide %>% 
  hoist(OtherVersionList, original_DOI = list(), .transform = 
          get_original_doi)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 22 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 22 unique values and 0% NA
## filter: removed 21 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 22 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 22 unique values and 0% NA
## filter: removed 21 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 25 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 25 unique values and 0% NA
## filter: removed 24 rows (96%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 24 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 24 unique values and 0% NA
## filter: removed 23 rows (96%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 22 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 22 unique values and 0% NA
## filter: removed 21 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 22 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 22 unique values and 0% NA
## filter: removed 21 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 23 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 23 unique values and 0% NA
## filter: removed 22 rows (96%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 28 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 28 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 13 rows (87%), 2 rows remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 6 rows (75%), 2 rows remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 5 rows (71%), 2 rows remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 30 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 30 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 22 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 22 unique values and 0% NA
## filter: removed 21 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 21 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 21 unique values and 0% NA
## filter: removed 20 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 17 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 17 unique values and 0% NA
## filter: removed 16 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 23 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 23 unique values and 0% NA
## filter: removed 22 rows (96%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 14 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 14 unique values and 0% NA
## filter: removed 13 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 4 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 8 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 8 unique values and 0% NA
## filter: removed 7 rows (88%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 11 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 11 unique values and 0% NA
## filter: removed 10 rows (91%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 18 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 18 unique values and 0% NA
## filter: removed 17 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 19 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 19 unique values and 0% NA
## filter: removed 18 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed 5 rows (83%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 16 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 16 unique values and 0% NA
## filter: removed 15 rows (94%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 13 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 13 unique values and 0% NA
## filter: removed 12 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 20 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 20 unique values and 0% NA
## filter: removed 19 rows (95%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 6 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 6 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 12 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 12 unique values and 0% NA
## filter: removed 11 rows (92%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 15 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 15 unique values and 0% NA
## filter: removed 14 rows (93%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 7 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 7 unique values and 0% NA
## filter: removed 6 rows (86%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 10 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 10 unique values and 0% NA
## filter: removed 9 rows (90%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: no rows removed
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 4 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 4 unique values and 0% NA
## filter: removed 3 rows (75%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 3 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 3 unique values and 0% NA
## filter: removed 2 rows (67%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with one unique value and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with one unique value and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with one unique value and 0% NA
## filter: removed all rows (100%)
## mutate: new variable 'OtherVersionID' (character) with 9 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 9 unique values and 0% NA
## filter: removed 8 rows (89%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 5 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 5 unique values and 0% NA
## filter: removed 4 rows (80%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 23 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 3 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 23 unique values and 0% NA
## filter: removed 22 rows (96%), one row remaining
## mutate: new variable 'OtherVersionID' (character) with 2 unique values and 0% NA
## ungroup: no grouping variables
## mutate: converted 'OtherVersionTestName' from list to character (0 new NA)
##         new variable 'OtherVersionType' (character) with 2 unique values and 0% NA
## select: dropped one variable (OtherVersionTypeList)
## mutate: new variable 'OtherVersionDOI' (character) with 2 unique values and 0% NA
## filter: removed one row (50%), one row remaining
records_wide <- records_wide %>% 
  mutate(original_DOI = as.character(original_DOI)) %>% 
  # hoist(original_DOI, original_DOI = list(1)) %>% 
  mutate(original_test_DOI = coalesce(original_DOI, DOI))
## mutate: converted 'original_DOI' from list to character (0 new NA)
## mutate: new variable 'original_test_DOI' (character) with 62,037 unique values and 0% NA
records_wide <- records_wide %>% 
  hoist(TestTypeList, test_type = list(1,1,1), .remove = FALSE)
xtabs(~ is.na(original_DOI) + test_type, records_wide)
##                    test_type
## is.na(original_DOI) Original Revision Subtest Translation
##               FALSE        0     4453      19        5187
##               TRUE     43478     5028      13        2735
n_distinct(records_wide$original_test_DOI)
## [1] 62037

Get basis name without version/abbreviation/language

source("0_function_name_base.R")
records_wide$Name_base <- get_name_base(records_wide$Name)
# reduction
n_distinct(records_wide$Name) - n_distinct(records_wide$Name_base)
## [1] 9069
records_wide %>% filter(Name != Name_base) %>% nrow()
## filter: removed 55,022 rows (77%), 16,670 rows remaining
## [1] 16670
records_wide %>% group_by(test_type) %>% summarise(mismatch = sum(Name != Name_base)/n(), match = sum(Name == Name_base)/n())
## group_by: one grouping variable (test_type)
## summarise: now 5 rows and 3 columns, ungrouped
## # A tibble: 5 × 3
##   test_type   mismatch  match
##   <chr>          <dbl>  <dbl>
## 1 Original      0.0570 0.943 
## 2 Revision      0.549  0.451 
## 3 Subtest       0.625  0.375 
## 4 Translation   0.966  0.0336
## 5 <NA>          0.121  0.879
records_wide %>% filter(test_type != "Original", is.na(original_DOI)) %>% select(DOI, Name_base, Name) %>% 
  left_join(records_wide %>% filter(test_type == "Original") %>% select(Name_base = Name, original_DOI_by_name = DOI), by = "Name_base") %>% View
## filter: removed 63,916 rows (89%), 7,776 rows remaining
## select: dropped 67 variables (test_type, TestTypeList, original_name, original_DOI, OtherVersionList, …)
## filter: removed 28,214 rows (39%), 43,478 rows remaining
## select: renamed one variable (original_DOI_by_name) and dropped 68 variables
## left_join: added one column (original_DOI_by_name)
##            > rows only in x    6,642
##            > rows only in y  (42,459)
##            > matched rows      1,430    (includes duplicates)
##            >                 ========
##            > rows total        8,072
matches_by_doi <- records_wide %>% 
  select(original_DOI, Name, Name_base) %>% 
  inner_join(records_wide %>% 
               select(original_DOI = DOI, original_name = Name, original_Name_base = Name_base))
## select: dropped 67 variables (DOI, test_type, TestTypeList, original_name, OtherVersionList, …)
## select: renamed one variable (original_Name_base) and dropped 67 variables
## Joining with `by = join_by(original_DOI)`
## inner_join: added 2 columns (original_name, original_Name_base)
## > rows only in x (62,036)
## > rows only in y (66,976)
## > matched rows 9,656
## > ========
## > rows total 9,656
nrow(matches_by_doi)
## [1] 9656
matches_by_doi %>% filter(original_name == Name_base)
## filter: removed 4,486 rows (46%), 5,170 rows remaining
## # A tibble: 5,170 × 5
##    original_DOI       Name            Name_base original_name original_Name_base
##    <chr>              <chr>           <chr>     <chr>         <chr>             
##  1 10.1037/t46451-000 cognitive appr… cognitiv… cognitive ap… cognitive apprais…
##  2 10.1037/t03776-000 spanish posttr… posttrau… posttraumati… posttraumatic gro…
##  3 10.1037/t00700-000 ambivalent sex… ambivale… ambivalent s… ambivalent sexism…
##  4 10.1037/t04243-000 attributional … attribut… attributiona… attributional sty…
##  5 10.1037/t03855-000 bicultural inv… bicultur… bicultural i… bicultural involv…
##  6 10.1037/t30443-000 burnout measur… burnout … burnout meas… burnout measure   
##  7 10.1037/t07034-000 behavioral reg… behavior… behavioral r… behavioral regula…
##  8 10.1037/t01087-000 revised self-m… self-mon… self-monitor… self-monitoring s…
##  9 10.1037/t12177-000 disgust scale-… disgust … disgust scale disgust scale     
## 10 10.1037/t10199-000 obsessive-comp… obsessiv… obsessive-co… obsessive-compuls…
## # ℹ 5,160 more rows
matches_by_doi %>% filter(original_name != Name_base) %>% View()
## filter: removed 5,170 rows (54%), 4,486 rows remaining
matches_by_doi %>% filter(original_name != Name_base) %>% filter(str_detect(Name_base, " for "), str_match(Name_base, "^(.+) for .+$")[,2] == original_name) %>% pull(Name_base) %>% str_extract(" for .+$") %>% table() %>% sort() %>% names() %>% dput() 
## filter: removed 5,170 rows (54%), 4,486 rows remaining
## filter: removed 4,417 rows (98%), 69 rows remaining
## c(" for adults and adolescents", " for adults who stutter", " for caregivers of adults with mental health issues", 
## " for couples", " for hospital diskharge scale for older people", 
## " for humanity", " for informal caregivers", " for learning questionnaire for chinese adult learners", 
## " for living inventory for adolescents", " for manual wheelchair users", 
## " for men", " for mental health problems", " for nonclose others", 
## " for obsessive-compulsive disorder-interviewer-rated", " for parkinson disease", 
## " for patients with systemic lupus erythematosus", " for pediatric obsessive-compulsive disorder", 
## " for pediatrics", " for pre-adolescents", " for prescription drugs", 
## " for reading", " for schizophrenia", " for spanish kids", " for students", 
## " for substance abuse", " for third-grade children", " for use with fathers", 
## " for writing", " for young adults", " for young children", " for adults", 
## " for children-parent", " for obsessive-compulsive disorder", 
## " for service providers", " for dsm", " for adolescents", " for youth", 
## " for children and adolescents", " for children")
unmatched_by_name <- records_wide %>% filter(is.na(original_DOI), test_type != "Original" | Name != Name_base) %>% select(test_type, DOI, Name = Name_base, NameOC_1 = NameOC) %>% anti_join(records_wide %>% filter(test_type == "Original") %>% select(Name)) 
## filter: removed 60,128 rows (84%), 11,564 rows remaining
## select: renamed one variable (NameOC_1) and dropped 66 variables
## filter: removed 28,214 rows (39%), 43,478 rows remaining
## select: dropped 69 variables (DOI, test_type, TestTypeList, original_name, original_DOI, …)
## Joining with `by = join_by(Name)`anti_join: added no columns
##            > rows only in x   10,021
##            > rows only in y  (42,174)
##            > matched rows    ( 1,543)
##            >                 ========
##            > rows total       10,021
nrow(unmatched_by_name)
## [1] 10021
matches_by_name <- records_wide %>% 
  filter(test_type != "Original" | Name != Name_base) %>% 
  select(test_type, DOI, Name = Name_base, NameOC_1 = NameOC, original_DOI) %>% 
  inner_join(records_wide %>% filter(test_type == "Original") %>% 
               select(original_DOI_by_name = DOI, Name, NameOC) %>% group_by(Name) %>% mutate(same_name_n = n()) %>% ungroup(), by = "Name") %>% 
  left_join(records_wide %>% filter(test_type == "Original") %>% 
               select(original_DOI = DOI, Name, NameOC_by_doi = NameOC), by = "original_DOI")
## filter: removed 50,469 rows (70%), 21,223 rows remaining
## select: renamed one variable (NameOC_1) and dropped 65 variables
## filter: removed 28,214 rows (39%), 43,478 rows remaining
## select: renamed one variable (original_DOI_by_name) and dropped 67 variables
## group_by: one grouping variable (Name)
## mutate (grouped): new variable 'same_name_n' (integer) with 10 unique values and 0% NA
## ungroup: no grouping variables
## inner_join: added 3 columns (original_DOI_by_name, NameOC, same_name_n)
##             > rows only in x  (14,372)
##             > rows only in y  (39,539)
##             > matched rows      7,636    (includes duplicates)
##             >                 ========
##             > rows total        7,636
## filter: removed 28,214 rows (39%), 43,478 rows remaining
## select: renamed one variable (NameOC_by_doi) and dropped 67 variables
## left_join: added 3 columns (Name.x, Name.y, NameOC_by_doi)
##            > rows only in x    2,011
##            > rows only in y  (40,565)
##            > matched rows      5,625
##            >                 ========
##            > rows total        7,636
matches_by_name %>% group_by(original_DOI == original_DOI_by_name) %>% summarise(n())
## group_by: one grouping variable (original_DOI == original_DOI_by_name)
## summarise: now 3 rows and 2 columns, ungrouped
## # A tibble: 3 × 2
##   `original_DOI == original_DOI_by_name` `n()`
##   <lgl>                                  <int>
## 1 FALSE                                    591
## 2 TRUE                                    5049
## 3 NA                                      1996
# mismatches are mostly brE/amE equivalents and confusions between scale/measure/instrument and plural/singular
# matches_by_name %>% filter(original_DOI != original_DOI_by_name, NameOC != NameOC_by_doi) %>% 
#   select(NameOC_1, NameOC, NameOC_by_doi, same_name_n) %>% 
#   View()


sum(!is.na(records_wide$original_DOI))
## [1] 9659
records_wide <- records_wide %>% 
  left_join(records_wide %>% filter(test_type == "Original") %>% 
               select(original_DOI_by_name = DOI, Name) %>% group_by(Name) %>% filter(n() == 1) %>% ungroup(), by = c("Name_base" = "Name")) %>% 
  mutate(original_DOI_combined = coalesce(original_DOI, 
                                          if_else(test_type != "Original" &
                                                    Name != Name_base, original_DOI_by_name, NA_character_)))
## filter: removed 28,214 rows (39%), 43,478 rows remaining
## select: renamed one variable (original_DOI_by_name) and dropped 68 variables
## group_by: one grouping variable (Name)
## filter (grouped): removed 1,660 rows (4%), 41,818 rows remaining
## ungroup: no grouping variables
## left_join: added one column (original_DOI_by_name)
##            > rows only in x   25,661
##            > rows only in y  ( 2,420)
##            > matched rows     46,031
##            >                 ========
##            > rows total       71,692
## mutate: new variable 'original_DOI_combined' (character) with 5,109 unique values and 85% NA
sum(!is.na(records_wide$original_DOI_combined)) - sum(!is.na(records_wide$original_DOI))
## [1] 907

Index terms

index_terms <- records_wide %>% select(IndexTermList) %>% 
  unlist()
## select: dropped 71 variables (DOI, test_type, TestTypeList, Name, original_name, …)
table(index_terms) %>% sort() %>% tail(100)
## index_terms
##                         Emotional States 
##                                      798 
##                          Eating Behavior 
##                                      803 
##                   Online Social Networks 
##                                      804 
##                               Caregivers 
##                                      809 
##                    Psychosexual Behavior 
##                                      823 
##                          Quality of Life 
##                                      841 
##                          Adult Attitudes 
##                                      855 
##                     Cognitive Assessment 
##                                      856 
##                                 Emotions 
##                                      857 
##                          Health Behavior 
##                                      859 
##                       Social Interaction 
##                                      860 
##                                     Task 
##                                      866 
##                 Employee Characteristics 
##                                      867 
##                             Expectations 
##                                      887 
##                  Chinese Cultural Groups 
##                                      890 
##                   Adolescent Development 
##                                      892 
##                               Well Being 
##                                      903 
##                  Professional Competence 
##                                      909 
##                     Behavioral Intention 
##                                      931 
##                         Family Relations 
##                                      935 
##     Mental Health and Illness Assessment 
##                                      942 
##                     Emotional Assessment 
##                                      951 
##                                   Nurses 
##                                      969 
##                        Teacher Attitudes 
##                                      972 
##                         Health Knowledge 
##                                      975 
##                      Emotional Responses 
##                                      983 
##                          Knowledge Level 
##                                      988 
##                        Social Perception 
##                                     1000 
##                         Health Attitudes 
##                                     1011 
##                             Self-Concept 
##                                     1017 
##                    Childhood Development 
##                                     1044 
##                       Criterion Validity 
##                                     1057 
##                              Inventories 
##                                     1073 
##                Interpersonal Interaction 
##                                     1077 
##                       Working Conditions 
##                                     1087 
##                    Professional Measures 
##                                     1128 
##                         Consumer Surveys 
##                                     1130 
##                          Decision Making 
##                                     1148 
##                       Personality Traits 
##                                     1157 
##                                 Symptoms 
##                                     1172 
##                            Likert Scales 
##                                     1183 
##                  Student Characteristics 
##                                     1187 
##                   Parent Child Relations 
##                                     1192 
##                       Parental Attitudes 
##                                     1226 
##                        Consumer Behavior 
##                                     1227 
##                         Major Depression 
##                                     1238 
##                               Interviews 
##                                     1242 
##                  Organizational Behavior 
##                                     1243 
##                          Coping Behavior 
##                                     1246 
##                      Predictive Validity 
##                                     1256 
##                               Motivation 
##                                     1288 
##   Treatment Process and Outcome Measures 
##                                     1311 
##                          Screening Tests 
##                                     1345 
##                                  Anxiety 
##                                     1408 
##               Health Personnel Attitudes 
##                                     1422 
##                                  Surveys 
##                                     1436 
##              Interpersonal Relationships 
##                                     1458 
##                    Therapeutic Processes 
##                                     1480 
##                         College Students 
##                                     1524 
##            Family and Parenting Measures 
##                                     1530 
##               Stress and Coping Measures 
##                                     1562 
##                     Adolescent Attitudes 
##                                     1578 
##                   Developmental Measures 
##                                     1604 
##                 Psychological Assessment 
##                                     1650 
##                           Social Support 
##                                     1663 
##                         Client Attitudes 
##                                     1710 
##                       Consumer Attitudes 
##                                     1769 
##                   Interrater Reliability 
##                                     1839 
##                      Concurrent Validity 
##                                     1906 
##                            Self-Efficacy 
##                                     1917 
##               Physical Health Assessment 
##                                     1971 
##                            Face Validity 
##                                     2023 
##                       Employee Attitudes 
##                                     2050 
##                            Test Revision 
##                                     2335 
##                         Content Validity 
##                                     2568 
##              Exploratory Factor Analysis 
##                                     2850 
##                        Student Attitudes 
##                                     2867 
##        Social and Interpersonal Measures 
##                                     3445 
##                     Personality Measures 
##                                     3450 
## Organizational and Occupational Measures 
##                                     3637 
##           Cross Cultural Test Adaptation 
##                                     3698 
##             Confirmatory Factor Analysis 
##                                     3865 
##                  Educational Measurement 
##                                     4102 
##                  Test-Retest Reliability 
##                                     4155 
##                    Discriminant Validity 
##                                     4627 
##             Foreign Language Translation 
##                                     4785 
##                              Measurement 
##                                     5134 
##                      Convergent Validity 
##                                     5283 
##                              Self-Report 
##                                     5366 
##                       Construct Validity 
##                                     5541 
##                           Questionnaires 
##                                     5840 
##                               Test Forms 
##                                     6126 
##                        Attitude Measures 
##                                     7679 
##                            Rating Scales 
##                                     9925 
##                          Factor Analysis 
##                                    11218 
##                         Factor Structure 
##                                    13938 
##                            Test Validity 
##                                    20244 
##                     Internal Consistency 
##                                    27956 
##                         Test Reliability 
##                                    36555 
##                        Test Construction 
##                                    50597

Subdisciplines

classifications <- readr::read_tsv(col_names = T,
"code   classification
5000    Addiction, Gambling, and Substance Abuse/Use
5100    Anxiety and Depression
5200    Aptitude and Achievement
5300    Attitudes, Interests, Values, and Expectancies
5400    Cognitive Processes, Memory, and Decision Making
5500    Communication, Language, and Verbal Processing
5600    Consumer Behavior, Marketing, and Advertising
5700    Culture, Racial, and Ethnic Identity
5800    Development and Aging
5900    Education, Teaching, and Student Characteristics
6000    Emotional States, Emotional Responses, and Motivation
6100    Family Relationships and Parenting
6200    Functional Status and Adaptive Behavior
6300    Human Factors and Environmental Engineering
6400    Human-Computer Interaction
6500    Intelligence
6600    Legal and Forensic Evaluation
6700    Mental Health/Illness Related Assessment
6800    Military Personnel, Adjustment, and Training
6900    Neuropsychological Assessment
7000    Organizational, Occupational, and Career Development
7100    Perceptual, Motor, and Sensory Processing
7200    Personality
7300    Physical Health/Illness Related Assessment
7400    Religious and Political Beliefs
7500    Sex, Gender Roles, and Sexual Behavior
7600    Social, Group, and Interpersonal Relationships
7700    Sports, Recreation, and Leisure
7800    Trauma, Stress, and Coping
7900    Treatment, Rehabilitation, and Therapeutic Processes
8000    General Assessment Tools")
## Rows: 31 Columns: 2
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## chr (1): classification
## dbl (1): code
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
higher_class <- readr::read_tsv("classification subdiscipline
Addiction, Gambling, and Substance Abuse/Use    Health and Clinical Psychology
Anxiety and Depression  Health and Clinical Psychology
Aptitude and Achievement    Educational and Developmental Psychology
Attitudes, Interests, Values, and Expectancies  Personality and Social Psychology
Cognitive Processes, Memory, and Decision Making    Cognitive Psychology
Communication, Language, and Verbal Processing  Cognitive Psychology
Consumer Behavior, Marketing, and Advertising   Industrial/Organizational Psychology
Culture, Racial, and Ethnic Identity    Personality and Social Psychology
Development and Aging   Educational and Developmental Psychology
Education, Teaching, and Student Characteristics    Educational and Developmental Psychology
Emotional States, Emotional Responses, and Motivation   Personality and Social Psychology
Family Relationships and Parenting  Personality and Social Psychology
Functional Status and Adaptive Behavior Health and Clinical Psychology
Human Factors and Environmental Engineering Industrial/Organizational Psychology
Human-Computer Interaction  Industrial/Organizational Psychology
Intelligence    Educational and Developmental Psychology
Legal and Forensic Evaluation   Health and Clinical Psychology
Mental Health/Illness Related Assessment    Health and Clinical Psychology
Military Personnel, Adjustment, and Training    Health and Clinical Psychology
Neuropsychological Assessment   Health and Clinical Psychology
Organizational, Occupational, and Career Development    Industrial/Organizational Psychology
Perceptual, Motor, and Sensory Processing   Cognitive Psychology
Personality Personality and Social Psychology
Physical Health/Illness Related Assessment  Health and Clinical Psychology
Religious and Political Beliefs Personality and Social Psychology
Sex, Gender Roles, and Sexual Behavior  Personality and Social Psychology
Social, Group, and Interpersonal Relationships  Personality and Social Psychology
Sports, Recreation, and Leisure Personality and Social Psychology
Trauma, Stress, and Coping  Health and Clinical Psychology
Treatment, Rehabilitation, and Therapeutic Processes    Health and Clinical Psychology
General Assessment Tools    Health and Clinical Psychology")
## Rows: 31 Columns: 2
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## chr (2): classification, subdiscipline
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
classifications <- classifications %>% 
  left_join(higher_class)
## Joining with `by = join_by(classification)`
## left_join: added one column (subdiscipline)
## > rows only in x 0
## > rows only in y ( 0)
## > matched rows 31
## > ====
## > rows total 31
records_wide <- records_wide %>% 
  left_join(higher_class %>% rename(subdiscipline_1 = subdiscipline), by = c("classification_1" = "classification")) %>% 
  left_join(higher_class %>% rename(subdiscipline_2 = subdiscipline), by = c("classification_2" = "classification"))
## rename: renamed one variable (subdiscipline_1)
## left_join: added one column (subdiscipline_1)
##            > rows only in x        0
##            > rows only in y  (     0)
##            > matched rows     71,692
##            >                 ========
##            > rows total       71,692
## rename: renamed one variable (subdiscipline_2)
## left_join: added one column (subdiscipline_2)
##            > rows only in x   67,377
##            > rows only in y  (     2)
##            > matched rows      4,315
##            >                 ========
##            > rows total       71,692
table(records_wide$subdiscipline_1 == records_wide$subdiscipline_2)
## 
## FALSE  TRUE 
##  2901  1414

Save

saveRDS(records_wide, "../sober_rubric/raw_data/preprocessed_records.rds")